/* ============================================================
   SDJus — Landing Page
   Design system: Indigo SaaS, Inter, light theme
   ============================================================ */

:root {
  /* Brand — Indigo */
  --brand-50:  #eef2ff;
  --brand-100: #e0e7ff;
  --brand-200: #c7d2fe;
  --brand-300: #a5b4fc;
  --brand-400: #818cf8;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --brand-800: #3730a3;
  --brand-900: #312e81;
  --brand-950: #1e1b4b;

  /* Neutrals — Slate */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Semantic */
  --emerald: #059669;
  --emerald-50: #ecfdf5;
  --amber: #d97706;
  --amber-50: #fffbeb;
  --rose: #e11d48;
  --rose-50: #fff1f2;
  --sky: #0284c7;
  --sky-50: #f0f9ff;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-card: 0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-pop:  0 10px 30px rgba(15,23,42,.12);
  --shadow-hero: 0 30px 60px -15px rgba(30,27,75,.30), 0 18px 36px -18px rgba(79,70,229,.25);
  --shadow-float: 0 12px 28px rgba(30,27,75,.16);

  /* Radii */
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl: 24px;

  --maxw: 1200px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--slate-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: 0 6px 16px rgba(79,70,229,.28); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(79,70,229,.34); }
.btn-secondary { background: #fff; color: var(--slate-800); border-color: var(--slate-200); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { border-color: var(--slate-300); transform: translateY(-1px); }
.btn-wa { background: #1fa855; color: #fff; box-shadow: 0 6px 16px rgba(31,168,85,.26); }
.btn-wa:hover { background: #17924a; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(31,168,85,.32); }
.btn-ghost { background: transparent; color: var(--slate-700); }
.btn-ghost:hover { background: var(--slate-100); }
.btn-lg { font-size: 16px; padding: 15px 26px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Brand mark ---------- */
.brandmark { display: inline-flex; align-items: center; gap: 11px; }
.brandmark .sq {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(150deg, var(--brand-500), var(--brand-700));
  color: #fff; font-weight: 800; font-size: 15px; letter-spacing: -0.03em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(79,70,229,.3);
}
.brandmark .sq svg { width: 23px; height: 23px; }
.brandmark .nm { font-weight: 800; font-size: 19px; letter-spacing: -0.03em; color: var(--slate-900); }
.brandmark .nm span { color: var(--brand-600); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { background: rgba(255,255,255,.88); border-bottom-color: var(--slate-200); box-shadow: var(--shadow-soft); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--slate-600); padding: 9px 14px; border-radius: 999px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--slate-800); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: #fff; padding: 24px;
  display: none; flex-direction: column; gap: 6px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-size: 18px; font-weight: 600; padding: 14px 8px; border-bottom: 1px solid var(--slate-100); color: var(--slate-800); }
.mobile-menu .btn { margin-top: 10px; }

/* ---------- Section base ---------- */
section { position: relative; }
.section-pad { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: 16px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-500); }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); color: var(--slate-900); }
.section-head p.lede { margin-top: 18px; font-size: 18px; color: var(--slate-500); line-height: 1.6; }

