/* ============================================================
   CRUNCHSPARK — FRACTIONAL CFO WEBSITE
   Neobrutalist design · Poppins + PT Serif
   #212A62 Navy · #F26722 Orange
   Subtle gradient backgrounds throughout
============================================================ */

/* ── CSS CUSTOM PROPERTIES ────────────────────────────── */
:root {
  --navy:        #212A62;
  --navy-dark:   #181e4a;
  --navy-mid:    #1c2456;
  --orange:      #F26722;
  --orange-dark: #d45518;
  --orange-light:#ff8f52;

  --black:       #1a1a1a;
  --white:       #ffffff;
  --cream:       #FAFAF7;
  --cream-2:     #F5F4EF;

  --grey-1:      #f0efea;
  --grey-2:      #e5e4df;
  --grey-3:      #c8c7c0;
  --grey-4:      #9ca3af;
  --grey-5:      #6b7280;
  --text:        #1a1a1a;
  --text-2:      #374151;
  --text-3:      #6b7280;

  /* Neobrutalist tokens */
  --border:        2.5px solid var(--black);
  --border-thick:  3px solid var(--black);
  --shadow:        4px 4px 0 var(--black);
  --shadow-lg:     6px 6px 0 var(--black);
  --shadow-navy:   4px 4px 0 var(--navy);
  --shadow-orange: 4px 4px 0 var(--orange);

  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;

  --font-sans:  'Poppins', system-ui, sans-serif;
  --font-serif: 'PT Serif', Georgia, serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --max-width:  1160px;
  --nav-height: 66px;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── TYPE ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-sans); font-weight: 700; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.05rem; }
h1 em, h2 em { font-family: var(--font-serif); font-style: italic; color: var(--navy); }
p  { font-size: 0.975rem; color: var(--text-2); line-height: 1.7; }

/* ── LAYOUT ───────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-md); }

/* ── EYEBROW ──────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(242,103,34,0.08);
  border: 1.5px solid rgba(242,103,34,0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.section-header { margin-bottom: var(--space-lg); }
.section-header--center { text-align: center; }
.section-header--center .section-intro { max-width: 600px; margin: var(--space-sm) auto 0; }
.section-header h2 { margin-bottom: var(--space-xs); }
.section-intro { font-size: 1rem; color: var(--text-3); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: var(--border);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover  { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }
.btn--primary:active { transform: translate(4px,4px); box-shadow: none; }

.btn--outline {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn--outline:hover { background: var(--cream); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--orange:hover  { background: var(--orange-dark); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }
.btn--orange:active { transform: translate(4px,4px); box-shadow: none; }

.btn--lg  { font-size: 1.05rem; padding: 1rem 2.5rem; }
.btn--sm  { font-size: 0.8rem; padding: 0.6rem 1.1rem; min-height: 44px; }
.btn--full{ width: 100%; justify-content: center; }

.btn--nav {
  background: var(--orange);
  color: var(--white);
  font-size: 0.825rem;
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  box-shadow: 3px 3px 0 var(--black);
}
.btn--nav:hover { background: var(--orange-dark); transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--black); }

/* ── BADGE ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.badge--orange {
  background: var(--orange);
  color: var(--white);
  border: var(--border);
  box-shadow: 3px 3px 0 var(--black);
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__logo img { display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.15s;
  position: relative;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a.nav__link--active { color: var(--navy); }
.nav__links a.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── SKIP LINK & VISUALLY HIDDEN ─────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── FOCUS VISIBLE ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(242,103,34,0.2);
}
.nav__links a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 2px;
}
/* Increase nav link tap target */
.nav__links a {
  padding: 0.625rem 0.25rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── DECORATIVE ICONS (Gumroad-style corner stickers) ──── */
.deco-icon {
  position: absolute;
  pointer-events: none;
  user-select: none;
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.18));
  z-index: 2;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-md)) 0 var(--space-md);
  border-bottom: var(--border);
  background-color: var(--cream);
  background-image: radial-gradient(circle, rgba(33,42,98,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* Bold left-edge structural accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--orange);
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-lg);
  align-items: start;
}

.hero__eyebrow { margin-bottom: var(--space-md); }
.hero__spec {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin-top: 1rem;
}

