/* ==========================================================================
   LITTLE NEST PLAY — Informational One-Pager
   Design system matched to littlenestplay.com (client Figma reference)
   ========================================================================== */

:root {
    /* Brand Colors */
    --purple:      #7C5CBF;
    --purple-lt:   #9B7DD4;
    --purple-bg:   #F3EFFE;
    --gold:        #C9956C;
    --dark:        #1B2A3B;
    --bg-soft:     #FBF7FF;
    --bg-hero:     #F5EDF8;
    --white:       #FFFFFF;
    --text:        #2C2C2C;
    --muted:       #6B6B6B;
    --border:      #E8E0F5;
    --whatsapp:    #25D366;

    /* Typography */
    --font-display: 'Fredoka', sans-serif;
    --font-body:    'Manrope', sans-serif;

    /* Misc */
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.text-center { text-align: center; }

/* ── Shared type ───────────────────────────────────────────── */
.eyebrow {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: .5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -.02em;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 640px;
    margin: .75rem auto 0;
}

.section-header { margin-bottom: 2.5rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .875rem;
    padding: .7rem 1.5rem;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
}
.btn-primary:hover {
    background: var(--purple-lt);
    border-color: var(--purple-lt);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 92, 191, .3);
}

.btn-hero-dark {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
    padding: .8rem 1.6rem;
}
.btn-hero-dark:hover {
    background: #2C3E50;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 42, 59, .25);
}

.btn-hero-outline {
    background: transparent;
    border-color: var(--dark);
    color: var(--dark);
    padding: .8rem 1.6rem;
}
.btn-hero-outline:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: .6rem;
}

.logo-img { height: 52px; width: auto; object-fit: contain; }

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.nav-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--dark);
    padding: .45rem .85rem;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--purple);
    background: var(--purple-bg);
}

.nav-cta-group { display: flex; align-items: center; gap: .8rem; }

.btn-whatsapp-nav {
    background: var(--purple);
    color: #fff;
    font-size: .82rem;
    padding: .55rem 1.2rem;
}
.btn-whatsapp-nav:hover {
    background: var(--purple-lt);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 92, 191, .3);
}
.btn-whatsapp-nav i { font-size: 1rem; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .4rem;
}
.mobile-menu-toggle .bar {
    width: 22px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--dark);
}

/* ── Mobile drawer ─────────────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    background: var(--white);
    z-index: 1000;
    padding: 1.2rem 1.4rem calc(2.5rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    transition: right .3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    box-shadow: -10px 0 40px rgba(27, 42, 59, .12);
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.drawer-logo { height: 42px; width: auto; }
.drawer-close-btn {
    font-size: 1.9rem;
    line-height: 1;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: .2rem;
}

.mobile-nav-list {
    flex: 0 0 auto;
    margin-bottom: 1.2rem;
}
.mobile-nav-link {
    display: block;
    padding: .6rem .2rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}
.mobile-nav-link:hover { color: var(--purple); }

.drawer-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}
.drawer-contact-info { margin-top: 1rem; }
.drawer-contact-info p {
    font-size: .8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .45rem;
    line-height: 1.4;
}
.drawer-contact-info i { color: var(--purple); width: 16px; text-align: center; }

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(27, 42, 59, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 950;
}
.drawer-backdrop.active { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
    background: var(--bg-hero);
    padding: 70px 0 60px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(124, 92, 191, .1);
    border: 1px solid rgba(124, 92, 191, .25);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-bold-sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}

.hero-sub {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 470px;
    margin-bottom: 1.25rem;
}

.hero-tagline {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    font-weight: 500;
}
.hero-tagline .dot { color: var(--gold); }

.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

.hero-video-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 92, 191, .2);
    aspect-ratio: 4 / 3;
    background: var(--dark);
    position: relative;
}
.hero-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.stats-strip {
    background: #C8A8E9;
    padding: 18px 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .825rem;
    color: var(--dark);
    font-weight: 500;
    background: rgba(255, 255, 255, .6);
    border: 1.5px dashed rgba(124, 92, 191, .5);
    border-radius: 50px;
    padding: .4rem 1rem;
}
.stat-item img { height: 28px; width: auto; }
.stat-item strong { color: var(--purple); font-weight: 700; }

/* ==========================================================================
   Brands Marquee + Only-LNP banner
   ========================================================================== */
.brands-section {
    background: var(--white);
    padding: 80px 0;
}

