/* ==========================================================================
   BORGEOTECH — Feuille de styles principale
   Direction « Clair Confiance » · bleu profond, épuré, professionnel
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-darker: #1E40AF;
  --blue-50: #EFF4FF;
  --blue-100: #DBE7FE;
  --sky: #0EA5E9;
  --ink: #0F172A;
  --slate: #475569;
  --muted: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-blue: #F5F8FF;
  --border: #E9EEF5;
  --border-strong: #DDE5EF;
  --green: #16A34A;
  --green-50: #ECFDF3;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 6px 24px rgba(15, 23, 42, .07);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, .12);
  --shadow-blue: 0 14px 34px rgba(37, 99, 235, .28);

  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid rgba(37, 99, 235, .45); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate); }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); } /* anchor links clear the sticky header */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-50);
  padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.section-head p { font-size: 1.12rem; margin-top: 14px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-sm);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: .92rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .82); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s, background .25s;
}
.header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -.03em; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand b { color: var(--blue); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .98rem; font-weight: 500; color: var(--slate); transition: color .15s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--radius-sm); align-items: center; justify-content: center; color: var(--ink); }
.burger svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 76px) 0 84px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -120px; width: 720px; height: 720px;
  background: radial-gradient(circle at center, var(--blue-50), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { margin: 18px 0; }
.hero h1 .hl { color: var(--blue); position: relative; }
.hero-sub { font-size: 1.2rem; color: var(--slate); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.trust li { display: flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 500; color: var(--ink); }
.trust svg { width: 19px; height: 19px; color: var(--green); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.window {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.window-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.window-bar i { width: 11px; height: 11px; border-radius: 50%; background: #E2E8F0; }
.window-bar i:nth-child(1){ background:#FF6159; } .window-bar i:nth-child(2){ background:#FFBD2E; } .window-bar i:nth-child(3){ background:#28C840; }
.window-bar .url { margin-left: 10px; font-size: .82rem; color: var(--muted); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 5px 14px; }
.window-body { padding: 26px; }
.kpi-row { display: flex; gap: 14px; margin-bottom: 22px; }
.kpi { flex: 1; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.kpi .k-label { font-size: .78rem; color: var(--muted); font-weight: 500; }
.kpi .k-val { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--ink); margin-top: 4px; }
.kpi .k-val span { color: var(--green); font-size: 1rem; }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding-top: 8px; }
.bars span { flex: 1; background: var(--blue-100); border-radius: 8px 8px 0 0; position: relative; }
.bars span::after { content: ""; position: absolute; inset: auto 0 0 0; height: var(--h); background: linear-gradient(180deg, var(--blue), var(--sky)); border-radius: 8px 8px 0 0; }
.float-badge {
  position: absolute; left: -26px; bottom: 40px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.float-badge .fb-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; }
.float-badge .fb-ic svg { width: 22px; height: 22px; }
.float-badge .fb-t { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .98rem; }
.float-badge .fb-s { font-size: .8rem; color: var(--muted); }

/* ---------- Logos / reassurance strip ---------- */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: 26px; padding-bottom: 26px; }
.strip-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); font-size: .98rem; }
.strip-item svg { width: 24px; height: 24px; color: var(--blue); flex: none; }

/* ---------- Cards grid generic ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Service cards */
.service {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.service .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--blue-50); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service .ic svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: 9px; }
.service p { font-size: .98rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 800; color: var(--blue); line-height: 1; }
.stat .desc { margin-top: 12px; font-size: .98rem; color: var(--slate); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.plan .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; padding: 7px 16px; border-radius: var(--radius-pill); white-space: nowrap;
}
.plan .plan-name { font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--ink); }
.plan .plan-desc { font-size: .92rem; color: var(--muted); margin: 6px 0 18px; min-height: 42px; }
.plan .price { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 2.6rem; line-height: 1; }
.plan .price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.plan .feats { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.plan .feats li { display: flex; gap: 11px; font-size: .96rem; color: var(--slate); }
.plan .feats svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 1px; }
.plan .btn { margin-top: auto; }
.note { text-align: center; font-size: .92rem; color: var(--muted); margin-top: 28px; }