.hero__headline {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.hero__subheadline {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__stats { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.85);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  box-shadow: 3px 3px 0 var(--black);
  backdrop-filter: blur(4px);
}
.stat-pill__number { font-size: 1.15rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-pill__label  { font-size: 0.72rem; color: var(--text-3); font-weight: 500; }

/* ── HERO ARCHITECTURE GRAPHIC ─────────────────────────── */
.hero__graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-arch {
  width: 130%;
  margin-right: -30%;
  display: block;
  overflow: visible;
}

/* ── ISO FLOAT ANIMATIONS ──────────────────────────── */
@keyframes iso-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes iso-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes iso-float-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-13px); }
}
.iso-float-a { animation: iso-float-a 7s ease-in-out infinite; }
.iso-float-b { animation: iso-float-b 5.5s ease-in-out infinite 1.2s; }
.iso-float-c { animation: iso-float-c 6s ease-in-out infinite 0.6s; }
.iso-float-d { animation: iso-float-a 8.5s ease-in-out infinite 2.5s; }
.iso-float-e { animation: iso-float-b 6.5s ease-in-out infinite 3.5s; }

/* ── SECTOR BAR ───────────────────────────────────────── */
.sector-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #291960 100%);
  border-bottom: var(--border);
  padding: var(--space-md) 0;
}
.sector-bar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 0.85rem;
}
.sector-bar__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  color: rgba(255,255,255,0.82);
  transition: all 0.15s;
  cursor: default;
}
.sector-tag:hover { background: var(--orange); border-color: var(--orange-dark); color: white; }

/* ── PAIN ─────────────────────────────────────────────── */
/*
  Gradient: warm cream base, very subtle navy tint + faint dot grid pattern
*/
.pain {
  position: relative;
  padding: var(--space-3xl) 0;
  background-color: #f7f6ff;
  background-image:
    linear-gradient(155deg, #f3f4ff 0%, #FAFAF7 45%, #fff9f5 100%),
    radial-gradient(circle, rgba(33,42,98,0.055) 1px, transparent 1px);
  background-size: 100% 100%, 26px 26px;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-md);
}

.pain-card {
  position: relative;
  overflow: visible;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
}
.pain-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

.pain-card__icon-wrap { margin-bottom: var(--space-sm); }
.pain-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-xs); line-height: 1.35; }
.pain-card p  { font-size: 0.875rem; }

.pain-card--cta {
  background: var(--navy);
  border-color: var(--navy-dark);
  box-shadow: 4px 4px 0 var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}
.pain-card--cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--orange); }
.pain-card--cta__text { font-size: 1rem; font-weight: 700; color: var(--white) !important; line-height: 1.5; }

/* ── ABOUT ────────────────────────────────────────────── */
/*
  Gradient: clean white with a faint warm tint
*/
.about {
  padding: var(--space-3xl) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  background: linear-gradient(135deg, #ffffff 0%, #fffcf9 60%, #f8f7ff 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about__image-frame {
  position: static;
}

.about__photo-clip {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-md);
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

.about__cred-stack { display: flex; flex-direction: column; gap: var(--space-xs); }

.cred-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: 3px 3px 0 var(--black);
}
.cred-card div { display: flex; flex-direction: column; gap: 2px; }
.cred-card strong { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.cred-card span  { font-size: 0.72rem; color: var(--text-3); }

.about__lead {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.about__copy-col h2 { margin-bottom: var(--space-lg); }
.about__copy-col > p { margin-bottom: var(--space-md); font-size: 0.95rem; }

.about__highlights {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  box-shadow: 3px 3px 0 var(--black);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1.5px solid var(--grey-2);
}
.highlight-item:last-child { border-bottom: none; padding-bottom: 0; }
.hi-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── SERVICES ─────────────────────────────────────────── */
/*
  Gradient: cream base with a light warm orange breath
*/
.services {
  padding: var(--space-3xl) 0;
  background: linear-gradient(160deg, #FAFAF7 0%, #fff8f2 60%, #fdf6ff 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-md);
}

.services__bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
}
.service-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

.service-card--featured {
  grid-column: span 3;
  background: var(--navy);
  border-color: var(--navy-dark);
  box-shadow: 6px 6px 0 var(--orange);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  gap: 0.875rem var(--space-xl);
  padding: 1.75rem 2rem;
}
.service-card--featured:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--orange); }
.service-card--featured .service-card__badge  { grid-column: 1; align-self: start; justify-self: start; }
.service-card--featured .service-card__icon-wrap { display: none; }
.service-card--featured h3   { grid-column: 1; color: var(--white); font-size: 1.35rem; }
.service-card--featured .service-tagline { grid-column: 1; color: var(--orange-light); }
.service-card--featured > p:not(.service-tagline):not(.service-commitment) { grid-column: 1; color: rgba(255,255,255,0.72); }
.service-card--featured .service-list-col { grid-column: 2; grid-row: 2 / -1; display: flex; flex-direction: column; justify-content: flex-start; gap: 0.875rem; padding: 0; }
.service-list-col__hdr { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin: 0; }
.service-card--featured .service-commitment { grid-column: 1; color: rgba(255,255,255,0.45); align-self: end; border-top-color: rgba(255,255,255,0.12); }
.service-card--featured .btn { grid-column: 1; }
.service-card--featured .btn--primary {
  background: var(--orange);
  border-color: var(--orange-dark);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.service-card--featured .btn--primary:hover {
  background: var(--orange-dark);
  transform: translate(2px,2px);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.25);
}

