/* ===========================================================
   GF Automations - shared styles
   Pitch-black + brushed-steel + logo green (#41A34E)
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0b0d;
  --bg-2:      #101216;
  --bg-3:      #15181c;
  --ink:       #f4f6f7;
  --steel:     #c9d1d7;
  --body:      #a7b0b6;
  --muted:     #7b848b;
  --faint:     #565d63;
  --line:      rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.18);

  /* Brand accent, sampled from the GFA logo */
  --accent: #41a34e;
  --accent-bright: #57c069;
  --accent-ink: #06130a;
  --accent-soft: rgba(65,163,78,0.14);

  --font-display: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

/* ── Topographic background (WebGL canvas) ── */
#topo { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; display: block; }
.topo-fallback { position: fixed; inset: 0; z-index: -3; background:
  radial-gradient(120% 90% at 50% 0%, rgba(65,163,78,0.05), transparent 60%), var(--bg); }
.veil { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(125% 85% at 50% 45%, transparent 58%, rgba(10,11,13,0.42) 100%); }

/* ── Grain ── */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ── Type primitives ── */
.display {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 0.98; color: var(--ink); text-wrap: balance;
}
.overline {
  font-family: var(--font-display); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent);
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--body); line-height: 1.62; max-width: 60ch; text-wrap: pretty; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.94rem;
  padding: 15px 26px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-bright); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:active { transform: translateY(0) scale(0.985); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--accent-soft); }
.btn-ghost:active { transform: translateY(0) scale(0.985); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px; display: flex; align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
nav.scrolled { background: rgba(10,11,13,0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 32px; width: auto; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.brand-name span { color: var(--muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active { position: relative; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.86rem; }
.nav-toggle { display: none; width: 40px; height: 40px; background: transparent; border: 1px solid var(--line); border-radius: 2px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-menu { display: none; }

/* ── HERO (home) ── */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(10,11,13,0.88) 0%, rgba(10,11,13,0.55) 38%, rgba(10,11,13,0.12) 72%, rgba(10,11,13,0.28) 100%),
    linear-gradient(0deg, rgba(10,11,13,0.82) 0%, transparent 46%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.hero-content { max-width: 720px; padding-top: 90px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.7rem); margin-bottom: 16px; }
.hero h1 .em { color: var(--accent); }
.hero-tagline { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(0.85rem, 1.3vw, 1.02rem); color: var(--steel); margin-bottom: 30px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--body); line-height: 1.6; max-width: 54ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-foot { position: absolute; bottom: 30px; left: 0; right: 0; z-index: 2; display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.66rem; color: var(--faint); }
.hero-foot .ln { flex: 1; height: 1px; background: var(--line-soft); }

/* ── PAGE HEADER (interior pages) ── */
.page-header { position: relative; padding: 168px 0 72px; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(10,11,13,0.95), rgba(10,11,13,0.35) 70%, rgba(10,11,13,0.5)); }
.page-header .wrap { position: relative; z-index: 1; }
.page-header .overline { display: block; margin-bottom: 18px; }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 22px; max-width: 16ch; }
.page-header p { color: var(--body); max-width: 56ch; font-size: 1.05rem; }

/* ── SECTION SCAFFOLD ── */
section { position: relative; }
.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; z-index: 1; }
.section.solid { background: rgba(10,11,13,0.90); }
.section.solid-2 { background: rgba(16,18,22,0.92); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .overline { display: block; margin-bottom: 20px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin-bottom: 22px; }
.section-head p { color: var(--body); }
.divider { height: 1px; background: var(--line-soft); }

/* ── WHAT-WE-BUILD TEASER (home) ── */
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.teaser { background: var(--bg); padding: 32px 30px; transition: background 0.3s var(--ease); }
.teaser:hover { background: var(--bg-2); }
.teaser-n { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 14px; }
.teaser h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.28rem; color: var(--ink); margin-bottom: 10px; line-height: 1.05; }
.teaser p { font-size: 0.92rem; color: var(--muted); }
.teaser-cta { margin-top: 44px; display: flex; justify-content: center; }

/* ── SERVICES ROWS ── */
.svc-list { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 90px 1.1fr 1.4fr; gap: 36px; align-items: start; padding: 40px 0; border-bottom: 1px solid var(--line); transition: background 0.4s var(--ease); }
.svc-row:hover { background: linear-gradient(90deg, rgba(255,255,255,0.025), transparent 70%); }
.svc-idx { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--faint); padding-top: 6px; letter-spacing: 0.05em; }
.svc-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.3rem, 2.1vw, 1.75rem); color: var(--ink); line-height: 1.05; }
.svc-body p { color: var(--body); margin-bottom: 16px; }
.svc-meta { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.tag { font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); border: 1px solid var(--line); padding: 6px 11px; }
.tag.out { color: var(--ink); border-color: var(--line-strong); }

