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

/* ── ACCESSIBILITY ───────────────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: var(--accent);
  color: var(--black);
  padding: .75rem 1rem;
  z-index: 999;
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--black);
}

.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;
}

/* ── CUSTOM PROPERTIES ───────────────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --white:       #FAFAF8;
  --accent:      #FF4D00;
  --accent-soft: #FF6B2B;
  --mid:         #1A1A1A;
  --muted:       #A3A3A3;
  --border:      #222222;
  --card:        #111111;
  --tag-bg:      #1E1E1E;
  --content-max: 1360px;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
}

/* ── BASE ────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; }
p, li, h1, h2, h3, h4, a { overflow-wrap: anywhere; }

main:focus { outline: none; }

a { text-underline-offset: .2em; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem max(4%, calc((100vw - var(--content-max)) / 2));
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 74px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.75rem);
  list-style: none;
}

.nav-links a {
  color: #c4c4c4;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-soft) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: .625rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem max(5%, calc((100vw - var(--content-max)) / 2)) 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background-image: url('/assets/img/patterns/pattern-glow-orange.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: #aaa;
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  min-height: 44px;
}
.btn-primary:hover { background: var(--accent-soft); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
  min-height: 44px;
}
.btn-secondary:hover { border-color: #555; transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

/* ── STANDALONE PAGE SECTIONS ────────────────────────────────────────────── */
/* First section on inner pages — extra top padding to clear fixed nav */
.page-section { padding-top: 9.25rem; }

/* Inner-page titles should not inherit the homepage hero's display scale. */
.page-section h1 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.08;
  max-width: 900px;
}

/* Orange CTA banner reused at the bottom of every inner page */
.cta-banner {
  background: var(--accent);
  padding: 5rem max(5%, calc((100vw - var(--content-max)) / 2));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'SHO';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--black);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner > p {
  color: var(--black);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  position: relative;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  position: relative;
}
.btn-black:hover { background: #1a1a1a; }

/* Homepage services teaser — 3 featured cards with a "see all" link below */
.services-teaser-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── TICKER ──────────────────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 0.75rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  color: var(--white);
}
.ticker-track span::after {
  content: '✦';
  margin-left: 2.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS (shared) ───────────────────────────────────────────────────── */
section { padding: 6rem max(5%, calc((100vw - var(--content-max)) / 2)); }

.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-intro {
  color: #aaa;
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── SERVICES ────────────────────────────────────────────────────────────── */
#services { background: var(--black); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--card);
  padding: 2.5rem;
  transition: background 0.2s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: #161616; }
.service-card p { flex: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 77, 0, 0.18);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  background: var(--tag-bg);
  color: var(--accent);
  border: 1px solid rgba(255,77,0,0.2);
}

/* ── SERVICE GROUPS (services page) ─────────────────────────────────────── */
.services-page-intro {
  margin-bottom: 4rem;
}
.services-page-intro h1 {
  margin-bottom: 0.5rem;
}
.services-cad-note {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.service-group {
  padding-top: 3.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
}
.service-group-intro {
  margin-bottom: 2.25rem;
}
.service-group-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  background: rgba(255,77,0,0.1);
  color: var(--accent);
  border: 1px solid rgba(255,77,0,0.22);
  margin-bottom: 0.85rem;
}
.service-group-intro h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}
.service-group-intro p {
  color: #aaa;
  font-size: 0.92rem;
  max-width: 520px;
  line-height: 1.65;
}
.service-group .services-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .service-group .services-grid { grid-template-columns: 1fr; }
}

/* ── WHY SHO ─────────────────────────────────────────────────────────────── */
#why { background: var(--mid); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-item:first-child { border-top: 1px solid var(--border); }

.why-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
  min-width: 28px;
}

.why-text h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: normal;
  line-height: 1.3;
}
.why-text p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
}

.turnaround-display {
  text-align: center;
  padding: 2rem 0;
}

.turnaround-big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.turnaround-big span { color: var(--accent); }

.turnaround-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.turnaround-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mini-stat-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}
.mini-stat-val span { color: var(--accent); }

.mini-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── PROCESS ─────────────────────────────────────────────────────────────── */
#process { background: var(--black); }

/* Replaces the inline style on the process section header */
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
}

.process-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }

.step-line {
  width: 32px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.25rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── AUDIENCE ────────────────────────────────────────────────────────────── */
#audience { background: var(--mid); }

/* Replaces the inline style on the audience section header */
.audience-header { max-width: 600px; }

.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.audience-card:hover { border-color: rgba(255,77,0,0.4); }

.audience-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.audience-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
#faq { background: var(--black); }

.faq-h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.faq-intro {
  font-size: 1rem;
  color: #999;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 0;
}
.faq-intro a { color: var(--accent); text-decoration: none; }
.faq-intro a:hover { text-decoration: underline; }

.faq-category {
  margin-top: 4rem;
}

.faq-category-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--accent);
  display: inline-block;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
  margin-top: 0;
}

