/* =============================================================================
   CipherHunt — main stylesheet.
   Ported from the approved design sample, with the starter-kit quality bar
   applied: WCAG-AA contrast (low-opacity white text lifted; --cyber-dim
   darkened to #137763 for text on light backgrounds), visible focus, skip
   link, reduced-motion support, accessible mobile nav, form + cookie banner.
   ============================================================================= */

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

:root {
  --navy: #0D1B2A;
  --navy-mid: #162436;
  --navy-light: #1E3248;
  --steel: #1B4F7A;
  --steel-light: #2563A8;
  --cyber: #2DD4BF;
  --cyber-dim: #137763;      /* darkened from #178577 for AA on off-white */
  --gold: #C8892A;
  --gold-light: #E5A93C;
  --white: #FFFFFF;
  --off-white: #F4F2EE;
  --grey-100: #E8E6E1;
  --grey-400: #9A9690;
  --grey-600: #5C5954;
  --text-primary: #0D1B2A;
  --text-muted: #5C5954;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--text-primary); overflow-x: hidden; }
img, svg { max-width: 100%; }

/* ── ACCESSIBILITY HELPERS ── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 300;
  background: var(--cyber); color: var(--navy); padding: 10px 18px;
  font-family: var(--font-condensed); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 3px solid var(--cyber); outline-offset: 2px; }
nav :focus-visible, footer :focus-visible, .dark-focus :focus-visible { outline-color: var(--cyber); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important; scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* honeypot — off-screen, NOT display:none (bots skip display:none) */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── NAV ── */
nav.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: rgba(13,27,42,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  font-family: var(--font-condensed); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; gap: 0.55rem;
}
.nav-logo .glyph { color: var(--cyber); }
.nav-logo .parent { font-family: var(--font-condensed); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); text-transform: uppercase; line-height: 1.1; border-left: 1px solid rgba(255,255,255,0.18); padding-left: 0.55rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-condensed); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72);
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; min-height: 44px;
}
.nav-links a:hover { color: var(--cyber); }
.nav-cta {
  font-family: var(--font-condensed); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.55rem 1.4rem;
  background: var(--cyber); color: var(--navy); border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: #3eede0; }

/* mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); font-family: var(--font-condensed); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1rem; cursor: pointer; min-height: 44px;
}
.nav-toggle:hover { border-color: var(--cyber); color: var(--cyber); }

/* ── HERO ── */
.hero {
  min-height: 90vh; display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 0 4rem; position: relative; overflow: hidden; background: var(--navy);
}
/* shared centered column so hero copy left-aligns with every section below,
   at any viewport width (it previously pinned to the viewport edge) */
.hero-inner { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 4rem; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 35%, rgba(45,212,191,0.12) 0%, transparent 62%),
    radial-gradient(ellipse 70% 60% at 20% 80%, rgba(27,79,122,0.25) 0%, transparent 60%),
    linear-gradient(170deg, #0D1B2A 0%, #0D1B2A 60%, #0B2230 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(45,212,191,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,191,0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 40%, black 30%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; }
.hero-eyebrow {
  font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyber);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--cyber); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.6vw, 5.2rem); font-weight: 400;
  line-height: 1.04; letter-spacing: 0.01em; color: var(--white); margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--cyber); }
.hero-subtitle {
  font-family: var(--font-body); font-size: clamp(1.05rem, 1.6vw, 1.28rem); font-weight: 300;
  line-height: 1.65; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 700px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-primary {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem;
  background: var(--cyber); color: var(--navy); border: none; cursor: pointer;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: #3eede0; transform: translateY(-1px); }
.btn-outline {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem;
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.45);
  cursor: pointer; text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--cyber); color: var(--cyber); }

.hero-trust {
  display: flex; gap: 0; flex-wrap: wrap; position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; list-style: none;
}
.trust-item { padding-right: 3rem; margin-right: 3rem; border-right: 1px solid rgba(255,255,255,0.1); }
.trust-item:last-child { border-right: none; }
.trust-label {
  font-family: var(--font-condensed); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.58); margin-bottom: 0.4rem;
}
.trust-value { font-family: var(--font-condensed); font-size: 0.95rem; font-weight: 600; color: var(--white); }
.trust-value .c { color: var(--cyber); }

