/* ==========================================================
   Scandigenic — Main Stylesheet v1.0
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080D1A;
  --bg-2:      #0C1220;
  --bg-card:   #0F1629;
  --bg-card-2: #111827;
  --border:    rgba(255,255,255,.07);
  --border-hi: rgba(59,130,246,.35);
  --blue:      #3B82F6;
  --blue-dim:  rgba(59,130,246,.12);
  --blue-glow: rgba(59,130,246,.25);
  --cyan:      #06B6D4;
  --mint:      #10B981;
  --white:     #FFFFFF;
  --grey-100:  #F1F5F9;
  --grey-300:  #CBD5E1;
  --grey-400:  #94A3B8;
  --grey-500:  #64748B;
  --grey-600:  #475569;
  --r-sm: 6px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--grey-300);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; }

/* ── TYPOGRAPHY HELPERS ── */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dim); border: 1px solid var(--border-hi);
  color: var(--blue); padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.section-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); display: block; box-shadow: 0 0 8px var(--blue);
}
.section-title {
  font-size: clamp(30px,4vw,48px); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 18px;
  letter-spacing: -.5px;
}
.gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 17px; color: var(--grey-400); line-height: 1.75; max-width: 560px;
}
.section-header { margin-bottom: 72px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .2s ease; border: none; font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 8px 30px var(--blue-glow); }
.btn-ghost   { background: transparent; color: var(--grey-300); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  border-bottom: 1px solid var(--border);
  background: rgba(8,13,26,.88); backdrop-filter: blur(20px);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); }
.logo-text span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--grey-400); transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--grey-300); border-radius: 2px; display: block; transition: all .3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  padding: 20px 28px; z-index: 998; box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 500; color: var(--grey-300); transition: color .2s;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover, .cta-mobile { color: var(--blue) !important; font-weight: 700; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.1) 0%, transparent 65%);
  bottom: -100px; left: 5%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-dim); border: 1px solid var(--border-hi);
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
}
.hero-h1 {
  font-size: clamp(36px,5vw,62px); font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -.8px;
}
.hero-h1 .highlight {
  background: linear-gradient(90deg, #60a5fa 0%, #22d3ee 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-p { font-size: 17px; color: var(--grey-400); line-height: 1.75; margin-bottom: 44px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 28px; }
.hero-micro { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-micro-item { display: flex; align-items: center; gap: 10px; }
.hero-micro-item svg { width: 16px; height: 16px; stroke: var(--mint); flex-shrink: 0; }
.hero-micro-item span { font-size: 13px; color: var(--grey-400); font-weight: 500; }

/* Hero visual cards */
.hero-visual { position: relative; display: flex; flex-direction: column; gap: 14px; }
.hero-vis-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px 24px;
  transition: border-color .3s, transform .3s; position: relative; overflow: hidden;
}
.hero-vis-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--cyan) 100%);
}
.hero-vis-card:hover { border-color: var(--border-hi); transform: translateX(4px); }
.hvc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.hvc-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--blue-dim); border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
}
.hvc-icon svg { width: 18px; height: 18px; }
.hvc-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--mint); font-weight: 600;
}
.hvc-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 8px var(--mint); display: block;
  animation: pulse 2s infinite;
}
.hvc-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.hvc-val   { font-size: 12px; color: var(--grey-500); margin-bottom: 12px; }
.hvc-bar   { height: 4px; background: rgba(255,255,255,.06); border-radius: 4px; overflow: hidden; }
.hvc-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%); }
.hero-float-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--bg-card); border: 1px solid var(--border-hi);
  border-radius: var(--r-md); padding: 16px 20px;
}
.hfb-num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.hfb-num span { color: var(--blue); }
.hfb-lbl { font-size: 12px; color: var(--grey-500); margin-top: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 18px 0;
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--grey-500); }
.trust-item svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; }

/* ── VALUE PROPS ── */
#value { background: var(--bg); }
.vp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.vp-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px 36px;
  position: relative; overflow: hidden; transition: border-color .3s, transform .3s;
}
.vp-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0); transform-origin: center; transition: transform .4s;
}
.vp-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.vp-card:hover::after { transform: scaleX(1); }
.vp-num   { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--grey-600); text-transform: uppercase; margin-bottom: 20px; }
.vp-icon  { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--blue-dim); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.vp-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; }
.vp-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.vp-text  { font-size: 15px; color: var(--grey-400); line-height: 1.75; }

/* ── METHODOLOGY ── */
#methodology { background: var(--bg-2); }
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; }
.method-step { background: var(--bg-card); padding: 40px 32px; transition: background .3s; }
.method-step:hover { background: #131d35; }
.method-step-num { font-family: 'Space Grotesk',sans-serif; font-size: 48px; font-weight: 800; color: rgba(59,130,246,.12); line-height: 1; margin-bottom: 20px; letter-spacing: -2px; }
.method-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-dim); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.method-icon svg { width: 20px; height: 20px; }
.method-step-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.method-step-text  { font-size: 14px; color: var(--grey-500); line-height: 1.7; }
.method-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; padding: 4px 10px; border-radius: 4px; background: var(--blue-dim); font-size: 11px; color: var(--blue); font-weight: 600; }