.service-card__badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1.5px solid var(--orange-dark);
}
.service-card__icon-wrap { display: flex; align-items: center; }
.service-card h3 { font-size: 1.05rem; line-height: 1.35; }
.service-tagline { font-size: 0.85rem; font-weight: 600; color: var(--orange); font-style: italic; }
.service-card > p:not(.service-tagline):not(.service-commitment) { font-size: 0.875rem; }

.service-list { display: flex; flex-direction: column; gap: 0.45rem; }
.service-list li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.45;
}
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 0.75rem; }
.service-card--featured .service-list li { color: rgba(255,255,255,0.7); }
.service-card--featured .service-list li::before { color: var(--orange-light); }

.service-commitment { font-size: 0.78rem; color: var(--grey-5); font-style: italic; padding-top: 0.5rem; border-top: 1.5px solid var(--grey-2); margin-top: auto; }

/* ── PROCESS ──────────────────────────────────────────── */
/*
  Navy with diagonal gradient shift + subtle radial orange glow
*/
.process {
  padding: var(--space-3xl) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 55% 70% at 15% 60%, rgba(242,103,34,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 55%),
    linear-gradient(140deg, #212A62 0%, #1c2256 40%, #271858 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
}
.process .eyebrow { color: var(--orange); background: rgba(242,103,34,0.15); border-color: rgba(242,103,34,0.3); }
.process h2 { color: var(--white); }
.process .section-intro { color: rgba(255,255,255,0.55); }

.process__steps { display: flex; align-items: stretch; }
.process-step {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.process-step__num { font-size: 2.5rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: var(--space-sm); font-family: var(--font-serif); opacity: 0.75; }
.process-step__icon { margin-bottom: var(--space-sm); }
.process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: var(--space-xs); }
.process-step p  { font-size: 0.875rem; color: rgba(255,255,255,0.62); }
.process-step__connector { display: flex; align-items: center; justify-content: center; padding: 0 0.75rem; opacity: 0.5; flex-shrink: 0; }

/* ── RESULTS ──────────────────────────────────────────── */
/*
  Gradient: soft blue-tinted cream, flows into warm white
*/
.results {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(150deg, #eef0ff 0%, #f5f6ff 30%, #FAFAF7 65%, #fff8f4 100%);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-md);
}

.result-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.1s, box-shadow 0.1s;
}
.result-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

.result-card__sector {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(33,42,98,0.06);
  border: 1.5px solid rgba(33,42,98,0.12);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  width: fit-content;
}
.result-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; }
.result-card p  { font-size: 0.855rem; flex: 1; }

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--grey-2);
  border: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: auto;
}
.result-metric { background: var(--cream); padding: 0.75rem 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.result-metric__value { font-size: 1.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.result-metric__label { font-size: 0.62rem; color: var(--text-3); line-height: 1.3; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
/*
  Gradient: white to very faint warm cream
*/
.testimonials {
  position: relative;
  padding: var(--space-3xl) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf7 60%, #f9f8ff 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.1s, box-shadow 0.1s;
}
.testimonial-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }

.testimonial-card--featured {
  grid-column: span 3;
  background: var(--navy);
  border-color: var(--navy-dark);
  box-shadow: 6px 6px 0 var(--orange);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-sm) var(--space-xl);
}
.testimonial-card--featured:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--orange); }
.testimonial-card--featured .testimonial-card__stars { grid-column: 1; color: var(--orange); }
.testimonial-card--featured .testimonial-card__text  { grid-column: 1; color: rgba(255,255,255,0.88); font-size: 1.05rem; }
.testimonial-card--featured .testimonial-card__author{ grid-column: 1; border-top-color: rgba(255,255,255,0.14); }