/* ── FLAGSHIP ── */
.flag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.flag-copy .overline { display: block; margin-bottom: 18px; }
.flag-copy h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 22px; }
.flag-copy > p { max-width: 52ch; margin-bottom: 30px; }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.cap { background: rgba(16,18,22,0.7); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.cap svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.cap span { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.escalate { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); background: rgba(16,18,22,0.7); }
.escalate svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.escalate p { font-size: 0.96rem; color: var(--body); margin: 0; }
.escalate strong { color: var(--ink); font-weight: 600; }

/* ── IMPACT (data) ── */
.impact-row { display: grid; grid-template-columns: 0.85fr 2.15fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); }
.impact-list .impact-row:first-child { border-top: 1px solid var(--line); }
.impact-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.25rem, 2vw, 1.65rem); color: var(--ink); line-height: 1.05; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.impact-stat { background: rgba(16,18,22,0.72); padding: 22px 20px; }
.impact-stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.3vw, 2.1rem); color: var(--accent); line-height: 1; }
.impact-stat .l { font-size: 0.8rem; color: var(--body); margin-top: 9px; line-height: 1.42; }
.impact-note { margin-top: 30px; font-size: 0.84rem; color: var(--muted); max-width: 76ch; }
@media (max-width: 960px) { .impact-row { grid-template-columns: 1fr; gap: 20px; padding: 30px 0; } }
@media (max-width: 720px) { .impact-stats { grid-template-columns: 1fr; } }

/* ── PROCESS ── */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.proc { padding: 40px 28px 44px 28px; border-right: 1px solid var(--line); }
.proc:first-child { padding-left: 0; }
.proc:last-child { border-right: none; }
.proc-n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--faint); line-height: 1; margin-bottom: 22px; }
.proc h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.25rem; color: var(--ink); margin-bottom: 12px; }
.proc p { font-size: 0.92rem; color: var(--muted); }

/* ── PRICING ── */
.price-panel { border: 1px solid var(--line); background: rgba(16,18,22,0.75); padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.price-left .overline { display: block; margin-bottom: 16px; }
.price-left h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--ink); margin-bottom: 14px; line-height: 1.04; }
.price-left p { color: var(--body); max-width: 42ch; margin-bottom: 8px; }
.price-note { font-size: 0.84rem; color: var(--muted); }
.price-figure { border-left: 1px solid var(--line); padding-left: clamp(28px, 4vw, 56px); }
.price-figure .from { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--accent); margin-bottom: 10px; }
.price-amt { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.price-amt .unit { color: var(--muted); font-size: 0.42em; font-weight: 600; }
.price-plus { color: var(--faint); margin: 8px 0; font-family: var(--font-display); font-weight: 600; }
.price-incl { list-style: none; margin: 26px 0 30px; }
.price-incl li { display: flex; gap: 11px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem; color: var(--body); }
.price-incl li:last-child { border-bottom: none; }
.price-incl svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
/* Pricing carousel */
.pricing-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.pricing-tab { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; color: var(--muted); background: transparent; border: 1px solid var(--line); padding: 11px 16px; border-radius: 2px; cursor: pointer; transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); }
.pricing-tab:hover { color: var(--ink); border-color: var(--line-strong); }
.pricing-tab.active { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.pricing-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.pricing-track-wrap { overflow: hidden; }
.pricing-track { display: flex; transition: transform 0.6s var(--ease); will-change: transform; }
.pricing-track > .price-panel { flex: 0 0 100%; }
.pricing-dots { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.pricing-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; padding: 0; cursor: pointer; transition: background 0.25s, border-color 0.25s; }
.pricing-dot.active { background: var(--accent); border-color: var(--accent); }
.pricing-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 720px) { .pricing-tab { font-size: 0.72rem; padding: 9px 12px; } }

/* ── CREDENTIAL STRIP / ABOUT ── */
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-soft); background: rgba(16,18,22,0.7); }
.cred { padding: 30px 28px; border-left: 1px solid var(--line-soft); }
.cred:first-child { border-left: none; }
.cred-k { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); font-size: 1.04rem; }
.cred-v { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-copy p { margin-bottom: 20px; max-width: 58ch; }
.about-copy p.lead-em { color: var(--steel); }
.about-side { border: 1px solid var(--line); background: rgba(16,18,22,0.7); padding: 32px; }
.about-side h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); font-size: 1.2rem; margin-bottom: 20px; }
.about-side ul { list-style: none; }
.about-side li { display: flex; gap: 12px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.about-side li:last-child { border-bottom: none; }
.about-side li b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--accent); font-size: 0.82rem; letter-spacing: 0.06em; min-width: 92px; }
.about-side li span { font-size: 0.9rem; color: var(--body); }
.vet-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 8px 0; }
.vet-emblem { width: min(100%, 340px); height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55)); }
.vet-text { margin-top: 6px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.12; }
.vet-text span { display: block; color: var(--steel); font-weight: 600; letter-spacing: 0.2em; font-size: 0.72em; margin-top: 6px; }
.note-panel { border: 1px dashed var(--line-strong); background: rgba(16,18,22,0.5); padding: 24px 26px; }
.note-panel .overline { display: block; margin-bottom: 10px; }
.note-panel p { color: var(--muted); font-size: 0.95rem; }

