:root {
    color-scheme: light;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
}

.landing-body {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 180, 92, 0.35), transparent 40%),
        radial-gradient(circle at 90% 0%, rgba(255, 145, 77, 0.28), transparent 36%),
        linear-gradient(180deg, #fffaf4 0%, #fff3e4 42%, #ffffff 100%);
    color: #1f2937;
}

.landing-body::before,
.landing-body::after {
    content: "";
    position: fixed;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.landing-body:not(.landing-page-ready)::before {
    inset: 0;
    z-index: 9998;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: #ffffff;
}

.landing-body:not(.landing-page-ready)::after {
    left: 50%;
    top: 50%;
    z-index: 9999;
    width: 56px;
    height: 56px;
    margin-left: -28px;
    margin-top: -28px;
    opacity: 1;
    visibility: visible;
    background: url("/assets/loader.gif") center center / contain no-repeat;
}

.landing-header {
    backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 240, 0.92));
}

.landing-nav-link {
    border-radius: 0.75rem;
    padding: 0.55rem 0.85rem;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.landing-nav-link:hover {
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
}

.landing-mobile-nav-link {
    border-radius: 0.75rem;
    border: 1px solid rgba(253, 186, 116, 0.5);
    background: rgba(255, 237, 213, 0.4);
    padding: 0.75rem 0.9rem;
    color: #9a3412;
    font-size: 0.875rem;
    font-weight: 700;
}

.landing-mobile-nav-link:hover {
    background: rgba(254, 215, 170, 0.75);
}

.landing-hero-glow {
    position: absolute;
    width: 22rem;
    height: 22rem;
    border-radius: 9999px;
    filter: blur(44px);
    opacity: 0.42;
    pointer-events: none;
}

.landing-hero-glow-one {
    top: -8rem;
    left: -5rem;
    background: #fb923c;
    animation: landingFloat 8s ease-in-out infinite;
}

.landing-hero-glow-two {
    right: -6rem;
    top: 2rem;
    background: #f97316;
    animation: landingFloat 9s ease-in-out infinite reverse;
}

.landing-hero-glow-three {
    bottom: -8rem;
    right: 24%;
    background: #fdba74;
    animation: landingFloat 10s ease-in-out infinite;
}

.landing-highlight-chip {
    border: 1px solid rgba(249, 115, 22, 0.38);
    background: rgba(255, 237, 213, 0.82);
    color: #c2410c;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.48rem 0.88rem;
    text-transform: uppercase;
}

.landing-glass-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 247, 237, 0.92) 100%);
    box-shadow: 0 22px 48px rgba(234, 88, 12, 0.15);
}

.landing-soft-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 237, 0.96) 100%);
}

.landing-image-card {
    border-radius: 1rem;
    border: 1px solid rgba(253, 186, 116, 0.6);
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-image-card:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 18px 36px rgba(234, 88, 12, 0.16);
}

.landing-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.landing-feature-card {
    border-radius: 1.125rem;
    border: 1px solid rgba(253, 186, 116, 0.55);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 237, 0.88) 100%);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 18px 34px rgba(234, 88, 12, 0.14);
}

.landing-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(249, 115, 22, 0.28);
    background: linear-gradient(180deg, rgba(251, 146, 60, 0.22), rgba(255, 255, 255, 0.9));
    padding: 0.55rem;
    object-fit: contain;
}

.landing-stat-card {
    border-radius: 1rem;
    border: 1px solid rgba(253, 186, 116, 0.65);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.96));
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.12);
}

.landing-scroll-row {
    scrollbar-width: none;
}

.landing-scroll-row::-webkit-scrollbar {
    display: none;
}

[data-animate] {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.landing-whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: 16px;
    z-index: 70;
    width: 180px;
    transition: transform 0.2s ease;
}

.landing-whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
}

.landing-whatsapp-float img {
    width: 100%;
    height: auto;
    display: block;
}

.landing-lightbox-trigger {
    cursor: zoom-in;
}

.landing-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.86);
    padding: 1rem;
}

.landing-lightbox-overlay.is-open {
    display: flex;
}

.landing-lightbox-image {
    max-width: min(1200px, 96vw);
    max-height: 92vh;
    border-radius: 1rem;
    border: 1px solid rgba(255, 237, 213, 0.6);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.45);
    object-fit: contain;
    background: #fff;
}

.landing-lightbox-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border: 1px solid rgba(255, 237, 213, 0.45);
    border-radius: 9999px;
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff7ed;
    background: rgba(15, 23, 42, 0.62);
    font-size: 1.15rem;
    cursor: pointer;
}

@keyframes landingFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero-glow-one,
    .landing-hero-glow-two,
    .landing-hero-glow-three {
        animation: none !important;
    }

    [data-animate] {
        transition: none !important;
    }
}

@media (max-width: 768px) {
    .landing-whatsapp-float {
        width: 148px;
        right: 10px;
        bottom: 12px;
    }
}