.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--white);
  line-height: 1.35;
}
.faq-a {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a a { color: var(--accent); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }
.faq-a strong { color: var(--white); font-weight: 600; }

/* ── CTA / CONTACT ───────────────────────────────────────────────────────── */
#contact {
  background: var(--accent);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: 'SHO';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
}

#contact h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--black);
  margin: 0 auto 1rem;
  max-width: 680px;
}

#contact > .contact-intro {
  color: var(--black);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* Server-side error/feedback message */
.form-feedback {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: left;
}
.form-feedback--error {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  width: 100%;
  margin: 0 auto 1.5rem;
  position: relative;
}

/* Honeypot — visually hidden, not tabbable */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Name + email side-by-side */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Wrapper for input + its inline error */
.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* All inputs, select, and textarea share the same base style */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid transparent;
  background: rgba(0,0,0,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  min-height: 48px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }

.contact-form select option { color: #111; }

/* Highlight invalid fields after attempted submit */
.contact-form input.invalid,
.contact-form select.invalid,
.contact-form textarea.invalid {
  border-color: rgba(255,255,255,0.6);
}

/* Inline field error text */
.field-error {
  font-size: 0.78rem;
  color: var(--black);
  min-height: 1em;
  display: block;
}

.recaptcha-wrap {
  display: flex;
  justify-content: center;
  min-height: 78px;
  margin: .25rem 0;
}

.contact-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  align-self: stretch;
  min-height: 48px;
}
.contact-form button:hover { background: #1a1a1a; }

.contact-note {
  font-size: 0.8rem;
  color: var(--black);
  position: relative;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--mid);
  padding: 3rem max(5%, calc((100vw - var(--content-max)) / 2));
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-legal {
  font-size: 0.78rem;
  color: var(--muted);
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── UTILITY (standalone pages) ──────────────────────────────────────────── */
/* thank-you.html full-height centering */
.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 5%;
  background: var(--accent);
  text-align: center;
  color: var(--black);
}

.thankyou-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.thankyou-back {
  background: var(--black) !important;
  margin-top: 1.25rem;
}

/* ── PRIVACY PAGE ────────────────────────────────────────────────────────── */
.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 9rem 5% 6rem;
}
.privacy-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.privacy-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 3rem;
  display: block;
}
.privacy-wrap h2 {
  font-size: 1.15rem;
  margin: 2.5rem 0 0.75rem;
}
.privacy-wrap p,
.privacy-wrap li {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.privacy-wrap ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}
.privacy-wrap a { color: var(--accent); text-decoration: underline; }
.privacy-back {
  display: inline-block;
  margin-top: 3rem;
}

/* ── 404 / ERROR PAGES ───────────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 5%;
  text-align: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.05em;
}

.error-message {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 440px;
  margin: 1rem auto 2rem;
}

/* ── PROCESS PAGE (standalone) ───────────────────────────────────────────── */
.process-page-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.process-page-intro h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.process-page-intro .section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.process-step h3,
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-promise { background: var(--mid); }
.process-promise-header { max-width: 600px; margin-bottom: 3rem; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.promise-item { background: var(--mid); padding: 2rem 1.75rem; }
.promise-bar {
  width: 24px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.1rem;
}
.promise-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.promise-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.process-faq-section { background: var(--black); }
.process-faq-header { max-width: 600px; margin-bottom: 3rem; }
.process-faq-list { max-width: 760px; }
.process-faq-item { border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.process-faq-item:first-child { border-top: 1px solid var(--border); }
.process-faq-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.process-faq-a { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE: MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  nav { padding: .5rem 4%; }
  .nav-logo img { height: 62px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 1rem;
  }

  .why-grid         { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid         { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; }
  .process-step     { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stats       { gap: 2rem; }
  .form-row         { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  footer .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: .5rem 1rem; }
  .footer-links a { display: inline-flex; align-items: center; min-height: 44px; }

  #hero { min-height: auto; padding: 8rem 5% 4rem; }
  .hero-glow { width: 90vw; height: 90vw; opacity: .65; }
  .hero-actions > a { flex: 1 1 12rem; text-align: center; }
  .page-section { padding: 9rem 5% 6rem; }
  .cta-banner { padding-left: 5%; padding-right: 5%; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-stats .stat-item:last-child { grid-column: 1 / -1; }
  .audience-cards,
  .promise-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 340px) {
  #contact { padding-left: .5rem; padding-right: .5rem; }
}

@media (forced-colors: active) {
  .hero-grid-bg,
  .hero-glow,
  .ticker-wrap { display: none; }
  .btn-primary,
  .nav-cta,
  .btn-black { border: 2px solid ButtonText; }
}

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