/* ===== TOKENS ===== */
:root {
  --black: #050506;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-soft: #e8cf7e;
  --gold-deep: #b6902a;

  --bg: #060609;
  --bg-alt: #0a0b0f;
  --surface: rgba(255, 255, 255, .035);
  --surface-2: rgba(255, 255, 255, .05);
  --card: rgba(255, 255, 255, .035);

  --ink: #f4f4f6;
  --ink-dim: #c7c7cf;
  --muted: #8a8a95;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .4);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, .5);
  --shadow-lg: 0 50px 120px rgba(0, 0, 0, .6);
  --glow-gold: 0 0 0 1px rgba(212, 175, 55, .4), 0 20px 60px rgba(212, 175, 55, .18);

  --maxw: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-sans: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  position: relative;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient grid + glow backdrop */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
}
body::after {
  content: "";
  position: fixed; top: -280px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, .16), rgba(212, 175, 55, 0) 60%);
  filter: blur(30px);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

.container { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--black); padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ===== BUTTONS ===== */
.btn {
  --pad-y: 13px; --pad-x: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-sm { --pad-y: 10px; --pad-x: 18px; font-size: .875rem; }
.btn-lg { --pad-y: 16px; --pad-x: 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, #fff, #e9e9ee);
  color: #0a0a0c;
  box-shadow: 0 10px 30px rgba(255, 255, 255, .12);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(255, 255, 255, .22); }

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--ink); border-color: var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: #fff; box-shadow: 0 0 30px rgba(212, 175, 55, .18); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--gold); color: #fff; transform: translateY(-3px); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 11, .6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(8, 8, 11, .82); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .04em; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(150deg, #1a1a1f, #050506);
  border: 1px solid rgba(212, 175, 55, .4);
  color: var(--gold); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  box-shadow: inset 0 0 12px rgba(212, 175, 55, .15);
}
.brand-name { font-size: 1.15rem; }
.nav-desktop { display: none; gap: 30px; }
.nav-desktop a { font-weight: 600; font-size: .95rem; color: var(--ink-dim); position: relative; transition: color .25s; }
.nav-desktop a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-primary { display: none; }

.nav-toggle { width: 42px; height: 42px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .04); border-radius: 12px; display: grid; place-items: center; gap: 4px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: grid; gap: 4px; padding: 0 22px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .45s var(--ease), opacity .3s, padding .3s;
  background: rgba(8, 8, 11, .96); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.nav-mobile.open { max-height: 460px; opacity: 1; padding: 12px 22px 22px; border-bottom-color: var(--line); }
.nav-mobile a { padding: 12px 6px; font-weight: 600; color: var(--ink-dim); border-bottom: 1px solid var(--line); }
.nav-mobile a.btn { border: none; margin-top: 10px; justify-content: center; color: #0a0a0c; }

/* ===== HERO ===== */
.hero { position: relative; padding: 64px 0 74px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -160px; right: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212, 175, 55, .22), rgba(212, 175, 55, 0) 62%);
  filter: blur(24px); z-index: 0; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: 44px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-dim); background: rgba(255, 255, 255, .04); border: 1px solid var(--line-strong);
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(212, 175, 55, .22), 0 0 12px rgba(212, 175, 55, .6); }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 8vw, 4.6rem); line-height: 1.02; letter-spacing: -.03em; margin: 22px 0 18px; text-wrap: balance; }
.gold { background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.02rem, 2.4vw, 1.2rem); color: var(--muted); max-width: 540px; text-wrap: pretty; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #16161b; object-fit: cover; margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }
.hero-trust p { font-size: .9rem; color: var(--muted); }
.hero-trust strong { color: var(--ink); }

.hero-media { position: relative; }
.hero-card-glass {
  position: relative; border-radius: 30px; padding: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12); box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
}
.hero-card-glass::before {
  content: ""; position: absolute; inset: -1px; border-radius: 31px; padding: 1px; pointer-events: none;
  background: linear-gradient(140deg, rgba(212, 175, 55, .6), rgba(255, 255, 255, .05) 40%, rgba(212, 175, 55, .3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.hero-card-glass img { border-radius: 18px; animation: float 6s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hero-card-glass img { animation: none; } }

/* ===== TRUSTED ===== */
.trusted { padding: 26px 0 8px; }
.trusted-label { text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 40px; }
.logo-item { font-family: var(--font-display); font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 600; color: rgba(255, 255, 255, .35); letter-spacing: .02em; transition: color .3s; }
.logo-item:hover { color: var(--ink); }

/* ===== SECTIONS ===== */
.section { position: relative; padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0)); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.eyebrow-line { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 5vw, 2.9rem); line-height: 1.08; letter-spacing: -.02em; text-wrap: balance; }
.section-lead { color: var(--muted); font-size: 1.05rem; margin-top: 14px; text-wrap: pretty; }

/* ===== ICONS ===== */
.ic { width: 26px; height: 26px; background: currentColor; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.why-card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  backdrop-filter: blur(12px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s, background .3s;
}
.why-card:hover { transform: translateY(-6px); background: var(--surface-2); border-color: rgba(212, 175, 55, .45); box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(212, 175, 55, .1); }
.why-card .ic { color: var(--gold); margin-bottom: 16px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--ink); }
.why-card p { color: var(--muted); font-size: .96rem; }

/* ===== PRODUCTS ===== */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.product-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 18px 24px; text-align: center;
  backdrop-filter: blur(12px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, .4); box-shadow: 0 24px 60px rgba(0, 0, 0, .5); }