.brands-marquee-wrap {
    overflow: hidden;
    margin: 2rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-marquee {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: max-content;
    animation: marquee 36s linear infinite;
}
.brands-marquee:hover { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brands-marquee { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

.brand-logo {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: .8rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    min-width: 150px;
    flex-shrink: 0;
    transition: var(--transition);
}
.brand-logo:hover { border-color: var(--purple); box-shadow: 0 8px 22px rgba(124, 92, 191, .12); }
.brand-logo img {
    max-height: 56px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
}

/* Only at LNP banner */
.only-lnp {
    background-size: cover;
    background-position: center;
    background-color: var(--purple-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}
.only-lnp-inner { padding: 3rem 2.5rem; text-align: center; }
.only-lnp-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: .75rem;
}
.only-lnp-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .75rem;
}
.only-lnp-sub {
    font-size: .9rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* ==========================================================================
   Toy Library — age cards + category circles
   ========================================================================== */
.library-section {
    background: var(--bg-soft);
    padding: 80px 0;
}

.age-cards-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.age-card {
    flex: 1;
    min-width: 160px;
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem 1.25rem;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.age-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27, 42, 59, .1);
}

.age-card-icon img { height: 52px; width: 52px; object-fit: contain; }

.age-card-pill {
    display: inline-block;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 50px;
    padding: .22rem .75rem;
    width: fit-content;
}

.age-card-desc {
    font-size: .8rem;
    color: var(--dark);
    line-height: 1.5;
    font-weight: 500;
}

/* Category circles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem 1.5rem;
    justify-items: center;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    text-align: center;
    max-width: 180px;
    width: 100%;
}

.cat-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #F0EBF8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(124, 92, 191, .1);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.category-card:hover .cat-img-wrap {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(124, 92, 191, .15);
    border-color: var(--purple);
}
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.cat-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.category-card:hover .cat-name { color: var(--purple); }

.cat-age {
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    background: var(--purple-bg);
    border-radius: 50px;
    padding: .15rem .7rem;
}

.library-note {
    margin-top: 2.5rem;
    font-size: .9rem;
    color: var(--muted);
}
.library-note a { color: var(--purple); font-weight: 700; }
.library-note a:hover { text-decoration: underline; }

/* ==========================================================================
   Why Parents Will Love This
   ========================================================================== */
.why-section {
    background: var(--white);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.1rem 1rem;
    text-align: center;
    border: 1px solid rgba(27, 42, 59, .08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}
.why-card:hover {
    box-shadow: 0 8px 24px rgba(124, 92, 191, .12);
    transform: translateY(-3px);
}

.why-img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--purple-bg);
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.why-title {
    font-weight: 700;
    font-size: .8rem;
    line-height: 1.35;
}

.why-desc {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ==========================================================================
   Our Promise (Hygiene & Safety)
   ========================================================================== */
.promise-section {
    background: var(--bg-soft);
    padding: 80px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.promise-content .section-body { margin-left: 0; }

.promise-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.promise-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.promise-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

.promise-label {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
    margin-bottom: .15rem;
}

.promise-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

.promise-sq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.promise-sq {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--purple-bg);
    border: 1px solid var(--border);
}
.promise-sq img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   How It Works
   ========================================================================== */
.hiw-section {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.hiw-overlay {
    position: absolute;
    inset: 0;
    background: rgba(253, 248, 242, .92);
    z-index: 1;
}

.hiw-inner { position: relative; z-index: 2; }

.hiw-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: .5rem;
}

.hiw-step {
    flex: 1;
    max-width: 250px;
    position: relative;
    padding-top: 22px;
}

.hiw-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(27, 42, 59, .12);
    z-index: 3;
}
.hiw-num img { width: 30px; height: 30px; object-fit: contain; }

.hiw-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(8px);
    border: 2px solid;
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.25rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(27, 42, 59, .06);
    transition: var(--transition);
}
.hiw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(27, 42, 59, .1);
}

.hiw-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1rem;
}
.hiw-icon img { width: 100%; height: 100%; object-fit: contain; }

.hiw-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
    margin-bottom: .4rem;
}

.hiw-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
}

.hiw-connector {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-top: 40px;
}
.hiw-connector img { width: 50px; height: auto; opacity: .8; }

/* ==========================================================================
   Subscription Plans
   ========================================================================== */
.plans-section {
    background: var(--white);
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
    margin-top: 2.5rem;
}

.plan-card {
    border: 2px solid;
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: var(--transition);
}
.plan-card:hover {
    box-shadow: 0 12px 36px rgba(124, 92, 191, .15);
    transform: translateY(-4px);
}

.plan-featured { padding-top: 2.6rem; }

.plan-popular {
    position: absolute;
    top: -30px;
    right: 14px;
}
.plan-popular img { width: 80px; height: auto; }

.plan-icon img { height: 52px; width: 52px; object-fit: contain; }

.plan-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
}

.plan-price {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.plan-price span {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
}

.plan-toy-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem 0;
    border-top: 1px dashed rgba(27, 42, 59, .2);
    border-bottom: 1px dashed rgba(27, 42, 59, .2);
}

.plan-toynum {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.plan-toylabel {
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.plan-feats { display: flex; flex-direction: column; gap: .45rem; }
.plan-feats li {
    font-size: .84rem;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    line-height: 1.5;
}
.plan-feats i { color: var(--purple); margin-top: .25rem; font-size: .75rem; }

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: .875rem;
    padding: .75rem 1.25rem;
    margin-top: .5rem;
    transition: var(--transition);
}
.plan-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(27, 42, 59, .22);
    filter: brightness(1.08);
}