/* ── AI AGENTS ── */
#ai-agents { background: var(--bg); }
.agents-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.agent-vis { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; position: relative; overflow: hidden; }
.agent-vis-glow { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(6,182,212,.08) 0%, transparent 65%); top: -100px; left: -100px; pointer-events: none; }
.av-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.av-title  { font-size: 13px; font-weight: 600; color: var(--grey-400); }
.av-live   { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--mint); font-weight: 600; }
.av-live::before { content:''; width:6px;height:6px;border-radius:50%;background:var(--mint);box-shadow:0 0 8px var(--mint);display:block;animation:pulse 2s infinite; }
.agent-item { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border-radius: 10px; margin-bottom: 8px; background: rgba(255,255,255,.03); border: 1px solid transparent; transition: all .3s; }
.agent-item:hover { background: rgba(59,130,246,.06); border-color: var(--border-hi); }
.agent-avatar { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; background: linear-gradient(135deg,var(--blue) 0%,var(--cyan) 100%); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.agent-name { font-size: 13px; font-weight: 600; color: var(--white); }
.agent-task { font-size: 12px; color: var(--grey-500); margin-top: 2px; }
.agent-stat { margin-left: auto; text-align: right; flex-shrink: 0; }
.agent-stat-num { font-size: 14px; font-weight: 700; color: var(--white); }
.agent-stat-lbl { font-size: 11px; color: var(--grey-600); }
.agent-progress { height: 3px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; margin-top: 16px; }
.agent-progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg,var(--cyan) 0%,var(--blue) 100%); animation: agentprog 3s ease-in-out infinite; }
@keyframes agentprog { 0%{width:30%} 50%{width:85%} 100%{width:30%} }

.agents-text .section-sub { margin-bottom: 32px; }
.agent-feature-list { display: flex; flex-direction: column; gap: 16px; }
.afl-item { display: flex; gap: 12px; align-items: flex-start; }
.afl-icon { flex-shrink: 0; margin-top: 3px; }
.afl-icon svg { width: 16px; height: 16px; stroke: var(--mint); fill: none; stroke-width: 2.5; }
.afl-text { font-size: 14px; color: var(--grey-400); line-height: 1.6; }
.afl-text strong { color: var(--white); }

/* ── WHY ── */
#why { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-item-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--blue-dim); border: 1px solid var(--border-hi); }
.why-item-icon svg { width: 22px; height: 22px; }
.why-item-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-item-text  { font-size: 14px; color: var(--grey-400); line-height: 1.7; }
.why-visual { position: relative; padding: 20px; }
.why-vis-main { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; position: relative; overflow: hidden; }
.why-vis-glow { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle,rgba(59,130,246,.12) 0%,transparent 70%); top: -80px; right: -80px; pointer-events: none; }
.wv-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-600); margin-bottom: 20px; }
.wv-metric { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.wv-metric:last-child { border: none; }
.wv-metric-name { font-size: 14px; color: var(--grey-400); }
.wv-metric-val  { font-size: 14px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 6px; }
.badge-up   { background: rgba(16,185,129,.12); color: var(--mint); padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.badge-down { background: rgba(239,68,68,.12);  color: #f87171;    padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.why-float { position: absolute; bottom: -10px; left: -20px; background: var(--bg-card); border: 1px solid var(--border-hi); border-radius: var(--r-md); padding: 18px 22px; box-shadow: 0 8px 40px rgba(0,0,0,.4); }
.wf-title { font-size: 12px; color: var(--grey-500); margin-bottom: 8px; font-weight: 500; }
.wf-row   { display: flex; gap: 12px; align-items: center; }
.wf-dot   { width: 10px; height: 10px; border-radius: 50%; }
.wf-lbl   { font-size: 12px; color: var(--grey-400); }

/* ── STATS ── */
#stats { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat-block { background: var(--bg-card-2); padding: 44px 36px; text-align: center; }
.stat-block-num { font-family: 'Space Grotesk',sans-serif; font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -1px; background: linear-gradient(180deg,#fff 0%,#93c5fd 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-block-unit { font-size: 28px; }
.stat-block-lbl  { font-size: 14px; color: var(--grey-500); margin-top: 10px; line-height: 1.5; }
.stat-block-tag  { margin-top: 12px; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--mint); font-weight: 600; }
.stat-block-tag svg { width: 12px; height: 12px; stroke: var(--mint); fill: none; stroke-width: 2.5; }
.iso-block { background: linear-gradient(135deg,rgba(59,130,246,.08) 0%,rgba(6,182,212,.05) 100%); }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-left { padding-top: 8px; }
.contact-perks { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.contact-perk { display: flex; gap: 14px; align-items: center; }
.contact-perk-icon { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; background: var(--blue-dim); border: 1px solid var(--border-hi); display: flex; align-items: center; justify-content: center; }
.contact-perk-icon svg { width: 17px; height: 17px; }
.contact-perk-text { font-size: 14px; color: var(--grey-400); }
.contact-perk-text strong { color: var(--white); display: block; font-size: 14px; margin-bottom: 2px; }
.form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 48px 44px; }
.form-wrap-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.form-wrap-sub   { font-size: 14px; color: var(--grey-500); margin-bottom: 36px; }

/* ── FOOTER ── */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--grey-500); line-height: 1.7; margin-top: 16px; max-width: 240px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey-300); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--grey-500); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-left { font-size: 13px; color: var(--grey-600); }
.footer-location { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--grey-600); }
.footer-location svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--blue-glow);
  opacity: 0; transform: translateY(20px); transition: all .3s;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--blue-glow); }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-up { opacity: 0; animation: fadeUp .6s ease forwards; }
.d1{animation-delay:.1s} .d2{animation-delay:.2s} .d3{animation-delay:.3s} .d4{animation-delay:.4s}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .vp-grid       { grid-template-columns: 1fr; }
  .method-grid   { grid-template-columns: repeat(2,1fr); }
  .agents-grid   { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .contact-wrap  { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section       { padding: 72px 0; }
  nav .nav-links,
  nav .nav-right { display: none; }
  .hamburger     { display: flex; }
  .stats-grid    { grid-template-columns: 1fr; }
  .method-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-wrap     { padding: 32px 24px; }
}