.testimonial-card__stars { font-size: 0.95rem; color: var(--orange); letter-spacing: 0.08em; }
.testimonial-card__text  { font-size: 0.925rem; color: var(--text); line-height: 1.75; font-family: var(--font-serif); font-style: italic; flex: 1; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1.5px solid var(--grey-2);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  border: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.testimonial-card--featured .author-avatar { background: var(--orange); border-color: var(--orange-dark); }
.testimonial-card__author strong { display: block; font-size: 0.875rem; color: var(--black); font-weight: 700; }
.testimonial-card--featured .testimonial-card__author strong { color: var(--white); }
.testimonial-card__author span { font-size: 0.75rem; color: var(--text-3); }
.testimonial-card--featured .testimonial-card__author span { color: rgba(255,255,255,0.48); }

/* ── VALUE / COMPARISON ───────────────────────────────── */
/*
  Gradient: soft lavender-cream diagonal
*/
.value-prop {
  padding: var(--space-3xl) 0;
  background: linear-gradient(155deg, #f5f4ff 0%, #FAFAF7 50%, #fff9f5 100%);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.comparison__col {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
}
.comparison__col--us {
  background: var(--navy);
  border-color: var(--navy-dark);
  box-shadow: 6px 6px 0 var(--orange);
}
.comparison__col-header {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border);
}
.comparison__col--us .comparison__col-header { border-bottom-color: rgba(255,255,255,0.14); }
.comparison__col h3 { font-size: 0.88rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.comparison__col--us h3 { color: rgba(255,255,255,0.65); }
.comparison__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.comparison__col li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--grey-1);
  color: var(--text-3); line-height: 1.4;
}
.comparison__col li:last-child { border-bottom: none; }
.comparison__col--us li { color: rgba(255,255,255,0.78); border-bottom-color: rgba(255,255,255,0.08); }
.comparison__col li::before { content: '✕'; color: #dc2626; font-weight: 700; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.comparison__col--us li::before { content: '✓'; color: var(--orange); }

.comparison__vs { display: flex; align-items: center; justify-content: center; }
.comparison__vs span {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--white);
  border: var(--border-thick);
  border-radius: 50%;
  font-size: 0.85rem; font-weight: 800; color: var(--text-3);
  box-shadow: var(--shadow);
}

.value-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-orange);
}
.value-callout p { font-size: 1.05rem; color: var(--text); line-height: 1.65; font-family: var(--font-serif); }
.value-callout strong { color: var(--navy); font-family: var(--font-sans); }

/* ── LEAD MAGNET ──────────────────────────────────────── */
/*
  Gradient: white with faint orange warmth at bottom-right
*/
.lead-magnet {
  padding: var(--space-3xl) 0;
  border-top: var(--border);
  border-bottom: var(--border);
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse 70% 60% at 110% 110%, rgba(242,103,34,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at -10% 0%, rgba(33,42,98,0.05) 0%, transparent 60%);
}

.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: var(--space-2xl);
  align-items: start;
}
.lead-magnet__copy h2 { margin-bottom: var(--space-sm); }
.lead-magnet__copy > p { margin-bottom: var(--space-lg); }

.checklist-preview {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: 4px 4px 0 var(--navy);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.checklist-section { margin-bottom: var(--space-sm); }
.checklist-section__title {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.5rem;
}
.checklist-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-2);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--grey-2);
}
.checklist-item::before { flex-shrink: 0; font-size: 0.75rem; font-weight: 700; margin-top: 1px; }
.checklist-item--check::before { content: '✓'; color: #16a34a; }
.checklist-item--cross::before { content: '✕'; color: #dc2626; }
.checklist-preview__blur {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--cream));
  border-radius: 0 0 var(--radius) var(--radius);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 0.75rem;
}
.checklist-preview__blur span {
  font-size: 0.8rem; font-weight: 700; color: var(--navy);
  background: var(--white);
  border: var(--border); padding: 0.3rem 0.9rem;
  border-radius: 100px; box-shadow: var(--shadow);
}

.lm-bullets { display: flex; flex-direction: column; gap: 0.6rem; }
.lm-bullets li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* ── FORMS ────────────────────────────────────────────── */
.lead-form {
  background: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.lead-form--booking {
  background: var(--white);
  box-shadow: 6px 6px 0 var(--orange);
  border-color: var(--navy);
}
.lead-form__header { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-xs); }
.lead-form__header h3 { font-size: 1.1rem; font-weight: 800; color: var(--black); }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-2); letter-spacing: 0.04em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: box-shadow 0.15s, border-color 0.15s;
  width: 100%;
  box-shadow: 2px 2px 0 var(--black);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 3px 3px 0 var(--navy); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-4); }
.form-group select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.75rem; color: var(--grey-5); text-align: center; }