/* ── CLIENT BAR ── */
.client-bar { background: var(--navy-mid); padding: 1.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.client-bar-inner { max-width: 1240px; margin: 0 auto; padding: 0 4rem; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.client-bar-label { font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.client-bar-items { display: flex; gap: 2rem; flex-wrap: wrap; list-style: none; }
.client-bar-item { font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.78); display: flex; align-items: center; gap: 0.6rem; }
.client-bar-item::before { content: ''; width: 6px; height: 6px; background: var(--cyber); transform: rotate(45deg); flex-shrink: 0; }

/* ── SECTION BASE ── */
section { position: relative; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 4rem; }
.tag-eyebrow {
  font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyber-dim);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.tag-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--cyber-dim); }
.tag-eyebrow.light { color: var(--cyber); }
.tag-eyebrow.light::before { background: var(--cyber); }
.section-heading {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400;
  line-height: 1; letter-spacing: 0.01em; color: var(--navy);
}
.section-heading.light { color: var(--white); }
.section-body { font-family: var(--font-body); font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--text-muted); max-width: 640px; }

/* ── CAPABILITY INTRO ── */
.intro-section { padding: 7rem 0; background: var(--off-white); }
.intro-lead {
  font-family: var(--font-body); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 300;
  line-height: 1.55; color: var(--navy); max-width: 900px; margin-top: 2.5rem;
}
.intro-lead strong { font-weight: 500; }
.intro-lead .hl { color: var(--cyber-dim); font-weight: 500; }

/* ── SERVICES (B2B) ── */
.services-section { padding: 7rem 0; background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-100); margin-top: 3.5rem; border: 1px solid var(--grey-100); }
/* inline-icon card: icon + heading share row 1; body stretches; tag pins to bottom
   so the "FOR ..." lines align across each row regardless of body length */
.svc-card {
  background: var(--white); padding: 2.4rem; position: relative; overflow: hidden;
  transition: background 0.2s;
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr auto;
  column-gap: 14px; align-items: center;
}
.svc-card:hover { background: #FBFAF8; }
.svc-icon { grid-column: 1; grid-row: 1; width: 30px; height: 30px; stroke: var(--steel); fill: none; stroke-width: 1.5; }
.svc-title { grid-column: 2; grid-row: 1; font-family: var(--font-condensed); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); line-height: 1.15; }
.svc-body { grid-column: 1 / -1; align-self: start; margin-top: 0.9rem; font-size: 0.95rem; font-weight: 300; line-height: 1.65; color: var(--text-muted); }
.svc-for { grid-column: 1 / -1; align-self: end; font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyber-dim); padding-top: 1rem; }

/* ── METHOD ── */
.method-section { padding: 7rem 0; background: var(--navy); color: var(--white); overflow: hidden; }
.method-section .section-heading { color: var(--white); }
.method-intro { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.68); max-width: 660px; margin-top: 1rem; }
.method-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 3.5rem; border: 1px solid rgba(255,255,255,0.1); }
.method-step { padding: 2rem 1.4rem; border-right: 1px solid rgba(255,255,255,0.1); position: relative; }
.method-step:last-child { border-right: none; }
.method-step-n { font-family: var(--font-mono); font-size: 0.72rem; color: var(--cyber); letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.method-step-title { font-family: var(--font-condensed); font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem; }
.method-step-body { font-size: 0.8rem; font-weight: 300; line-height: 1.55; color: rgba(255,255,255,0.65); }

/* ── WHY ── */
.why-section { padding: 7rem 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; }
.why-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--cyber-dim); margin-bottom: 1rem; line-height: 1; }
.why-title { font-family: var(--font-condensed); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.why-body { font-size: 0.85rem; font-weight: 300; line-height: 1.65; color: var(--text-muted); }

/* ── BACKED BY ── */
.backed-section { padding: 6rem 0; background: var(--white); }
.backed-card { border: 1px solid var(--grey-100); border-left: 3px solid var(--cyber); padding: 3rem; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.backed-card h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--navy); line-height: 1; margin-bottom: 1rem; }
.backed-card p { font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: var(--text-muted); margin-bottom: 0.8rem; }
.backed-badges { display: flex; flex-direction: column; gap: 0.8rem; list-style: none; }
.backed-facts-label { font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyber-dim); padding-bottom: 0.2rem; }
.backed-badge { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-condensed); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em; color: var(--navy); padding: 0.9rem 1.2rem; background: var(--off-white); border: 1px solid var(--grey-100); }
.backed-badge .dot { width: 8px; height: 8px; background: var(--cyber); flex-shrink: 0; transform: rotate(45deg); }
.backed-badge strong { font-weight: 700; }
.backed-badge a { color: var(--cyber-dim); text-decoration: underline; text-underline-offset: 2px; }
.backed-badge a:hover { color: var(--navy); }