/* ---------- Hero ---------- */
.hero { padding: calc(var(--nav-h) + 64px) 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; top: -340px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 760px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(99,102,241,.16), rgba(99,102,241,0) 62%);
}
.hero-bg::after {
  content: ''; position: absolute; top: -60px; right: -180px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(165,180,252,.22), rgba(165,180,252,0) 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(var(--slate-200) 1px, transparent 1px), linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .35;
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 35%, transparent 78%);
}
.hero-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--slate-200); box-shadow: var(--shadow-soft);
  padding: 7px 8px 7px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--slate-600);
  margin-bottom: 26px;
}
.hero-badge .tag { background: var(--brand-50); color: var(--brand-700); font-weight: 700; font-size: 12px; padding: 3px 9px; border-radius: 999px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); letter-spacing: -0.035em; color: var(--slate-900); }
.hero h1 .grad { background: linear-gradient(110deg, var(--brand-600), var(--brand-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { margin: 24px auto 0; max-width: 600px; font-size: 19px; color: var(--slate-500); line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 26px; color: var(--slate-500); font-size: 14px; }
.hero-trust .pt { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .pt svg { width: 17px; height: 17px; color: var(--emerald); }

/* Hero product shot */
.hero-shot { margin-top: 64px; position: relative; }
.hero-shot .browser { transform: perspective(1800px) rotateX(2deg); }
.float-card {
  position: absolute; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--r-lg); box-shadow: var(--shadow-float); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px; z-index: 3;
}
.float-card .ico { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .ico svg { width: 20px; height: 20px; }
.float-card .ft-label { font-size: 11px; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.float-card .ft-value { font-size: 16px; font-weight: 700; color: var(--slate-900); }
.fc-1 { top: 64px; left: -14px; animation: floaty 6s ease-in-out infinite; }
.fc-2 { bottom: 54px; right: -10px; animation: floaty 7s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Browser frame ---------- */
.browser {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-xl);
  box-shadow: var(--shadow-hero); overflow: hidden;
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--slate-50); border-bottom: 1px solid var(--slate-200); }
.browser-bar .dots { display: flex; gap: 7px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 999px; display: block; }
.browser-bar .dots i:nth-child(1) { background: #ff5f57; }
.browser-bar .dots i:nth-child(2) { background: #febc2e; }
.browser-bar .dots i:nth-child(3) { background: #28c840; }
.browser-bar .url {
  margin-left: 10px; flex: 1; max-width: 360px; background: #fff; border: 1px solid var(--slate-200);
  border-radius: 999px; padding: 5px 14px; font-size: 12.5px; color: var(--slate-400);
  display: flex; align-items: center; gap: 7px;
}
.browser-bar .url svg { width: 12px; height: 12px; }
.browser img { width: 100%; display: block; }

/* ---------- Trust / value strip ---------- */
.valuestrip { border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); background: var(--slate-50); }
.valuestrip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 24px; }
.value-item { text-align: center; }
.value-item .vi-ico { width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 13px; background: #fff; border: 1px solid var(--slate-200); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
.value-item .vi-ico svg { width: 22px; height: 22px; color: var(--brand-600); }
.value-item .vi-title { font-weight: 700; font-size: 16px; color: var(--slate-900); }
.value-item .vi-sub { font-size: 13.5px; color: var(--slate-500); margin-top: 3px; }

/* ---------- Features grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.feature-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-xl);
  padding: 26px; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--brand-200); }
.feature-card .fc-ico { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-50); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-card .fc-ico svg { width: 24px; height: 24px; color: var(--brand-600); }
.feature-card h3 { font-size: 18px; color: var(--slate-900); }
.feature-card p { margin-top: 9px; font-size: 14.5px; color: var(--slate-500); line-height: 1.6; }

/* ---------- Alternating feature highlights ---------- */
.highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.highlight + .highlight { margin-top: 110px; }
.highlight.flip .hl-media { order: 2; }
.hl-body .pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--brand-700); background: var(--brand-50); padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
.hl-body .pill svg { width: 15px; height: 15px; }
.hl-body h3 { font-size: clamp(26px, 3.2vw, 34px); color: var(--slate-900); }
.hl-body p.hl-lede { margin-top: 16px; font-size: 17px; color: var(--slate-500); line-height: 1.65; }
.hl-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.hl-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--slate-700); }
.hl-list li .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px; background: var(--brand-50); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.hl-list li .ck svg { width: 14px; height: 14px; color: var(--brand-600); }
.hl-list li b { color: var(--slate-900); font-weight: 600; }
.hl-media { position: relative; }
.hl-media .browser { transform: rotate(0); }

/* tinted section */
.tinted { background: linear-gradient(180deg, var(--slate-50), #fff); }
.dark-band { background: var(--brand-950); color: #fff; }

/* ---------- Differentiator (automation) feature band ---------- */
.auto-band { background: radial-gradient(120% 120% at 50% 0%, var(--brand-900), var(--brand-950)); color: #fff; overflow: hidden; }
.auto-band .section-head h2 { color: #fff; }
.auto-band .section-head p.lede { color: var(--brand-200); }
.auto-band .eyebrow { color: var(--brand-300); }
.auto-band .eyebrow .dot { background: var(--brand-300); }
.auto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.auto-card { background: rgba(255,255,255,.04); border: 1px solid rgba(165,180,252,.16); border-radius: var(--r-xl); padding: 28px; backdrop-filter: blur(4px); transition: background .2s, border-color .2s, transform .2s; }
.auto-card:hover { background: rgba(255,255,255,.07); border-color: rgba(165,180,252,.32); transform: translateY(-3px); }
.auto-card .ac-ico { width: 48px; height: 48px; border-radius: 14px; background: rgba(99,102,241,.22); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.auto-card .ac-ico svg { width: 24px; height: 24px; color: var(--brand-300); }
.auto-card h3 { font-size: 19px; color: #fff; }
.auto-card p { margin-top: 10px; font-size: 14.5px; color: var(--brand-200); line-height: 1.6; }

/* ---------- Drive integration ---------- */
.drive-flow { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 44px; flex-wrap: wrap; }
.drive-node { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 22px 26px; text-align: center; min-width: 180px; }
.drive-node .dn-ico { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.drive-node .dn-ico svg { width: 26px; height: 26px; }
.drive-node h4 { font-size: 16px; color: var(--slate-900); }
.drive-node p { font-size: 13px; color: var(--slate-500); margin-top: 4px; }
.drive-arrow { color: var(--slate-300); flex-shrink: 0; }
.drive-arrow svg { width: 30px; height: 30px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-2xl);
  padding: 32px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.price-card.featured { border-color: var(--brand-600); box-shadow: var(--shadow-hero); transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-tag-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-600); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .03em;
  padding: 6px 16px; border-radius: 999px; box-shadow: 0 6px 14px rgba(79,70,229,.3);
}
.price-card .pc-name { font-size: 15px; font-weight: 700; color: var(--brand-600); text-transform: uppercase; letter-spacing: .05em; }
.price-card .pc-desc { font-size: 14px; color: var(--slate-500); margin-top: 6px; min-height: 40px; }
.price-card .pc-price { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price-card .pc-price .cur { font-size: 20px; font-weight: 700; color: var(--slate-700); }
.price-card .pc-price .val { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; color: var(--slate-900); }
.price-card .pc-price .per { font-size: 15px; color: var(--slate-400); font-weight: 500; }
.price-card .pc-note { font-size: 13px; color: var(--slate-400); margin-bottom: 24px; }
.price-card .pc-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-card .pc-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--slate-700); }
.price-card .pc-list li svg { width: 18px; height: 18px; color: var(--emerald); flex-shrink: 0; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 4px; text-align: left; font-size: 17.5px; font-weight: 600; color: var(--slate-900); }
.faq-q .chev { flex-shrink: 0; color: var(--slate-400); transition: transform .25s ease; }
.faq-q .chev svg { width: 22px; height: 22px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--brand-600); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .faq-a-inner { padding: 0 4px 24px; font-size: 15.5px; color: var(--slate-500); line-height: 1.65; max-width: 680px; }

/* ---------- Final CTA ---------- */
.cta-final { padding: 90px 0; }
.cta-box {
  background: radial-gradient(130% 130% at 50% 0%, var(--brand-700), var(--brand-950));
  border-radius: var(--r-2xl); padding: 72px 48px; text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-hero);
}
.cta-box::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(165,180,252,.25), transparent 65%); }
.cta-box h2 { font-size: clamp(30px, 4.5vw, 46px); position: relative; }
.cta-box p { margin: 18px auto 0; max-width: 540px; font-size: 18px; color: var(--brand-200); position: relative; }
.cta-box .hero-actions { margin-top: 34px; position: relative; }
.cta-box .btn-secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; box-shadow: none; }
.cta-box .btn-secondary:hover { background: rgba(255,255,255,.18); }

/* ---------- Footer ---------- */
.footer { background: var(--slate-950); color: var(--slate-400); padding: 72px 0 40px; }
.footer .brandmark .nm { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-about p { margin-top: 18px; font-size: 14.5px; line-height: 1.65; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social a:hover { background: var(--brand-600); }
.footer-social a svg { width: 18px; height: 18px; color: var(--slate-300); }
.footer-social a:hover svg { color: #fff; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; color: var(--slate-400); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-addr { font-size: 13.5px; color: var(--slate-500); margin: 10px 0 0; line-height: 1.55; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; font-size: 13.5px; flex-wrap: wrap; }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 999px; background: #1fa855;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(31,168,85,.4); transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fc-1, .fc-2 { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .auto-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .highlight { grid-template-columns: 1fr; gap: 36px; }
  .highlight.flip .hl-media { order: 0; }
  .highlight + .highlight { margin-top: 72px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
  .valuestrip .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 600px) {
  .section-pad { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero p.sub { font-size: 17px; }
  .float-card { display: none; }
  .drive-arrow { transform: rotate(90deg); }
  .cta-box { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
