/* ============================================================
   Fashion 360 — Landing comercial v4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --navy:        #16284a;
    --navy-2:      #20355e;
    --navy-deep:   #0e1c34;
    --pink:        #e8488a;
    --pink-2:      #f0689f;
    --pink-dark:   #cf3576;
    --pink-lt:     #fdeaf2;
    --teal:        #19b7a8;
    --teal-lt:     #e4f8f6;
    --amber:       #f5a623;
    --ink:         #16284a;
    --ink-2:       #45526e;
    --muted:       #7b88a0;
    --bg:          #f5f7fc;
    --surface:     #ffffff;
    --border:      #e4e9f2;
    --font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius:      18px;
    --radius-lg:   26px;
    --shadow-sm:   0 2px 12px rgba(22, 40, 74, .06);
    --shadow:      0 14px 40px rgba(22, 40, 74, .10);
    --shadow-lg:   0 30px 70px rgba(22, 40, 74, .16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; }
.wrap { width: 100%; max-width: 1150px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { line-height: 1.14; letter-spacing: -.02em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* Buttons */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 32px; border-radius: 999px;
    font-weight: 700; font-size: 15px; font-family: var(--font);
    background: var(--pink); color: #fff; border: 2px solid var(--pink);
    transition: transform .15s, box-shadow .25s, background .2s, border-color .2s;
    cursor: pointer; white-space: nowrap;
}
.lp-btn:hover { background: var(--pink-dark); border-color: var(--pink-dark); box-shadow: 0 14px 34px rgba(232,72,138,.4); transform: translateY(-2px); color: #fff; }
.lp-btn.ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.lp-btn.ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); color: #fff; box-shadow: none; }
.lp-btn.white { background: #fff; color: var(--pink); border-color: #fff; }
.lp-btn.white:hover { background: #fff; color: var(--pink-dark); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.lp-btn.sm { padding: 10px 22px; font-size: 14px; }

/* Nav */
.lp-nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
}
.lp-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 14px; }
.lp-logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; color: var(--navy); letter-spacing: -.03em; }
.lp-logo-hanger {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--pink), var(--pink-2));
    display: grid; place-items: center;
    box-shadow: 0 6px 16px rgba(232,72,138,.4);
}
.lp-logo-hanger svg { width: 23px; height: 23px; color: #fff; }
.lp-logo .logo-360 { color: var(--pink); }
.lp-nav-right { display: flex; align-items: center; gap: 8px; }
.lp-nav-links { display: flex; align-items: center; gap: 2px; }
.lp-nav-links a.nav-item { font-size: 14px; font-weight: 600; color: var(--muted); padding: 8px 15px; border-radius: 999px; transition: color .15s, background .15s; }
.lp-nav-links a.nav-item:hover { color: var(--navy); background: var(--bg); }
.lp-nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 11px; background: var(--surface); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.lp-nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.lp-nav.open .lp-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav.open .lp-nav-toggle span:nth-child(2) { opacity: 0; }
.lp-nav.open .lp-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero-flyer {
    background:
        radial-gradient(ellipse 60% 80% at 85% 20%, rgba(232,72,138,.28), transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 100%, rgba(25,183,168,.18), transparent 55%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-2) 100%);
    color: #fff; padding: 72px 0 80px; position: relative; overflow: hidden;
}
.hero-flyer .wrap { position: relative; z-index: 1; }
.hero-flyer-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge svg { width: 14px; height: 14px; color: var(--teal); }
.hero-flyer h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; margin-bottom: 18px; line-height: 1.1; }
.hero-flyer h1 .hl { color: var(--pink-2); }
.hero-flyer .hero-sub { font-size: clamp(17px, 2.2vw, 21px); font-weight: 600; color: var(--teal); margin-bottom: 18px; }
.hero-flyer .hero-desc { font-size: 16px; color: rgba(255,255,255,.78); max-width: 490px; margin-bottom: 30px; line-height: 1.75; }
.hero-flyer .hero-desc strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-mini { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-mini .hm { }
.hero-mini .hm .hm-n { font-size: 24px; font-weight: 800; color: #fff; }
.hero-mini .hm .hm-n span { color: var(--teal); }
.hero-mini .hm .hm-l { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }

/* Hero visual: panel mock */
.hero-panel {
    background: var(--surface); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 20px; position: relative;
}
.hero-panel .hp-top { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.hero-panel .hp-dots { display: flex; gap: 5px; }
.hero-panel .hp-dots span { width: 9px; height: 9px; border-radius: 50%; }
.hero-panel .hp-dots span:nth-child(1) { background: #ff5f57; }
.hero-panel .hp-dots span:nth-child(2) { background: #ffbd2e; }
.hero-panel .hp-dots span:nth-child(3) { background: #28c840; }
.hero-panel .hp-ttl { font-size: 12px; font-weight: 600; color: var(--muted); }
.hp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.hp-stat { border-radius: 13px; padding: 14px; }
.hp-stat.pink { background: var(--pink-lt); }
.hp-stat.teal { background: var(--teal-lt); }
.hp-stat .hp-l { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.hp-stat .hp-v { font-size: 22px; font-weight: 800; margin-top: 3px; }
.hp-stat.pink .hp-v { color: var(--pink); }
.hp-stat.teal .hp-v { color: var(--teal); }
.hp-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.hp-row:last-child { border-bottom: none; }
.hp-row .hp-name { font-weight: 600; color: var(--ink-2); }
.hp-tag { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--teal-lt); color: var(--teal); white-space: nowrap; }
.hp-tag.promo { background: var(--pink-lt); color: var(--pink); }
.hp-tag.amount { background: transparent; color: var(--pink); font-size: 13px; }

/* Sections */
section { padding: 78px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-head .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16.5px; line-height: 1.7; }
.bg-white { background: var(--surface); }
.bg-soft { background: var(--bg); }

/* Feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-item {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px 22px; transition: transform .2s, box-shadow .25s, border-color .2s;
}
.feat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(232,72,138,.28); }
.feat-item .fi-ico { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--pink-lt), #fff5f9); display: grid; place-items: center; margin-bottom: 16px; }
.feat-item .fi-ico svg { width: 25px; height: 25px; color: var(--pink); }
.feat-item h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.feat-item p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.split h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.split > div > p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 22px; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; padding: 11px 0; font-size: 15px; color: var(--ink-2); font-weight: 500; line-height: 1.5; }
.check-list .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); flex-shrink: 0; display: grid; place-items: center; margin-top: 1px; }
.check-list .ck svg { width: 13px; height: 13px; color: #fff; }

/* Inventory visual */
.inv-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.inv-zones { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.inv-zone { border-radius: 14px; padding: 18px; text-align: center; }
.inv-zone.pink { background: var(--pink-lt); }
.inv-zone.teal { background: var(--teal-lt); }
.inv-zone .iz-l { font-size: 11px; font-weight: 700; letter-spacing: .05em; color: var(--muted); }
.inv-zone .iz-n { font-size: 30px; font-weight: 800; line-height: 1.1; margin: 4px 0; }
.inv-zone.pink .iz-n { color: var(--pink); }
.inv-zone.teal .iz-n { color: var(--teal); }
.inv-zone .iz-s { font-size: 12px; color: var(--ink-2); }
.inv-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; font-weight: 600; color: var(--navy); }
.inv-row:last-child { border-bottom: none; }
.inv-row .inv-q { font-weight: 700; }
.inv-row .inv-q.ok { color: var(--teal); }
.inv-row .inv-q.pink { color: var(--pink); }
.inv-row .inv-q.low { color: #e0533f; }

/* Phone mock */
.phone-mock { max-width: 270px; margin: 0 auto; background: var(--navy-deep); border-radius: 34px; padding: 12px; box-shadow: var(--shadow-lg); }
.phone-mock .pm-notch { width: 90px; height: 5px; background: rgba(255,255,255,.25); border-radius: 999px; margin: 4px auto 10px; }
.phone-mock .pm-screen { background: #fff; border-radius: 24px; overflow: hidden; }
.phone-mock .pm-header { background: linear-gradient(135deg, var(--pink), var(--pink-2)); color: #fff; padding: 16px; font-weight: 700; font-size: 14px; text-align: center; }
.phone-mock .pm-products { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
.phone-mock .pm-prod { background: var(--bg); border-radius: 12px; padding: 10px; text-align: center; font-size: 11px; font-weight: 600; color: var(--navy); }
.phone-mock .pm-img { height: 56px; border-radius: 9px; margin-bottom: 7px; }
.phone-mock .pm-prod:nth-child(1) .pm-img { background: linear-gradient(135deg, #f8c9dd, #fde8f1); }
.phone-mock .pm-prod:nth-child(2) .pm-img { background: linear-gradient(135deg, #c9e9e6, #e4f8f6); }
.phone-mock .pm-prod:nth-child(3) .pm-img { background: linear-gradient(135deg, #cdd6ea, #eef2fa); }
.phone-mock .pm-prod:nth-child(4) .pm-img { background: linear-gradient(135deg, #f6dcc0, #fdeede); }
.phone-mock .pm-price { color: var(--pink); font-weight: 800; margin-top: 3px; }
.share-row { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.share-row .sr-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; }
.share-row .sr-ico svg { width: 19px; height: 19px; }
.share-row .sr-ico.wa { background: #25d366; }
.share-row .sr-ico.fb { background: #1877f2; }
.share-row .sr-ico.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* CRM */
.crm-section { background: linear-gradient(180deg, var(--pink-lt), var(--surface) 45%); }
.crm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.crm-points { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 24px; }
.crm-point { display: flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 15px 16px; box-shadow: var(--shadow-sm); }
.crm-point .cp-ico { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(135deg, var(--pink), var(--pink-2)); display: grid; place-items: center; flex-shrink: 0; }
.crm-point .cp-ico svg { width: 20px; height: 20px; color: #fff; }
.crm-point span { font-size: 14px; font-weight: 700; color: var(--navy); }
.crm-grid .check-list .ck { background: var(--pink); }

/* VIP card */
.vip-card { background: var(--surface); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); max-width: 360px; margin: 0 auto; position: relative; overflow: hidden; }
.vip-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--pink), var(--pink-2)); }
.vip-card .vip-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(90deg, var(--pink), var(--pink-2)); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; padding: 6px 15px; border-radius: 999px; margin-bottom: 20px; }
.vip-card .vip-badge svg { width: 13px; height: 13px; }
.vip-card .vip-profile { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.vip-card .vip-avatar { width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-2), var(--navy)); display: grid; place-items: center; font-size: 22px; font-weight: 800; color: #fff; flex-shrink: 0; }
.vip-card .vip-name { font-size: 19px; font-weight: 800; color: var(--navy); }
.vip-card .vip-phone { font-size: 13px; color: var(--muted); margin-top: 2px; }
.vip-card .vip-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.vip-card .vip-stat { background: var(--bg); border-radius: 12px; padding: 12px 6px; }
.vip-card .vip-stat .vs-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 5px; }
.vip-card .vip-stat .vs-val { font-size: 17px; font-weight: 800; color: var(--pink); }
.vip-card .vip-promo { display: flex; align-items: center; gap: 9px; margin-top: 18px; padding: 13px 15px; background: var(--teal-lt); border-radius: 12px; font-size: 13px; font-weight: 600; color: var(--navy); }
.vip-card .vip-promo svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* Reports (navy) */
.bg-navy { background: linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, var(--navy-2)); color: #fff; position: relative; overflow: hidden; }
.bg-navy::before { content: ''; position: absolute; top: -30%; right: -10%; width: 50%; height: 80%; background: radial-gradient(circle, rgba(232,72,138,.2), transparent 65%); pointer-events: none; }
.bg-navy .wrap { position: relative; z-index: 1; }
.bg-navy .section-head h2 { color: #fff; }
.bg-navy .section-head p { color: rgba(255,255,255,.68); }
.bg-navy .section-head .tag { color: var(--teal); }
.charts-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.chart-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px; text-align: center; }
.chart-box h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; }
.chart-bars { display: flex; align-items: flex-end; justify-content: center; gap: 8px; height: 72px; }
.chart-bars span { width: 15px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--pink-2), var(--pink)); }
.chart-bars span:nth-child(1) { height: 42%; }
.chart-bars span:nth-child(2) { height: 66%; }
.chart-bars span:nth-child(3) { height: 88%; }
.chart-bars span:nth-child(4) { height: 54%; }
.chart-bars span:nth-child(5) { height: 96%; }
.chart-svg { width: 100%; height: 72px; }
.chart-grow { font-size: 34px; font-weight: 800; color: var(--teal); line-height: 72px; }
.chart-grow small { font-size: 12px; display: block; line-height: 1; color: rgba(255,255,255,.6); font-weight: 600; }
.chart-donut { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto; background: conic-gradient(var(--teal) 0 65%, rgba(255,255,255,.14) 65% 100%); position: relative; }
.chart-donut::after { content: '65%'; position: absolute; inset: 15px; background: var(--navy); border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 800; color: #fff; }
.reports-note { text-align: center; margin-top: 30px; font-size: 14.5px; color: rgba(255,255,255,.7); }

/* Ideal */
.ideal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 820px; margin: 0 auto; }
.ideal-item { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; font-size: 14.5px; font-weight: 700; color: var(--navy); transition: transform .18s, box-shadow .2s, border-color .2s; }
.ideal-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(232,72,138,.3); }
.ideal-item .id-dot { width: 30px; height: 30px; border-radius: 9px; background: var(--pink-lt); display: grid; place-items: center; flex-shrink: 0; }
.ideal-item .id-dot svg { width: 16px; height: 16px; color: var(--pink); }

/* FAQ */
.faq { max-width: 740px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(232,72,138,.3); }
.faq-item summary { list-style: none; cursor: pointer; padding: 19px 24px; font-weight: 700; font-size: 15.5px; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-item summary .fq-plus::before, .faq-item summary .fq-plus::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--pink); border-radius: 2px; }
.faq-item summary .fq-plus::before { width: 13px; height: 2px; }
.faq-item summary .fq-plus::after { width: 2px; height: 13px; transition: transform .25s; }
.faq-item[open] summary .fq-plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--pink) 0%, var(--pink-2) 55%, #f78ab6 100%); color: #fff; padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 80% 0%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin-bottom: 12px; max-width: 760px; margin-left: auto; margin-right: auto; }
.cta-band p { font-size: 17px; opacity: .94; max-width: 540px; margin: 0 auto 28px; }

/* Footer */
.lp-foot { background: var(--navy-deep); color: rgba(255,255,255,.65); padding: 44px 0 30px; font-size: 13.5px; }
.lp-foot .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.lp-foot .lp-logo { color: #fff; }
.lp-foot-links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.lp-foot a { color: rgba(255,255,255,.8); font-weight: 600; }
.lp-foot a:hover { color: var(--pink-2); }

/* Responsive */
@media (max-width: 900px) {
    .hero-flyer-grid, .split, .crm-grid { grid-template-columns: 1fr; }
    .hero-panel { max-width: 460px; margin: 0 auto; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .charts-row { grid-template-columns: repeat(2, 1fr); }
    .ideal-grid { grid-template-columns: 1fr 1fr; }
    .split .phone-mock { order: -1; }
    .lp-nav-toggle { display: flex; }
    .lp-nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 16px 24px 20px; gap: 4px; }
    .lp-nav.open .lp-nav-links { display: flex; }
    .lp-nav-links a.nav-item { padding: 12px 16px; }
    .lp-nav .wrap { position: relative; }
}
@media (max-width: 600px) {
    section { padding: 56px 0; }
    .feat-grid, .crm-points, .ideal-grid, .charts-row { grid-template-columns: 1fr; }
    .hero-flyer { padding: 52px 0 60px; }
    .vip-card .vip-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