/* ── CONTACT / ROADMAP FORM ── */
.form-shell { max-width: 680px; margin: 0 auto; border: 1px solid var(--line); background: rgba(16,18,22,0.85); backdrop-filter: blur(8px); }
.form-pad { padding: clamp(28px, 4vw, 48px); }
.steps { display: flex; align-items: center; margin-bottom: 44px; }
.step-node { display: flex; align-items: center; gap: 12px; }
.step-dot { width: 34px; height: 34px; border: 1px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; color: var(--muted); transition: all 0.3s var(--ease); flex-shrink: 0; }
.step-node.active .step-dot { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.step-node.done .step-dot { border-color: var(--accent); color: var(--accent); }
.step-name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--muted); transition: color 0.3s; }
.step-node.active .step-name { color: var(--ink); }
.step-link { flex: 1; height: 1px; background: var(--line); margin: 0 16px; }
.step-link.done { background: var(--accent); }
.form-step { display: none; }
.form-step.active { display: block; animation: fade 0.4s var(--ease) both; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-heading { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.step-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--muted); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--bg-3); border: 1px solid var(--line); border-radius: 2px; padding: 13px 14px; width: 100%; transition: border-color 0.25s, background 0.25s; appearance: none; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #181b20; }
.field select option { background: #15181c; color: var(--ink); }
.field input:-webkit-autofill, .field select:-webkit-autofill, .field textarea:-webkit-autofill { -webkit-text-fill-color: var(--ink) !important; -webkit-box-shadow: 0 0 0 1000px #15181c inset !important; caret-color: var(--ink); transition: background-color 99999s ease 0s; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.btn-back { background: transparent; border: 1px solid var(--line); color: var(--muted); padding: 13px 22px; border-radius: 2px; font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; cursor: pointer; transition: border-color 0.25s, color 0.25s; }
.btn-back:hover { border-color: var(--line-strong); color: var(--ink); }
.btn-back:focus-visible, .field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.loading { text-align: center; padding: 56px 0; }
.spinner { width: 38px; height: 38px; border: 2px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 22px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading strong { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.loading p { color: var(--muted); font-size: 0.9rem; }
#result { display: none; text-align: center; padding: 36px 0; }
#result .chk { width: 52px; height: 52px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: var(--accent-soft); }
#result .chk svg { width: 24px; height: 24px; color: var(--accent); }
#result h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
#result p { color: var(--body); max-width: 46ch; margin: 0 auto; }

/* ── CTA BAND ── */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-band p { color: var(--body); max-width: 50ch; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line-soft); background: rgba(10,11,13,0.78); padding: 56px 0 40px; position: relative; z-index: 1; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 44px; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-size: 0.9rem; color: var(--muted); }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--faint); margin-bottom: 16px; }
.foot-col a, .foot-col span { display: block; font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; transition: color 0.25s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { border-top: 1px solid var(--line-soft); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { font-size: 0.8rem; color: var(--faint); }

/* ── Reveal motion (gated behind JS) ── */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .flag-grid, .price-panel, .about-grid { grid-template-columns: 1fr; }
  .price-figure { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .proc { border-bottom: 1px solid var(--line); padding-left: 24px; }
  .proc:first-child { padding-left: 24px; }
  .proc:nth-child(2) { border-right: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  body.menu-open .nav-menu { display: flex; }
  .nav-menu { position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(10,11,13,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); z-index: 99; padding: 12px 0 18px; }
  .nav-menu a { padding: 16px 32px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); border-bottom: 1px solid var(--line-soft); }
  .nav-menu a.cta { color: var(--accent); }
  .teaser-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .wrap, .nav-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .hero::before { background: linear-gradient(0deg, rgba(10,11,13,0.93) 8%, rgba(10,11,13,0.5) 54%, rgba(10,11,13,0.64) 100%); }
  .hero-content { padding-top: 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-foot { display: none; }
  .page-header { padding: 130px 0 56px; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .svc-idx { padding-top: 0; }
  .cap-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc, .proc:first-child { border-right: none; padding: 28px 0; padding-left: 0; }
  .creds-grid { grid-template-columns: 1fr; }
  .cred { border-left: none; border-top: 1px solid var(--line-soft); }
  .cred:first-child { border-top: none; }
  .grid2 { grid-template-columns: 1fr; }
  .step-name { display: none; }
  .step-link { margin: 0 10px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn, .btn-back { width: 100%; }
  .foot-cols { gap: 36px; }
  .cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