/* ── FAQ ──────────────────────────────────────────────── */
/*
  Gradient: soft cool blue tint
*/
.faq {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(150deg, #f0f2ff 0%, #f6f7ff 30%, #FAFAF7 70%, #fff9f5 100%);
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: var(--space-md);
}
.faq-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
}
.faq-item:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.faq-item h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--black);
  margin-bottom: var(--space-sm); line-height: 1.45;
  padding-bottom: var(--space-xs);
  border-bottom: 2.5px solid var(--grey-2);
}
.faq-item p { font-size: 0.875rem; }

/* ── BOOKING ──────────────────────────────────────────── */
/*
  Gradient: white with dual radial glows — orange top-right, navy bottom-left
*/
.booking {
  position: relative;
  padding: var(--space-3xl) 0;
  border-top: var(--border);
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse 65% 55% at 98% 5%, rgba(242,103,34,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 2% 100%, rgba(33,42,98,0.07) 0%, transparent 60%);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: var(--space-2xl);
  align-items: start;
}
.booking__copy h2 { margin-bottom: var(--space-md); }
.booking__copy > p { font-size: 1rem; margin-bottom: var(--space-lg); max-width: 480px; }

/* Calendar CTA card */
.calendar-cta-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--navy);
  border: var(--border-thick);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-orange);
  margin-bottom: var(--space-lg);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  color: var(--white);
  text-decoration: none;
}
.calendar-cta-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--orange); }
.calendar-cta-card:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--orange); }

.calendar-cta-card__icon {
  width: 52px; height: 52px;
  background: var(--orange);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calendar-cta-card__text { flex: 1; }
.calendar-cta-card__text strong {
  display: block;
  font-size: 1rem; font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.calendar-cta-card__text span {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}
.calendar-cta-card__arrow { color: rgba(255,255,255,0.5); flex-shrink: 0; }

.booking__reassurances { display: flex; flex-direction: column; gap: 0.75rem; }
.reassurance { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 600; color: var(--text); }

.form-or-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-align: center;
  margin-bottom: var(--space-sm);
  position: relative;
}
.form-or-label::before, .form-or-label::after {
  content: '';
  position: absolute;
  top: 50%; width: 30%; height: 1.5px;
  background: var(--grey-2);
}
.form-or-label::before { left: 0; }
.form-or-label::after  { right: 0; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 50%, #261858 100%);
  border-top: var(--border);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer__logo { display: block; margin-bottom: var(--space-md); }
.footer__logo img { filter: brightness(0) invert(1); }
.footer__brand p { font-size: 0.78rem; color: rgba(255,255,255,0.65); max-width: 320px; margin-bottom: var(--space-md); line-height: 1.6; }

.footer__linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all 0.15s;
}
.footer__linkedin:hover { background: var(--orange); border-color: var(--orange-dark); color: white; }

.footer__nav h4, .footer__contact h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-md);
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { font-size: 0.875rem; color: rgba(255,255,255,0.62); transition: color 0.15s; }
.footer__nav a:hover { color: var(--orange); }

.footer__contact p { font-size: 0.875rem; color: rgba(255,255,255,0.48); margin-bottom: 0.5rem; }
.footer__contact a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer__contact a:hover { color: var(--orange); }