.product-img { background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01)); border: 1px solid var(--line); border-radius: 16px; padding: 14px; margin-bottom: 18px; overflow: hidden; }
.product-img img { transition: transform .5s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card h3 { font-size: 1.12rem; margin-bottom: 6px; color: var(--ink); }
.product-card p { color: var(--muted); font-size: .92rem; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: start; max-width: 900px; margin: 0 auto; }
.step { text-align: center; }
.step-num {
  display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 20px;
  background: linear-gradient(150deg, #17171c, #08080a); border: 1px solid rgba(212, 175, 55, .4);
  color: var(--gold); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 18px; box-shadow: inset 0 0 18px rgba(212, 175, 55, .15), 0 12px 30px rgba(0, 0, 0, .5);
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--ink); }
.step p { color: var(--muted); max-width: 260px; margin-inline: auto; }
.step-line { display: none; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-top: 30px; }

/* ===== FEATURES ===== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature {
  display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px; backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s, background .3s;
}
.feature:hover { transform: translateY(-4px); background: var(--surface-2); border-color: rgba(212, 175, 55, .5); box-shadow: 0 0 30px rgba(212, 175, 55, .1); }
.feature .ic { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; }
.feature span { font-weight: 600; font-size: .98rem; color: var(--ink); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; backdrop-filter: blur(12px); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(212, 175, 55, .1), rgba(255, 255, 255, .02));
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 50px rgba(212, 175, 55, .12);
}
.price-card.featured .per { color: var(--gold); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg, var(--gold-soft), var(--gold)); color: #0a0a0c; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; box-shadow: 0 8px 24px rgba(212, 175, 55, .3); }
.price-card h3 { font-size: 1.35rem; margin-bottom: 4px; color: var(--ink); }
.price-desc { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.price .amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--ink); }
.price .per { color: var(--muted); font-size: .9rem; }
.price-list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-list li { position: relative; padding-left: 28px; font-size: .95rem; color: var(--ink-dim); }
.price-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(212, 175, 55, .18); }
.price-list li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 3px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(12px); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.testi:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, .35); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.testi blockquote { font-size: 1.02rem; color: var(--ink-dim); margin-bottom: 22px; text-wrap: pretty; }
.testi figcaption { display: flex; align-items: center; gap: 12px; }
.testi figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.testi figcaption span { display: flex; flex-direction: column; font-size: .9rem; color: var(--muted); }
.testi figcaption strong { color: var(--ink); font-size: 1rem; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; backdrop-filter: blur(12px); transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: rgba(212, 175, 55, .45); box-shadow: 0 0 30px rgba(212, 175, 55, .08); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 1.04rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.chev { position: relative; width: 14px; height: 14px; flex: 0 0 auto; transition: transform .35s var(--ease); }
.chev::before, .chev::after { content: ""; position: absolute; top: 6px; width: 9px; height: 2px; background: var(--gold); border-radius: 2px; }
.chev::before { left: 0; transform: rotate(45deg); }
.chev::after { right: 0; transform: rotate(-45deg); }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 22px; color: var(--muted); }

/* ===== CTA ===== */
.cta-section { padding: 30px 0 94px; }
.cta-box { position: relative; overflow: hidden; text-align: center; border-radius: 34px; padding: 66px 26px; box-shadow: var(--shadow-lg); border: 1px solid rgba(212, 175, 55, .3); background: linear-gradient(160deg, #101014, #070708); }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(212, 175, 55, .4), transparent 62%); pointer-events: none; }
.cta-box h2 { position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 5.5vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px; text-wrap: balance; }
.cta-box p { position: relative; color: var(--ink-dim); max-width: 500px; margin: 0 auto 30px; }
.cta-box .btn-primary { position: relative; background: linear-gradient(120deg, var(--gold-soft), var(--gold)); color: #0a0a0c; box-shadow: 0 14px 40px rgba(212, 175, 55, .3); }
.cta-box .btn-primary:hover { box-shadow: 0 20px 54px rgba(212, 175, 55, .42); }

/* ===== FOOTER ===== */
.site-footer { position: relative; z-index: 1; background: #050507; color: var(--muted); padding: 60px 0 26px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { max-width: 300px; font-size: .95rem; margin-bottom: 20px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials a:hover .ic { color: #0a0a0c; }
.socials .ic { width: 18px; height: 18px; color: var(--ink); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.footer-links h4 { color: var(--white); font-size: .95rem; margin-bottom: 14px; }
.footer-links a { display: block; font-size: .92rem; padding: 6px 0; transition: color .25s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; padding-top: 24px; font-size: .86rem; color: #6c6c76; }
.footer-made { color: var(--gold); font-weight: 600; letter-spacing: .04em; }

/* ===== REVEAL ANIMATION ===== */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== RESPONSIVE ===== */
@media (min-width: 560px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 860px) {
  .hero { padding: 90px 0 96px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 40px; }
  .nav-desktop { display: flex; }
  .header-actions .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-card.wide { grid-column: span 3; display: flex; align-items: center; gap: 22px; text-align: left; }
  .why-card.wide .ic { margin-bottom: 0; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
  .step-line { display: block; align-self: start; margin-top: 30px; width: 60px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: scale(1.04); }
  .price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 2fr; }
}
@media (min-width: 1024px) {
  .why-card.wide { grid-column: span 1; }
}
