/* =============================================================
   UKActiveWeb — Mobile-First Stylesheet
   Font: Antonio (Google Fonts)
   ============================================================= */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand colours — match logo exactly */
  --red:         #CC0000;   /* UK and WEB in logo */
  --red-dark:    #a30000;
  --navy:        #1C3A5F;   /* dark navy — headings, card titles */
  --blue:        #1C608F;   /* brand steel blue — ACTIVE in logo (#1B608F extracted from logo image) */
  --blue-light:  #EBF4FB;   /* pastel blue — section backgrounds */
  --blue-mid:    #D5E9F5;   /* slightly deeper pastel for accents */

  /* Neutrals */
  --footer-bg:   #0D1B2A;   /* dark ONLY for nav + footer */
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --grey:        #e9ecef;
  --grey-mid:    #adb5bd;
  --text:        #1a1a2e;
  --text-muted:  #5e6e80;

  /* Misc */
  --font:        'Antonio', 'Arial Narrow', Arial, sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(28,58,95,0.10);
  --shadow-lg:   0 8px 48px rgba(28,58,95,0.18);
  --transition:  0.25s ease;
  --max-w:       1180px;
  --section-pad: 64px 20px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem,   8vw, 4rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3.5vw, 1.8rem); }
h4 { font-size: clamp(1rem,   3vw,  1.3rem); }
p  { font-size: clamp(0.95rem,2.5vw,1.05rem); }

/* ── Utility ────────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-red    { color: var(--red); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ════════════════════════════════════════════════════════════
   LOGO
════════════════════════════════════════════════════════════ */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(204,0,0,0.30);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(204,0,0,0.40);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: #152d4a;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ── Section labels ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION — light theme
════════════════════════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--grey);
  transition: box-shadow var(--transition), padding var(--transition);
}
#site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(28,58,95,0.10);
  padding: 12px 20px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--red); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--white); }
.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey);
  padding: 8px 20px 28px;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(28,58,95,0.10);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .btn { margin-top: 16px; width: 100%; }

/* ════════════════════════════════════════════════════════════
   HERO — light theme
════════════════════════════════════════════════════════════ */
#hero {
  background: linear-gradient(160deg, var(--white) 0%, var(--blue-light) 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 90px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(204,0,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(28,96,143,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.08);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}
#hero h1 { color: var(--navy); max-width: 820px; margin: 0 auto 24px; }
#hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
/* btn-secondary on light hero — make it a navy outline */
#hero .btn-secondary {
  color: var(--navy);
  border-color: rgba(28,58,95,0.35);
}
#hero .btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(28,58,95,0.06);
}
.hero-trust {
  margin-top: 52px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-trust-logos {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-mid);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.8s infinite;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--grey-mid), transparent);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ════════════════════════════════════════════════════════════
   STATS — white background, coloured numbers
════════════════════════════════════════════════════════════ */
#stats {
  background: var(--white);
  border-bottom: 1px solid var(--grey);
  padding: 48px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ════════════════════════════════════════════════════════════
   PAIN POINTS — pastel blue