.custom-plan-note { margin-top: 2.25rem; }
.custom-plan-note p { font-size: .9rem; color: var(--muted); }
.custom-plan-note a { color: var(--purple); font-weight: 700; }
.custom-plan-note a:hover { text-decoration: underline; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    background: var(--white);
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}

.faq-inner {
    max-width: 760px;
    position: relative;
    z-index: 2;
    padding-bottom: 220px;
}

.faq-item { border-bottom: 1px solid rgba(27, 42, 59, .1); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
    transition: color .2s;
}
.faq-question:hover { color: var(--purple); }

.faq-ic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201, 149, 108, .15);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: .75rem;
    transition: transform .25s ease;
}
.faq-item.active .faq-ic { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.faq-answer p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.75;
    padding-bottom: 1.25rem;
    max-width: 640px;
}

.faq-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner-section {
    background: var(--bg-soft);
    padding: 0 0 5rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--purple) 0%, #5C2D82 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    color: #fff;
    box-shadow: 0 20px 50px rgba(124, 92, 191, .3);
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: .25rem .9rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: .6rem;
}

.cta-text p { font-size: .95rem; opacity: .85; }

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
    flex-shrink: 0;
}

.btn-whatsapp-giant {
    background: var(--whatsapp);
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    padding: .95rem 1.7rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: var(--transition);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.btn-whatsapp-giant:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.07);
}
.btn-whatsapp-giant i { font-size: 1.3rem; }

.cta-direct-email { font-size: .82rem; opacity: .8; }
.cta-direct-email a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    padding: 4.5rem 0 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 280px;
}

.footer-company-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: .45rem .85rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.25rem;
    width: fit-content;
}
.footer-company-badge i {
    color: var(--purple-lt);
    font-size: .85rem;
}
.footer-company-badge strong {
    color: #fff;
    font-weight: 700;
}

.footer-badges { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-badges span {
    font-size: .75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: .3rem .85rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.footer-badges i { color: var(--purple-lt); }

.footer-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.1rem;
}

.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}
.footer-links a:hover { color: var(--purple-lt); }

.footer-contact-item {
    font-size: .875rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .7rem;
    color: rgba(255, 255, 255, .6);
}
.footer-contact-item i { color: var(--purple-lt); width: 16px; }
.footer-contact-item a { color: rgba(255, 255, 255, .75); }
.footer-contact-item a:hover { color: #fff; }

.footer-whatsapp-action { margin-top: 1.1rem; }
.btn-whatsapp-sm {
    background: var(--whatsapp);
    color: #fff;
    font-size: .8rem;
    padding: .55rem 1.1rem;
}
.btn-whatsapp-sm:hover { color: #fff; filter: brightness(1.07); transform: translateY(-2px); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1.5rem 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    z-index: 800;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    transition: var(--transition);
}
.floating-whatsapp-btn:hover { transform: scale(1.08); color: #fff; }

.floating-wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--dark);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .45rem .9rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.floating-whatsapp-btn:hover .floating-wa-tooltip { opacity: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .hero-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { max-width: 560px; width: 100%; margin-inline: auto; }

    .hiw-steps { flex-wrap: wrap; gap: 1.5rem; }
    .hiw-step { flex: 1 1 40%; max-width: 300px; }
    .hiw-connector { display: none; }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }
    .plan-featured { order: -1; }

    .promise-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .cta-card { flex-direction: column; text-align: center; padding: 2.75rem 2rem; }
    .cta-actions { align-items: center; }

    .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .btn-whatsapp-nav span { display: none; }
    .btn-whatsapp-nav { padding: .55rem .8rem; }
    .btn-whatsapp-nav i { font-size: 1.2rem; }
    .mobile-menu-toggle { display: flex; }

    .hero-section { padding: 45px 0 50px; }

    .brands-section,
    .library-section,
    .why-section,
    .promise-section,
    .hiw-section,
    .plans-section { padding: 60px 0; }
    .faq-section { padding: 60px 0 0; }

    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .age-cards-row { gap: .75rem; }
    .age-card { min-width: 140px; padding: 1.1rem 1rem 1rem; }

    .only-lnp-inner { padding: 2.25rem 1.5rem; }

    .faq-inner { padding-bottom: 160px; }
    .faq-bg-bottom { height: 140px; }
}

@media (max-width: 575px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { font-size: .78rem; padding: .35rem .8rem; }
    .stat-item img { height: 22px; }
    .hiw-step { flex: 1 1 100%; max-width: 320px; }
    .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-btns .btn { width: 100%; }
    .btn-whatsapp-giant { font-size: .85rem; padding: .85rem 1.2rem; }
}