/* ── VICTIM / RECOVERY TRACK ── */
.recovery-section { padding: 7rem 0; background: var(--off-white); border-top: 3px solid var(--cyber); }
.recovery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.recovery-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; border: 1px solid var(--grey-100); background: var(--white); }
.recovery-card { padding: 1.8rem 1.4rem; border-right: 1px solid var(--grey-100); }
.recovery-card:last-child { border-right: none; }
.recovery-card-title { font-family: var(--font-condensed); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; }
.recovery-card-body { font-size: 0.8rem; font-weight: 300; line-height: 1.55; color: var(--text-muted); }

/* ── SCAM AWARENESS ── */
.scam-section { padding: 7rem 0; background: var(--navy); color: var(--white); }
.scam-intro { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 880px; margin-top: 2rem; }
.scam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.scam-col { border: 1px solid rgba(255,255,255,0.12); padding: 2.2rem; }
.scam-col.warn { border-top: 3px solid #C0504D; }
.scam-col.ok { border-top: 3px solid var(--cyber); background: var(--navy-mid); }
.scam-col-head { font-family: var(--font-condensed); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.3rem; }
.scam-col.warn .scam-col-head { color: #E08A87; }
.scam-col.ok .scam-col-head { color: var(--cyber); }
.scam-list { list-style: none; }
.scam-list li { font-size: 0.9rem; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.75); padding: 0.7rem 0 0.7rem 1.6rem; border-bottom: 1px solid rgba(255,255,255,0.07); position: relative; }
.scam-list li:last-child { border-bottom: none; }
.scam-col.warn .scam-list li::before { content: '\00D7'; position: absolute; left: 0; top: 0.6rem; color: #E08A87; font-weight: 600; font-size: 1.1rem; }
.scam-col.ok .scam-list li::before { content: '\2713'; position: absolute; left: 0; top: 0.7rem; color: var(--cyber); font-weight: 600; font-size: 0.95rem; }
.scam-foot { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.65); margin-top: 2.5rem; max-width: 880px; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }

/* ── CONTACT ── */
.contact-section { padding: 8rem 0; background: var(--off-white); }
.contact-head { text-align: center; }
.contact-head .tag-eyebrow { justify-content: center; }
.contact-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; color: var(--navy); line-height: 1; margin-bottom: 1.5rem; }
.contact-body { font-size: 1rem; font-weight: 300; color: var(--text-muted); max-width: 620px; margin: 0 auto 1rem; line-height: 1.7; }
.contact-reassure { font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyber-dim); margin-bottom: 2.5rem; }

/* the enquiry form */
.contact-form { max-width: 640px; margin: 0 auto; text-align: left; background: var(--white); border: 1px solid var(--grey-100); border-top: 3px solid var(--cyber); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block; font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.45rem;
}
.form-field label .opt { color: var(--grey-600); font-weight: 500; text-transform: none; letter-spacing: 0.03em; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.75rem 0.9rem; font-family: var(--font-body); font-size: 1rem;
  color: var(--text-primary); background: var(--off-white); border: 1px solid #807C75; /* ≥3:1 vs white + off-white */
  border-radius: 0;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D1B2A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--steel); }
.form-check { display: flex; align-items: flex-start; gap: 0.7rem; margin: 0.3rem 0 1.4rem; }
.form-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--cyber-dim); flex-shrink: 0; }
.form-check label { font-size: 0.88rem; font-weight: 300; color: var(--text-muted); line-height: 1.5; }
.form-submit {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.95rem 2.4rem;
  background: var(--navy); color: var(--white); border: none; cursor: pointer;
  transition: background 0.2s; width: 100%; min-height: 48px;
}
.form-submit:hover { background: var(--steel); }
.form-submit[disabled] { opacity: 0.6; cursor: wait; }
.form-status { margin-top: 1rem; font-size: 0.92rem; line-height: 1.55; display: none; padding: 0.9rem 1.1rem; }
.form-status.ok { display: block; background: #E9F6F1; border: 1px solid var(--cyber-dim); color: #0C4A3D; }
.form-status.err { display: block; background: #F9ECEB; border: 1px solid #B0504D; color: #7C302D; }
.form-privacy { font-size: 0.8rem; font-weight: 300; color: var(--text-muted); margin-top: 1.2rem; line-height: 1.6; }
.form-privacy a { color: var(--cyber-dim); }
.contact-alt { text-align: center; font-size: 0.9rem; font-weight: 300; color: var(--text-muted); margin-top: 2rem; }
.contact-alt a { color: var(--cyber-dim); font-weight: 500; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 4rem; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-brand { max-width: 340px; }
.footer-logo { font-family: var(--font-condensed); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem; }
.footer-logo span { color: var(--cyber); }
.footer-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.65); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-condensed); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; min-height: 44px; }
.footer-links a:hover { color: var(--cyber); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--font-condensed); font-size: 0.7rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.62); }
.footer-parent { font-family: var(--font-condensed); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.footer-parent span { color: var(--cyber); }
.footer-statutory { font-size: 0.72rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.62); }
.disclaimer { font-size: 0.72rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 100%; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.2rem; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--navy-mid); border-top: 1px solid rgba(45,212,191,0.35);
  padding: 1.1rem 4rem; display: none; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,0.8); flex: 1 1 320px; margin: 0; }