════════════════════════════════════════════════════════════ */
#pain {
  background: var(--blue-light);
  padding: var(--section-pad);
}
.pain-header { text-align: center; margin-bottom: 48px; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pain-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(204,0,0,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.pain-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.pain-card p  { font-size: 0.91rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   SERVICES — white
════════════════════════════════════════════════════════════ */
#services { padding: var(--section-pad); background: var(--white); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after  { transform: scaleX(1); }
.service-card:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon  { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.service-card p  { font-size: 0.91rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   PROCESS — pastel blue (NOT dark)
════════════════════════════════════════════════════════════ */
#process { padding: var(--section-pad); background: var(--blue-light); }
.process-header { text-align: center; margin-bottom: 48px; }
.process-header h2    { color: var(--navy); }
.process-header .section-intro { color: var(--text-muted); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(204,0,0,0.25);
}
.step-content h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 8px; }
.step-content p  { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   WHY US — white
════════════════════════════════════════════════════════════ */
#why { padding: var(--section-pad); background: var(--white); }
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.why-text .section-intro { text-align: left; max-width: 100%; }
.why-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}
.why-point h4 { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.why-point p  { font-size: 0.9rem; color: var(--text-muted); }

/* Audit card — light blue, not dark */
.why-visual {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.audit-card { text-align: center; }
.audit-card h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 8px; }
.audit-card > p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.97rem; }
.audit-checklist {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audit-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
}
.audit-checklist li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-zero { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.price-zero span { color: var(--red); }
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS — pastel blue
════════════════════════════════════════════════════════════ */
#testimonials { padding: var(--section-pad); background: var(--blue-light); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 20px;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-stars { color: #e0a020; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text  { font-size: 0.97rem; line-height: 1.78; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.82rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   PRICING — white
════════════════════════════════════════════════════════════ */
#pricing { padding: var(--section-pad); background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 8px; }
.pricing-note   { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 8px 40px rgba(204,0,0,0.15);
}
.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier  { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.pricing-name  { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-size: 2.8rem; font-weight: 700; line-height: 1; color: var(--navy); margin-bottom: 4px; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-from  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-divider {
  height: 1px;
  background: var(--blue-mid);
  margin: 24px 0;
}
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text);
}
.pricing-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn { width: 100%; }

/* ════════════════════════════════════════════════════════════
   FAQ — pastel blue
════════════════════════════════════════════════════════════ */
#faq { padding: var(--section-pad); background: var(--blue-light); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--blue-mid); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover       { background: var(--blue-light); }
.faq-question.open        { background: var(--blue-light); color: var(--red); }
.faq-chevron {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -4px;
}
.faq-question.open .faq-chevron { transform: rotate(-135deg); margin-top: 4px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 16px 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.78;
  border-top: 1px solid var(--blue-mid);
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER — strong red strip (accent section, fine to be bold)
════════════════════════════════════════════════════════════ */
#cta-banner { padding: var(--section-pad); background: var(--red); text-align: center; }
#cta-banner h2   { color: var(--white); margin-bottom: 16px; }
#cta-banner p    { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   CONTACT — white
════════════════════════════════════════════════════════════ */
#contact { padding: var(--section-pad); background: var(--white); }
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-text h2 { color: var(--navy); margin-bottom: 16px; }
.contact-text p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail  { display: flex; gap: 14px; align-items: center; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-text a, .contact-detail-text span { font-size: 0.97rem; color: var(--navy); }
.contact-detail-text a:hover { color: var(--red); }

.contact-form {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,96,143,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-message { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); font-size: 0.93rem; display: none; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ════════════════════════════════════════════════════════════
   FOOTER — light theme
════════════════════════════════════════════════════════════ */
#site-footer { background: var(--off-white); border-top: 1px solid var(--grey); padding: 60px 20px 0; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 20px; max-width: 320px; }
.footer-social  { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--red); color: var(--red); background: rgba(204,0,0,0.05); }
.footer-col h4 { color: var(--navy); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-more { display: inline-block; margin-top: 12px; font-size: 0.85rem; color: var(--blue); font-weight: 600; transition: color var(--transition); }
.footer-more:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--grey);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.footer-legal a { color: var(--text-muted); font-size: 0.82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   COOKIE BANNER — light theme
════════════════════════════════════════════════════════════ */
/* ── Back to top ─────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9998;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background var(--transition);
  box-shadow: 0 4px 16px rgba(204,0,0,0.3);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--red-dark); }

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--grey);
  box-shadow: 0 -4px 24px rgba(28,58,95,0.08);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cookie-inner p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }
.cookie-inner p a { color: var(--blue); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-accept  { background: var(--red); color: var(--white); padding: 10px 20px; font-size: 0.88rem; border-radius: var(--radius); font-weight: 700; transition: background var(--transition); }
.btn-cookie-accept:hover  { background: var(--red-dark); }
.btn-cookie-decline { background: transparent; color: var(--text-muted); padding: 10px 16px; font-size: 0.88rem; border-radius: var(--radius); border: 1px solid var(--grey); transition: all var(--transition); }
.btn-cookie-decline:hover { color: var(--navy); border-color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════
   TABLET — 600px+
════════════════════════════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --section-pad: 80px 20px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .cta-actions  { flex-direction: row; justify-content: center; }
  .stats-grid   { grid-template-columns: repeat(4, 1fr); }
  .pain-grid    { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row     { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ════════════════════════════════════════════════════════════
   DESKTOP — 900px+
════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  :root { --section-pad: 100px 20px; }
  .nav-links   { display: flex; }
  .nav-toggle  { display: none; }
  .nav-mobile  { display: none !important; }
  .services-grid   { grid-template-columns: repeat(3, 1fr); }
  .process-steps   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .why-inner       { grid-template-columns: 1fr 1fr; }
  .pricing-grid    { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-inner   { grid-template-columns: 1fr 1.4fr; }
  .footer-inner    { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════
   POLICY PAGES 
════════════════════════════════════════════════════════════ */
.policy-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}
.policy-main h1 { color: var(--navy); margin-bottom: 4px; }
.policy-main h2 { color: var(--navy); margin-top: 40px; margin-bottom: 12px; }
.policy-main h3 { color: var(--navy); margin-top: 24px; margin-bottom: 8px; }
.policy-main p  { margin-bottom: 16px; }
.policy-main ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-main ul li { margin-bottom: 6px; }
.policy-main a  { color: var(--blue); text-decoration: underline; }
.policy-main a:hover { color: var(--red); }
.policy-meta    { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.policy-contact-card {
  margin-top: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius);
}
.policy-contact-card p { margin-bottom: 6px; }

/* ════════════════════════════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .scroll-indicator { animation: none; }
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