/* Packs */
.pack {
  display: grid; grid-template-columns: 1fr; gap: 0; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.pack:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pack-head { padding: 30px 30px 24px; border-bottom: 1px solid var(--border); }
.pack-head.ecom { background: var(--blue); color: #fff; border-bottom: none; }
.pack-head .pack-name { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.pack-head.ecom .pack-name { color: #fff; }
.pack-head .pack-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-50); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.pack-head.ecom .pack-ic { background: rgba(255,255,255,.18); color: #fff; }
.pack-head .pack-price { margin-top: 16px; font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--ink); }
.pack-head.ecom .pack-price { color: #fff; }
.pack-head .pack-price small { font-size: .95rem; font-weight: 600; color: var(--muted); }
.pack-head.ecom .pack-price small { color: rgba(255,255,255,.8); }
.pack-head .pack-tag { font-size: .95rem; color: var(--muted); margin-top: 4px; }
.pack-head.ecom .pack-tag { color: rgba(255,255,255,.85); }
.pack-body { padding: 28px 30px; }
.pack-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 20px; margin-bottom: 26px; }
.pack-body li { display: flex; gap: 10px; font-size: .95rem; }
.pack-body svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: 2px; }

/* ---------- Parrainage ---------- */
.referral { background: linear-gradient(135deg, var(--blue-darker), var(--blue)); color: #fff; border-radius: 28px; padding: 64px 56px; position: relative; overflow: hidden; }
.referral::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.07); }
.referral .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.referral h2 { color: #fff; max-width: 620px; }
.referral .lead { color: rgba(255,255,255,.88); font-size: 1.15rem; margin-top: 14px; max-width: 560px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 44px 0; position: relative; z-index: 1; }
.step { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 26px 24px; }
.step .n { width: 38px; height: 38px; border-radius: 11px; background: #fff; color: var(--blue); font-family: var(--font-head); font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { color: #fff; font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: rgba(255,255,255,.82); font-size: .95rem; }
.referral-perks { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-bottom: 36px; position: relative; z-index: 1; }
.referral-perks li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.referral-perks svg { width: 20px; height: 20px; color: #fff; }

/* ---------- Méthode (timeline) ---------- */
.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mstep { position: relative; padding-top: 30px; }
.mstep::before { content: ""; position: absolute; top: 13px; left: 0; right: 0; height: 2px; background: var(--border); }
.mstep .dot { position: absolute; top: 6px; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue); }
.mstep h3 { font-size: 1.1rem; margin-bottom: 8px; }
.mstep p { font-size: .96rem; }
.commit { margin-top: 52px; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius-lg); padding: 28px 32px; display: flex; flex-wrap: wrap; gap: 16px 34px; justify-content: center; }
.commit li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--blue-darker); font-size: 1rem; }
.commit svg { width: 21px; height: 21px; color: var(--blue); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.qa[open] { box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.06rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .chev { width: 22px; height: 22px; color: var(--blue); transition: transform .25s; flex: none; }
.qa[open] summary .chev { transform: rotate(180deg); }
.qa .answer { padding: 0 26px 24px; color: var(--slate); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; margin-bottom: 7px; }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-weight: 500; margin-bottom: 18px; }
.form-msg.ok { display: block; background: var(--green-50); color: #166534; border: 1px solid #BBF7D0; }
.form-msg.err { display: block; background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.contact-aside .info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.contact-aside h3 { font-size: 1.15rem; margin-bottom: 16px; }
.info-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.info-line:last-child { margin-bottom: 0; }
.info-line .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-50); color: var(--blue); display: flex; align-items: center; justify-content: center; flex: none; }
.info-line .ic svg { width: 21px; height: 21px; }
.info-line .l { font-size: .82rem; color: var(--muted); font-weight: 500; }
.info-line .v { font-weight: 600; color: var(--ink); }
.info-line a.v:hover { color: var(--blue); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #CBD5E1; padding: 64px 0 32px; }
.footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand b { color: #93B4FF; }
.footer-about { font-size: .96rem; color: #94A3B8; max-width: 340px; }
.footer h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 16px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #94A3B8; font-size: .96rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer .legal { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; font-size: .86rem; color: #64748B; }
.footer .legal a { color: #94A3B8; }
.footer .legal a:hover { color: #fff; }
.footer .legal-id { max-width: 720px; line-height: 1.6; }

/* ---------- Legal pages ---------- */
.legal-page { padding: calc(var(--header-h) + 60px) 0 80px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-page .updated { color: var(--muted); font-size: .92rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.4rem; margin: 38px 0 14px; }
.legal-page p, .legal-page li { font-size: 1.02rem; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; }
.legal-page a { color: var(--blue); text-decoration: underline; }
.legal-page .back { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; margin-bottom: 30px; }
.legal-page .callout { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius); padding: 16px 20px; font-size: .95rem; color: var(--blue-darker); }

/* ---------- Reveal animation (only when JS is on, so no-JS users still see content) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav panel ---------- */
.mobile-panel { position: fixed; inset: var(--header-h) 0 0 0; background: #fff; z-index: 99; transform: translateX(100%); transition: transform .3s ease; padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; }
.mobile-panel.open { transform: none; }
.mobile-panel a:not(.btn) { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-panel .btn { margin-top: 18px; }
body.menu-open { overflow: hidden; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: repeat(2, 1fr); }
  .mstep::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .pricing { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .referral { padding: 44px 26px; }
  .steps { grid-template-columns: 1fr; }
  .pack-body ul { grid-template-columns: 1fr; }
  .referral-perks { flex-direction: column; gap: 12px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .method { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