.footer__contact .btn {
  margin-top: var(--space-sm);
  background: var(--orange);
  border-color: var(--orange-dark);
  color: white;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.footer__contact .btn:hover { background: var(--orange-dark); transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,0.25); }

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1.5px solid rgba(255,255,255,0.1);
  gap: var(--space-sm);
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer__creds { display: flex; align-items: center; justify-content: center; gap: 1.25rem; }
.footer__cred-logo { height: 28px; width: auto; object-fit: contain; display: block; opacity: 0.85; }
.footer__legal { display: flex; gap: var(--space-md); justify-self: end; }
.footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE — TABLET ≤1024px ─────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__graphic { max-width: 520px; }
  .about__grid { grid-template-columns: 280px 1fr; gap: var(--space-xl); }
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .service-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .service-card--featured .service-list-col { grid-column: 1; grid-row: auto; justify-content: flex-start; gap: var(--space-sm); }
  .results__grid { grid-template-columns: 1fr 1fr; }
  .results__grid .result-card:last-child { grid-column: span 2; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .comparison__vs { display: none; }
  .lead-magnet__inner { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; }
  .booking__form-col { max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .process__steps { flex-wrap: wrap; }
  .process-step { min-width: 200px; }
}

/* ── RESPONSIVE — MOBILE ≤768px ──────────────────────── */
@media (max-width: 768px) {
  :root { --space-xl: 2rem; --space-2xl: 2rem; --space-3xl: 2.5rem; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .btn--nav   { display: none; }
  .hero { padding-top: calc(var(--nav-height) + var(--space-lg)); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero-arch { min-height: 320px; width: 100%; margin-right: 0; }
  .pain__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image-frame { position: static; max-width: 300px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .results__grid { grid-template-columns: 1fr; }
  .results__grid .result-card:last-child { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .process__steps { flex-direction: column; }
  .process-step__connector { transform: rotate(90deg); align-self: flex-start; margin-left: 1.5rem; }
  .calendar-cta-card { flex-wrap: wrap; }
  .booking__inner { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE — MOBILE ≤480px ──────────────────────── */
@media (max-width: 480px) {
  .hero__stats { justify-content: flex-start; }
  .stat-pill { flex-direction: column; align-items: center; text-align: center; }
  .result-metrics { grid-template-columns: 1fr; gap: 0; }
  .result-metric { border-bottom: 1px solid var(--grey-2); }
  .result-metric:last-child { border-bottom: none; }
  .lead-form { padding: var(--space-md); }
  .hero__grid { gap: var(--space-lg); }
}

/* ============================================================
   CALENDAR MODAL
============================================================ */
.cal-modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(13, 17, 50, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.cal-modal--open { display: flex; }

.cal-modal__box {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--black);
  width: 100%; max-width: 560px;
  display: flex; flex-direction: column;
  animation: calModalIn 0.25s ease both;
  overflow: hidden;
}

@keyframes calModalIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cal-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); padding: 0.9rem 1.25rem;
  border-bottom: var(--border-thick);
  flex-shrink: 0;
}
.cal-modal__title {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 1rem; color: var(--white);
}
.cal-modal__close {
  background: var(--orange); border: 2.5px solid var(--black);
  border-radius: 6px; box-shadow: 3px 3px 0 var(--black);
  color: var(--white); font-size: 1.1rem; font-weight: 700;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.1s, box-shadow 0.1s;
}
.cal-modal__close:hover {
  transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--black);
}

/* Info panel body */
.cal-modal__body {
  padding: 2rem 2rem 0.5rem;
}
.cal-modal__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--text-2);
  margin-bottom: 1.5rem; line-height: 1.6;
  border-left: 4px solid var(--orange);
  padding-left: 1rem;
}
.cal-modal__checklist {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.cal-modal__checklist li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-family: var(--font-sans); font-size: 0.925rem;
  color: var(--text-2); line-height: 1.5;
}
.cal-modal__tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--navy); color: var(--white);
  border: 2px solid var(--black); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
}
.cal-modal__cta {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 0.9rem 1.5rem;
}
.cal-modal__note {
  font-family: var(--font-sans); font-size: 0.78rem;
  color: var(--grey-4); text-align: center;
  margin: 0.75rem 0 1.75rem;
}

@media (max-width: 600px) {
  .cal-modal { padding: 0.75rem; align-items: flex-end; }
  .cal-modal__box {
    max-width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -4px 0 var(--black);
  }
  .cal-modal__body { padding: 1.5rem 1.25rem 0.5rem; }
}

/* ── POLICY MODAL ──────────────────────────────────────── */
.policy-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,17,50,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  align-items: center; justify-content: center;
  padding: var(--space-md);
}
.policy-modal--open { display: flex; }
.policy-modal__box {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--black);
  width: 100%; max-width: 740px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: calModalIn 0.22s ease both;
}
.policy-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy);
  padding: 1rem 1.5rem;
  border-bottom: var(--border-thick);
  flex-shrink: 0;
}
.policy-modal__title {
  font-size: 1rem; font-weight: 800;
  color: var(--white); margin: 0;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}
.policy-modal__close {
  background: var(--orange);
  border: 2.5px solid var(--black);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--black);
  color: var(--white);
  font-size: 1.1rem; font-weight: 700;
  width: 36px; height: 36px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.1s, box-shadow 0.1s;
  flex-shrink: 0;
}
.policy-modal__close:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--black); }
.policy-modal__body {
  padding: 1.75rem 2rem;
  overflow-y: auto;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text);
}
.policy-modal__body h2 {
  font-size: 0.8rem; font-weight: 800;
  color: var(--navy);
  margin: 2rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--grey-2);
}
.policy-modal__body h2:first-child { margin-top: 0; }
.policy-modal__body p { margin-bottom: 0.8rem; color: var(--text-2); }
.policy-modal__body ol { padding-left: 1.4rem; margin-bottom: 0.8rem; }
.policy-modal__body ol li { margin-bottom: 0.5rem; color: var(--text-2); }
.policy-modal__body .policy-updated {
  font-size: 0.78rem; color: var(--text-3); font-style: italic;
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1.5px solid var(--grey-2);
}
@media (max-width: 600px) {
  .policy-modal { padding: 0.5rem; align-items: flex-end; }
  .policy-modal__box { max-width: 100%; max-height: 92vh; border-radius: var(--radius) var(--radius) 0 0; box-shadow: 0 -4px 0 var(--black); }
  .policy-modal__body { padding: 1.25rem; }
}

