/* ============================================================
   LUVRON · Modern kids B2B ecommerce
   Clean whites, bright accent palette inspired by logo letters.
   Multi-page shared stylesheet.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@500;700&display=swap');

:root {
    /* Surfaces */
    --white:        #ffffff;
    --canvas:       #fdfaf6;
    --bg-cream:     #fff7e6;
    --bg-sky:       #eef5ff;
    --bg-mint:      #ecfdf5;
    --bg-peach:     #fff0ec;
    --bg-lavender:  #f3eeff;

    /* Brand — drawn from the multi-color logo letters */
    --coral:        #ff6b5b;
    --coral-deep:   #e84a3f;
    --coral-soft:   #ffd9d3;

    --sunshine:     #ffc93c;
    --sunshine-deep:#e0a91b;
    --sunshine-soft:#ffe9a8;

    --sky:          #4dabf7;
    --sky-deep:     #1c7ed6;
    --sky-soft:     #c7e2fb;

    --mint:         #51cf66;
    --mint-deep:    #2f9e44;
    --mint-soft:    #c3e8c8;

    --plum:         #9775fa;
    --plum-deep:    #7048e8;
    --plum-soft:    #ddd0fa;

    --marigold:     #f59e0b;
    --marigold-deep:#b45309;
    --marigold-soft:#fde68a;

    /* Ink */
    --ink:          #0f172a;
    --ink-soft:     #475569;
    --ink-faint:    #94a3b8;
    --ink-ghost:    #cbd5e1;

    --line:         #e5e7eb;
    --line-soft:    #f1f5f9;

    /* Effects */
    --shadow-1: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-2: 0 6px 18px rgba(15, 23, 42, 0.06), 0 14px 36px rgba(15, 23, 42, 0.04);
    --shadow-3: 0 18px 48px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-glow: 0 8px 30px rgba(255, 107, 91, 0.18);

    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --max-w: 1280px;
    --transition: cubic-bezier(.23, 1, .32, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
.display { font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif; font-variation-settings: "opsz" 96; line-height: 1.05; letter-spacing: -0.025em; }
.hand { font-family: "Caveat", cursive; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.announce strong { color: var(--sunshine); font-weight: 600; }
.announce a { color: var(--sunshine); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 64px; width: auto; }
@media (max-width: 720px) { .logo-link img { height: 52px; } }

.site-nav ul { display: flex; gap: 32px; align-items: center; }
.site-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: color .2s var(--transition);
    position: relative;
    padding: 6px 0;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--transition);
    border-radius: 2px;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a:hover { color: var(--coral); }
.site-nav a.active { color: var(--coral); font-weight: 600; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14.5px;
    transition: all .2s var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232, 74, 63, 0.28); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-outline-coral { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline-coral:hover { background: var(--coral); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-yellow { background: var(--sunshine); color: var(--ink); }
.btn-yellow:hover { background: var(--sunshine-deep); transform: translateY(-2px); }
.btn .arr { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

.mobile-toggle { display: none; }
@media (max-width: 960px) {
    .site-nav { display: none; }
    .site-nav.open {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        box-shadow: var(--shadow-2);
        padding: 24px;
        border-top: 1px solid var(--line);
    }
    .site-nav.open ul { flex-direction: column; align-items: flex-start; gap: 18px; }
    .header-cta { display: none; }
    .mobile-toggle {
        display: inline-flex;
        align-items: center; justify-content: center;
        width: 42px; height: 42px;
        border: 1.5px solid var(--ink);
        border-radius: 50%;
        background: var(--white);
    }
    .mobile-toggle svg { width: 18px; height: 18px; }
}

/* ============================================================
   HERO BLOCKS (used on multiple pages)
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}
.hero::before {
    top: -100px; left: -50px;
    width: 400px; height: 400px;
    background: var(--coral-soft);
}
.hero::after {
    bottom: -100px; right: -50px;
    width: 500px; height: 500px;
    background: var(--sky-soft);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--coral-soft);
    color: var(--coral-deep);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.hero-eyebrow .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(255, 107, 91, 0); }
}
.hero h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 96;
    font-size: clamp(40px, 6.5vw, 78px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ink);
}
.hero h1 .accent { color: var(--coral); position: relative; display: inline-block; }
.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 12px;
    background: var(--sunshine);
    z-index: -1;
    border-radius: 2px;
    opacity: 0.6;
}
.hero h1 .hand {
    color: var(--coral);
    font-weight: 700;
    font-size: 0.85em;
    display: inline-block;
    transform: rotate(-2deg);
}
.hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.6;
}
.hero p.lead strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-peach) 0%, var(--bg-cream) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, var(--sunshine-soft), transparent 40%),
        radial-gradient(circle at 80% 20%, var(--coral-soft), transparent 40%);
    opacity: 0.7;
}
.hero-visual img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 40px rgba(15, 23, 42, 0.15));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

/* Floating product info chip (e.g. on hero) */
.product-chip {
    position: absolute;
    background: var(--white);
    box-shadow: var(--shadow-2);
    padding: 12px 16px;
    border-radius: var(--radius);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}
.product-chip .ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-chip .ico svg { width: 18px; height: 18px; }
.product-chip.tl { top: 20px; left: 20px; transform: rotate(-3deg); }
.product-chip.br { bottom: 20px; right: 20px; transform: rotate(2deg); }
.product-chip.tr { top: 20px; right: 20px; }
.product-chip.bl { bottom: 20px; left: 20px; }

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 56px 0 72px; }
}

/* Slim hero (used on inner pages) */
.hero-slim {
    padding: 48px 0 64px;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero-slim::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: var(--coral-soft);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}
.hero-slim .breadcrumb {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 18px;
}
.hero-slim .breadcrumb a:hover { color: var(--coral); }
.hero-slim h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 96;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.hero-slim h1 .accent { color: var(--coral); }
.hero-slim p.lead {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 640px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section.compact { padding: 64px 0; }
.section.bg-cream { background: var(--bg-cream); }
.section.bg-sky { background: var(--bg-sky); }
.section.bg-mint { background: var(--bg-mint); }
.section.bg-peach { background: var(--bg-peach); }
.section.bg-canvas { background: var(--canvas); }
.section.bg-ink { background: var(--ink); color: var(--white); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head .label {
    display: inline-block;
    color: var(--coral);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-head h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 96;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-head h2 .accent { color: var(--coral); }
.section-head p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
}
.section.bg-ink .section-head h2 { color: var(--white); }
.section.bg-ink .section-head p { color: rgba(255, 255, 255, 0.7); }
.section.bg-ink .section-head .label { color: var(--sunshine); }

/* ============================================================
   CATEGORY GRID — colourful per-series cards
   ============================================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.cat-card {
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s var(--transition), box-shadow .25s var(--transition);
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.cat-card .img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.cat-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .35s var(--transition);
    filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.08));
}
.cat-card:hover img { transform: scale(1.06) rotate(-2deg); }
.cat-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 24;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.cat-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    font-weight: 500;
}

/* Color variants per series */
.cat-card.c-coral    { background: var(--bg-peach); }
.cat-card.c-sky      { background: var(--bg-sky); }
.cat-card.c-mint     { background: var(--bg-mint); }
.cat-card.c-cream    { background: var(--bg-cream); }
.cat-card.c-lavender { background: var(--bg-lavender); }

@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.prod-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform .3s var(--transition), box-shadow .3s var(--transition), border-color .3s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.prod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
    border-color: var(--coral-soft);
}
.prod-card .img-wrap {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-peach) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}
/* Soft pastel rotation per card position */
.prod-card:nth-child(5n+1) .img-wrap { background: linear-gradient(135deg, var(--bg-cream), var(--bg-peach)); }
.prod-card:nth-child(5n+2) .img-wrap { background: linear-gradient(135deg, var(--bg-sky), #d8e8fa); }
.prod-card:nth-child(5n+3) .img-wrap { background: linear-gradient(135deg, var(--bg-mint), #d4f1d8); }
.prod-card:nth-child(5n+4) .img-wrap { background: linear-gradient(135deg, var(--bg-lavender), #e7dffa); }
.prod-card:nth-child(5n)   .img-wrap { background: linear-gradient(135deg, var(--bg-peach), #ffd9d3); }

.prod-card .img-wrap img {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    transition: transform .4s var(--transition);
    filter: drop-shadow(0 20px 28px rgba(15, 23, 42, 0.14));
}
.prod-card:hover .img-wrap img { transform: scale(1.08) rotate(-3deg); }

.prod-card .badge {
    position: absolute;
    top: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
    z-index: 2;
}
.prod-card .badge.musical {
    left: 14px;
    background: rgba(245, 158, 11, 0.95);
    color: white;
    border: 1px solid var(--marigold-deep);
}
.prod-card .badge.normal {
    left: 14px;
    background: rgba(47, 158, 68, 0.95);
    color: white;
    border: 1px solid var(--mint-deep);
}
.prod-card .badge svg { width: 11px; height: 11px; }
.prod-card .badge.bestseller {
    right: 14px;
    background: var(--ink);
    color: var(--white);
}

.prod-card .body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.prod-card .series-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--coral);
    text-transform: uppercase;
}
.prod-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 32;
    font-size: 22px;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0;
}
.prod-card .sku {
    font-family: "SFMono-Regular", "Consolas", monospace;
    font-size: 11px;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
}
.prod-card .meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.prod-card .meta-item .k {
    display: block;
    font-size: 10.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
    font-weight: 600;
}
.prod-card .meta-item .v {
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
}
.prod-card .price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}
.prod-card .price-line .from {
    font-size: 11px;
    color: var(--ink-faint);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.prod-card .price-line .price {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 32;
    font-weight: 700;
    color: var(--ink);
    font-size: 22px;
    letter-spacing: -0.01em;
}
.prod-card .price-line .price-note {
    font-size: 11px;
    color: var(--ink-faint);
    margin-left: auto;
}
.prod-card .quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    margin-top: 16px;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    transition: background .2s, transform .2s;
}
.prod-card:hover .quote-btn {
    background: var(--coral);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}
.prod-card .quote-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) {
    .prod-grid { grid-template-columns: 1fr; gap: 16px; }
    .prod-card .body { padding: 20px; }
    .prod-card h3 { font-size: 20px; }
}

/* ============================================================
   FEATURE GRID — Why Luvron etc.
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--line);
    transition: transform .25s var(--transition), border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--coral-soft); box-shadow: var(--shadow-2); }
.feature-card .ico {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card .ico.coral { background: var(--bg-peach); color: var(--coral-deep); }
.feature-card .ico.sky { background: var(--bg-sky); color: var(--sky-deep); }
.feature-card .ico.mint { background: var(--bg-mint); color: var(--mint-deep); }
.feature-card .ico.sunshine { background: var(--bg-cream); color: var(--marigold-deep); }
.feature-card .ico.plum { background: var(--bg-lavender); color: var(--plum-deep); }
.feature-card .ico svg { width: 28px; height: 28px; }
.feature-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 24;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.feature-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}
.stats-band .stat-cell { padding: 28px 24px; border-right: 1px solid var(--line); text-align: center; }
.stats-band .stat-cell:last-child { border-right: 0; }
.stats-band .num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 96;
    font-size: 44px;
    line-height: 1;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.stats-band .num em { color: var(--coral); font-style: normal; }
.stats-band .label {
    font-size: 12.5px;
    color: var(--ink-soft);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
@media (max-width: 720px) {
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .stats-band .stat-cell { border-bottom: 1px solid var(--line); }
    .stats-band .stat-cell:nth-child(odd) { border-right: 1px solid var(--line); }
    .stats-band .stat-cell:nth-child(even) { border-right: 0; }
    .stats-band .stat-cell:nth-child(n+3) { border-bottom: 0; }
}

/* ============================================================
   TIER CARDS — Musical vs Normal
   ============================================================ */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.tier-card {
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.tier-card.musical { background: linear-gradient(135deg, var(--bg-cream) 0%, #fff5d3 100%); }
.tier-card.normal  { background: linear-gradient(135deg, var(--bg-mint) 0%, #d4f4d8 100%); }
.tier-card .marker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    background: var(--white);
    margin-bottom: 18px;
}
.tier-card.musical .marker { color: var(--marigold-deep); }
.tier-card.normal  .marker { color: var(--mint-deep); }
.tier-card .marker svg { width: 14px; height: 14px; }
.tier-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 96;
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.tier-card .price-range {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 24px;
}
.tier-card ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 14.5px;
    color: var(--ink-soft);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.tier-card ul li:first-child { border-top: 0; }
.tier-card ul li strong { color: var(--ink); font-weight: 600; }
.tier-card ul li .check {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.tier-card.musical ul li .check { color: var(--marigold-deep); }
.tier-card.normal  ul li .check { color: var(--mint-deep); }
.tier-card ul li .check svg { width: 11px; height: 11px; }
.tier-card .hsn-line {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 12.5px;
    color: var(--ink-soft);
}
.tier-card .hsn-line code {
    font-family: "SFMono-Regular", "Consolas", monospace;
    background: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11.5px;
}
@media (max-width: 720px) {
    .tier-grid { grid-template-columns: 1fr; gap: 16px; }
    .tier-card { padding: 28px 24px; }
    .tier-card h3 { font-size: 32px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--line);
    position: relative;
    transition: transform .25s var(--transition);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.testimonial .stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--marigold);
}
.testimonial .stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial p.quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 22px;
}
.testimonial .who {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.testimonial .who img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-peach);
}
.testimonial .who strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.testimonial .who small {
    font-size: 12.5px; color: var(--ink-soft); font-weight: 500;
}
@media (max-width: 720px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNERS
   ============================================================ */
.cta-banner {
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
.cta-banner::before { top: -100px; right: -50px; width: 300px; height: 300px; }
.cta-banner::after { bottom: -80px; left: 30%; width: 200px; height: 200px; background: rgba(255, 201, 60, 0.2); }
.cta-banner-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-variation-settings: "opsz" 96;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta-banner h2 .accent { color: var(--sunshine); }
.cta-banner p { font-size: 17px; opacity: 0.92; max-width: 480px; }
.cta-banner .actions { display: flex; flex-direction: column; gap: 12px; }
.cta-banner .actions .btn { justify-content: center; }
.cta-banner .actions small { color: rgba(255, 255, 255, 0.7); font-size: 12.5px; text-align: center; margin-top: 4px; }
@media (max-width: 720px) {
    .cta-banner { padding: 40px 28px; }
    .cta-banner-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand img { height: 80px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand .nap { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 340px; }
.footer-brand .nap strong { color: var(--white); font-weight: 600; }
.footer-brand .nap a { color: rgba(255, 255, 255, 0.85); border-bottom: 1px dotted rgba(255, 255, 255, 0.3); }
.footer-brand .nap a:hover { color: var(--sunshine); border-color: var(--sunshine); }
.footer-stamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 201, 60, 0.1);
    border: 1.5px solid var(--sunshine);
    border-radius: var(--radius-sm);
    color: var(--sunshine);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.footer-col h4 {
    font-size: 13.5px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color .15s;
}
.footer-col a:hover { color: var(--coral); }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.footer-social a:hover { background: var(--coral); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }

.colophon {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}
.colophon a { color: rgba(255, 255, 255, 0.5); }
.colophon a:hover { color: var(--sunshine); }

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FILTER UI (used on products page)
   ============================================================ */
.filter-bar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}
.filter-group { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.filter-group .label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 6px;
}
.chip {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--bg-cream);
    border: 1.5px solid transparent;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.chip:hover { color: var(--ink); background: var(--bg-peach); }
.chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.chip.musical-filter:not(.active) .dot { background: var(--marigold); opacity: 1; }
.chip.normal-filter:not(.active) .dot { background: var(--mint-deep); opacity: 1; }

.results-info {
    font-size: 13px;
    color: var(--ink-soft);
}
.results-info strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.form-group label .req { color: var(--coral); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font: inherit;
    background: var(--white);
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--coral);
    box-shadow: 0 0 0 4px var(--coral-soft);
}
.form-group .hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--ink-faint);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 999px;
    padding: 12px 20px 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: transform .2s var(--transition);
    font-size: 14px;
    font-weight: 600;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float .ico {
    width: 32px; height: 32px;
    background: var(--white); color: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.wa-float .ico svg { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 600px) {
    .wa-float { padding: 10px; }
    .wa-float .txt { display: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--transition), transform .7s var(--transition);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }
.reveal-5 { transition-delay: .4s; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p.lead, .hero-eyebrow, .hero-actions {
    animation: slideDown .8s var(--transition) backwards;
}
.hero-eyebrow { animation-delay: 0s; }
.hero h1 { animation-delay: .1s; }
.hero p.lead { animation-delay: .2s; }
.hero-actions { animation-delay: .3s; }