.cookie-banner a { color: var(--cyber); }
.cookie-actions { display: flex; gap: 0.7rem; }
.cookie-btn {
  font-family: var(--font-condensed); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.6rem 1.3rem;
  cursor: pointer; min-height: 44px;
}
.cookie-accept { background: var(--cyber); color: var(--navy); border: none; }
.cookie-accept:hover { background: #3eede0; }
.cookie-reject { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.45); }
.cookie-reject:hover { border-color: var(--cyber); color: var(--cyber); }

/* ── LEGAL / DOC PAGES + 404 ── */
.doc { max-width: 820px; margin: 0 auto; padding: 4rem 2rem 5rem; font-weight: 400; line-height: 1.7; }
.doc h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--navy); line-height: 1.05; margin: 1.5rem 0 0.6rem; }
.doc h2 { font-family: var(--font-condensed); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--navy); margin: 2.2rem 0 0.7rem; }
.doc p, .doc li { font-size: 0.95rem; color: #33312E; }
.doc ul { padding-left: 1.3rem; margin: 0.6rem 0 1rem; }
.doc li { margin-bottom: 0.45rem; }
.doc a { color: var(--cyber-dim); }
.doc .meta { font-family: var(--font-condensed); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-600); margin-bottom: 1.8rem; }
.doc .back-link { display: inline-block; font-family: var(--font-condensed); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyber-dim); text-decoration: none; }
.doc .back-link:hover { color: var(--navy); }
.table-wrap { overflow-x: auto; margin: 1rem 0 1.4rem; }
.doc table { border-collapse: collapse; width: 100%; font-size: 0.88rem; }
.doc th, .doc td { border: 1px solid var(--grey-100); padding: 0.6rem 0.8rem; text-align: left; vertical-align: top; color: #33312E; }
.doc th { background: var(--off-white); font-family: var(--font-condensed); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.76rem; color: var(--navy); }
.doc .confirm { background: #FBF3E2; border: 1px solid var(--gold); padding: 0.15rem 0.4rem; font-family: var(--font-mono); font-size: 0.8em; color: #6B4A0F; }

.notfound { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--navy); padding: 2rem; }
.notfound .code { font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyber); letter-spacing: 0.15em; margin-bottom: 1rem; }
.notfound h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.5rem); color: var(--white); line-height: 1; margin-bottom: 1rem; }
.notfound p { font-weight: 300; color: rgba(255,255,255,0.72); max-width: 460px; line-height: 1.7; margin-bottom: 2rem; }

/* ── ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.no-js .fade-up { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }

/* =============================================================================
   RESPONSIVE — grids step N → 2 → 1 (per LAYOUT.md), mobile nav ≤ 860px.
   ============================================================================= */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .method-flow { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .recovery-cards { grid-template-columns: repeat(2, 1fr); }
  .backed-card { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-cta { display: none; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(13,27,42,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.4rem 1.5rem; width: 100%; }
}

@media (max-width: 720px) {
  nav.site-nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-inner, section .section-inner, .client-bar-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero { padding-top: 4rem; min-height: 0; }
  .trust-item { padding-right: 1.5rem; margin-right: 1.5rem; margin-bottom: 1rem; }
  .svc-grid, .method-flow, .why-grid, .recovery-cards, .scam-grid { grid-template-columns: 1fr; }
  .svc-card, .method-step, .recovery-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .svc-card, .recovery-card { border-bottom-color: var(--grey-100); }
  .svc-card:last-child, .method-step:last-child, .recovery-card:last-child { border-bottom: none; }
  .backed-card { padding: 2rem; }
  .contact-form { padding: 1.6rem 1.3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 2rem 1.5rem; }
  .cookie-banner { padding: 1.1rem 1.5rem; }
  .intro-section, .services-section, .method-section, .why-section, .recovery-section, .scam-section { padding: 4.5rem 0; }
  .contact-section { padding: 5rem 0; }
}