/* ============================================================
   COOKIE CONSENT SYSTEM (UK GDPR + PECR compliant)
============================================================ */

/* ── Banner ─────────────────────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9900;
  background: var(--white);
  border-top: var(--border-thick);
  box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.09);
}
.cookie-banner--visible { display: block; }

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: bannerSlideUp 0.3s ease both;
}
@keyframes bannerSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.cookie-banner__text  { flex: 1; min-width: 220px; }
.cookie-banner__title {
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.cookie-banner__desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.55;
}
.cookie-banner__link {
  color: var(--orange); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-banner__link:hover { color: var(--orange-dark); }
.cookie-banner__actions {
  display: flex; gap: 0.5rem;
  flex-wrap: wrap; align-items: center;
  flex-shrink: 0;
}

/* ── Shared cookie button styles ────────────────────────────── */
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 700; line-height: 1;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
  transition: box-shadow 0.12s ease, transform 0.12s ease;
}
.cookie-btn:hover  { box-shadow: 3px 3px 0 var(--black); transform: translate(-1px, -1px); }
.cookie-btn:active { box-shadow: none; transform: translate(0, 0); }
.cookie-btn--accept { background: var(--navy);  color: var(--white); }
.cookie-btn--reject { background: var(--white);  color: var(--navy); }
.cookie-btn--manage {
  background: transparent; color: var(--text-2); border-color: var(--grey-3); font-weight: 600;
}
.cookie-btn--manage:hover  {
  border-color: var(--navy); color: var(--navy);
  box-shadow: none; transform: none;
}

/* ── Preferences modal ──────────────────────────────────────── */
.cookie-pref-modal {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(13, 17, 50, 0.7);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.cookie-pref-modal--open { display: flex; }

.cookie-pref-modal__box {
  background: var(--white);
  border: var(--border-thick);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  width: 100%; max-width: 500px; max-height: 90vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: calModalIn 0.22s ease both; /* reuse existing keyframe */
}
.cookie-pref-modal__header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
  border-bottom: var(--border);
}
.cookie-pref-modal__title {
  font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 700;
  color: var(--white); margin: 0;
}
.cookie-pref-modal__close {
  background: var(--orange);
  border: 2px solid var(--black);
  color: var(--white);
  width: 30px; height: 30px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.12s, transform 0.12s;
}
.cookie-pref-modal__close:hover { box-shadow: 2px 2px 0 var(--black); transform: translate(-1px, -1px); }

.cookie-pref-modal__body {
  flex: 1; overflow-y: auto;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.cookie-pref-modal__intro {
  font-size: 0.8rem; line-height: 1.6;
  color: var(--text-2); margin-bottom: 0.15rem;
}
.cookie-pref-modal__link {
  color: var(--orange); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.cookie-pref-modal__footer {
  padding: 0.9rem 1.25rem;
  border-top: 2px solid var(--grey-2);
  background: var(--grey-1);
  display: flex; gap: 0.6rem; justify-content: flex-end;
  flex-shrink: 0;
}

/* ── Category cards ─────────────────────────────────────────── */
.cookie-cat {
  border: 2px solid var(--grey-2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}
.cookie-cat__row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1.25rem;
}
.cookie-cat__info { flex: 1; }
.cookie-cat__name {
  font-family: var(--font-sans);
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.2rem;
}
.cookie-cat__desc {
  font-size: 0.76rem; color: var(--text-3); line-height: 1.5;
}

/* ── Toggle switch ──────────────────────────────────────────── */
.cookie-toggle {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.25rem;
  cursor: pointer; flex-shrink: 0;
  padding-top: 1px; user-select: none;
}
.cookie-toggle input[type="checkbox"] {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap;
}
.cookie-toggle__track {
  display: block;
  width: 44px; height: 24px;
  border: 2px solid var(--black);
  border-radius: 100px;
  background: var(--grey-2);
  position: relative; transition: background 0.18s;
}
.cookie-toggle__track::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grey-4);
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  transition: transform 0.18s, background 0.18s;
}
.cookie-toggle input:checked ~ .cookie-toggle__track { background: var(--navy); }
.cookie-toggle input:checked ~ .cookie-toggle__track::after {
  transform: translateX(20px); background: var(--white);
}
.cookie-toggle:focus-within .cookie-toggle__track {
  outline: 2px solid var(--orange); outline-offset: 2px;
}
/* "Always on" variant (strictly necessary) */
.cookie-toggle--always-on {
  cursor: default; pointer-events: none;
}
.cookie-toggle--always-on .cookie-toggle__track {
  background: var(--navy); opacity: 0.55;
}
.cookie-toggle--always-on .cookie-toggle__track::after {
  transform: translateX(20px); background: var(--white);
}
.cookie-toggle__label {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-3); white-space: nowrap;
}

/* ── Floating "Cookie settings" button ──────────────────────── */
.cookie-settings-btn {
  display: none;
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 9800;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: var(--shadow);
  border-radius: 100px;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 700;
  color: var(--navy); cursor: pointer;
  align-items: center; gap: 0.35rem;
  letter-spacing: 0.02em;
  transition: box-shadow 0.12s, transform 0.12s;
  white-space: nowrap;
}
.cookie-settings-btn--visible { display: flex; }
.cookie-settings-btn:hover  { box-shadow: var(--shadow-lg); transform: translate(-1px, -1px); }
.cookie-settings-btn:active { box-shadow: none; transform: translate(0, 0); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column; align-items: stretch;
    gap: 0.75rem; padding: 1rem 1.25rem;
  }
  .cookie-banner__actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  }
  .cookie-banner__actions .cookie-btn--manage { grid-column: 1 / -1; }
  .cookie-btn { padding: 0.65rem 1rem; font-size: 0.8rem; }
  .cookie-pref-modal { padding: 0; align-items: flex-end; }
  .cookie-pref-modal__box {
    max-width: 100%; max-height: 88vh;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -4px 0 var(--black);
  }
  .cookie-settings-btn {
    bottom: 0.75rem; left: 0.75rem;
    font-size: 0.65rem; padding: 0.35rem 0.7rem;
  }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Touch devices: disable transform hover effects ─────────── */
@media (hover: none) {
  .pain-card:hover,
  .result-card:hover,
  .testimonial-card:hover,
  .testimonial-card--featured:hover,
  .faq-item:hover,
  .service-card:hover,
  .service-card--featured:hover,
  .btn--primary:hover,
  .btn--outline:hover,
  .btn--orange:hover,
  .calendar-cta-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
  .testimonial-card--featured:hover { box-shadow: 6px 6px 0 var(--orange); }
  .service-card--featured:hover     { box-shadow: 6px 6px 0 var(--orange); }
  .calendar-cta-card:hover          { box-shadow: var(--shadow-orange); }
}

/* ── Dark mode ──────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  .cookie-banner {
    background: #1c2256;
    border-top-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.5);
  }
  .cookie-banner__title { color: #e8ecff; }
  .cookie-banner__desc  { color: #a0aac4; }
  .cookie-btn--accept { background: var(--orange); border-color: rgba(255,255,255,0.25); }
  .cookie-btn--reject { background: #252d5c; color: #e8ecff; border-color: rgba(255,255,255,0.2); }
  .cookie-btn--manage { color: #a0aac4; border-color: rgba(255,255,255,0.15); }
  .cookie-btn--manage:hover { color: #e8ecff; border-color: rgba(255,255,255,0.4); box-shadow: none; transform: none; }

  .cookie-pref-modal { background: rgba(0, 0, 0, 0.78); }
  .cookie-pref-modal__box { background: #1c2256; border-color: rgba(255,255,255,0.15); }
  .cookie-pref-modal__intro { color: #a0aac4; }
  .cookie-pref-modal__footer { background: #151b47; border-top-color: rgba(255,255,255,0.1); }

  .cookie-cat { background: #20285a; border-color: rgba(255,255,255,0.1); }
  .cookie-cat__name { color: #e8ecff; }
  .cookie-cat__desc { color: #8090b0; }

  .cookie-toggle__track { background: #2a3470; border-color: rgba(255,255,255,0.2); }
  .cookie-toggle__track::after { background: #6070a0; border-color: rgba(255,255,255,0.15); }

  .cookie-settings-btn {
    background: #1c2256; color: #e8ecff;
    border-color: rgba(255,255,255,0.2);
    box-shadow: 3px 3px 0 rgba(255,255,255,0.08);
  }
}
