/* ============================================================
   APEXLOCAL v3 — styles.css
   Palette: #0B0D12 bg / #00E5B0 accent / #FFFFFF text
   Fonts: DM Serif Display (headings) + DM Sans (body)
   ============================================================ */

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

/* ---- TOKENS ----------------------------------------------- */
:root {
  --bg:          #0B0D12;
  --bg-2:        #0E1016;
  --surface:     #131620;
  --surface-2:   #191d2b;
  --surface-3:   #1f2334;

  --border:      rgba(255,255,255,0.055);
  --border-2:    rgba(255,255,255,0.10);
  --border-3:    rgba(255,255,255,0.16);

  --accent:      #00E5B0;
  --accent-hover:#00CFA0;
  --accent-dim:  rgba(0,229,176,0.08);
  --accent-glow: rgba(0,229,176,0.14);

  --text:        #FFFFFF;
  --text-2:      #96A0B0;
  --text-3:      #4E5668;

  --font-head:   'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --section-gap: clamp(80px, 9vw, 128px);
  --max-w:       1220px;
  --r:           8px;
  --r-lg:        14px;
  --r-xl:        18px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- CONTAINER -------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(22px, 5vw, 64px);
}

/* ---- TYPE ------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 400;
}

h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-accent { color: var(--accent); }

/* ---- EYEBROW / LABEL -------------------------------------- */
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 1;
}

.eyebrow__dot {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: eyebrowPulse 2.4s cubic-bezier(0.66, 0, 0, 1) infinite;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

/* ---- SECTION HEADER --------------------------------------- */
.section-header { margin-bottom: 64px; }

.section-title {
  font-size: clamp(30px, 4.6vw, 62px);
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 740px;
  line-height: 1.08;
}

.section-intro {
  font-size: clamp(15px, 1.45vw, 17px);
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.94;
  margin-bottom: 0;
}

/* ---- SECTION PADDING -------------------------------------- */
.section { padding-block: var(--section-gap); position: relative; }
.section + .section { border-top: none; }

/* Soft gradient divider */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(22px, 5vw, 64px);
  right: clamp(22px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 18%,
    rgba(255,255,255,0.11) 50%,
    rgba(255,255,255,0.06) 82%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Concept / transformation: teal-tinted divider */
.section.concept::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,229,176,0.06) 18%,
    rgba(0,229,176,0.16) 50%,
    rgba(0,229,176,0.06) 82%,
    transparent 100%
  );
}

/* ---- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
  line-height: 1;
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn--accent {
  background: var(--accent);
  color: #080B10;
  font-weight: 700;
  box-shadow: 0 1px 10px rgba(0,229,176,0.16);
}
.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,229,176,0.28), 0 0 0 4px rgba(0,229,176,0.06);
}
.btn--accent:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--border-3);
  color: var(--text);
  transform: translateY(-1px);
}

.btn--lg { padding: 14px 30px; font-size: 14.5px; }
.btn--xl { padding: 16px 36px; font-size: 15.5px; }

/* ---- TYPOGRAPHY REFINEMENTS ------------------------------ */
.problem-card p,
.service-card__desc,
.process-card__body p,
.sol-item__text p {
  line-height: 1.76;
  color: var(--text-2);
}

.enquiry-type__desc { line-height: 1.78; }


/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(11,13,18,0.93);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.logo__mark {
  display: block;
  width: 22px; height: 22px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.logo__img {
  display: block;
  width: 28px; height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav__link:hover { color: #FFFFFF; }
.nav__link.active,
.nav__link--active { color: var(--accent) !important; opacity: 1; }

.header__cta {
  margin-left: 16px;
  font-size: 13.5px;
  padding: 10px 20px;
  min-height: 40px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  min-width: 44px; min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: rgba(11,13,18,0.98);
  backdrop-filter: blur(28px);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 36px 24px 56px;
}

.mobile-nav__link {
  display: block;
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.mobile-nav__link:hover { color: var(--accent); }
.mobile-nav__cta { margin-top: 36px; width: 100%; font-size: 15.5px; }


/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg,
    rgba(0,229,176,0.95) 0%,
    rgba(0,229,176,0.65) 100%
  );
  z-index: 200;
  pointer-events: none;
  will-change: width;
  box-shadow: 0 0 6px rgba(0,229,176,0.3);
}


/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal--delay-1.visible { transition-delay: 0.08s; }
.js .reveal--delay-2.visible { transition-delay: 0.16s; }
.js .reveal--delay-3.visible { transition-delay: 0.24s; }


/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: calc(68px + 80px);
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 15%, transparent 80%);
  pointer-events: none;
  transform: translateY(calc(var(--hero-scroll, 0px) * -0.09));
}

.hero__glow {
  position: absolute;
  top: -60px; right: -180px;
  transform: translateY(calc(var(--hero-scroll, 0px) * -0.20));
  width: 860px; height: 860px;
  background: radial-gradient(ellipse 60% 70% at 65% 42%, rgba(0,229,176,0.16) 0%, rgba(0,229,176,0.05) 42%, transparent 68%);
  pointer-events: none;
}

.hero__glow-2 {
  position: absolute;
  bottom: -60px; right: 8%;
  width: 660px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,229,176,0.07) 0%, transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy { max-width: 560px; }

.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.hero__h1-em {
  font-style: italic;
  color: var(--accent);
  background: linear-gradient(135deg, #00E5B0 0%, #00D4A8 55%, #00C49C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(15.5px, 1.5vw, 17px);
  color: var(--text-2);
  line-height: 1.84;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 500;
}

.trust-item__icon {
  width: 13px; height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero__visual { display: flex; justify-content: flex-end; }


/* ============================================================
   HERO AUDIT SCENE
============================================================ */
.audit-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
  animation: auditSceneFloat 7s ease-in-out infinite;
}

@keyframes auditSceneFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.audit-browser {
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  background: #0A0C11;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 32px 80px rgba(0,0,0,0.55),
    0 10px 28px rgba(0,0,0,0.35);
}

.audit-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: #0D1018;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  min-height: 40px;
}

.audit-chrome__dots { display: flex; gap: 5px; flex-shrink: 0; }

.audit-chrome__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.audit-chrome__bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 5px;
  padding: 5px 10px;
  overflow: hidden;
}

.audit-chrome__spinner {
  color: var(--accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: auditSpin 1.5s linear infinite;
}

@keyframes auditSpin { to { transform: rotate(360deg); } }

.audit-chrome__status {
  font-size: 10px;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.015em;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.audit-chrome__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,130,95,0.9);
  background: rgba(255,80,50,0.09);
  border: 1px solid rgba(255,100,70,0.22);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.audit-chrome__badge.is-visible { opacity: 1; transform: scale(1); }

.audit-content {
  position: relative;
  background: #11141C;
  overflow: hidden;
}

.audit-scanline {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 70px;
  pointer-events: none;
  z-index: 20;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,229,176,0.03) 30%,
    rgba(0,229,176,0.08) 50%,
    rgba(0,229,176,0.03) 70%,
    transparent 100%
  );
  opacity: 0;
  animation: auditScanMove 2.1s cubic-bezier(0.33, 0, 0.66, 1) forwards;
  animation-delay: 0.15s;
}

.audit-scanline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: calc(50% - 0.75px);
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,229,176,0.65) 12%,
    rgba(0,229,176,1) 50%,
    rgba(0,229,176,0.65) 88%,
    transparent 100%
  );
}

@keyframes auditScanMove {
  0%   { top: -70px; opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.am-zone {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.am-zone:last-child { border-bottom: none; }

.am-zone--nav { padding: 10px 14px; }

.am-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.am-nav__logo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.am-logo-sq {
  width: 13px; height: 13px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  flex-shrink: 0;
}

.am-logo-bar {
  width: 42px; height: 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.am-nav__links { display: flex; align-items: center; gap: 8px; }

.am-navlink { height: 6px; width: 24px; background: rgba(255,255,255,0.07); border-radius: 2px; }
.am-navlink--sm  { width: 18px; }
.am-navlink--lg  { width: 30px; }
.am-navlink--xl  { width: 40px; }

.am-zone--hero { display: flex; height: 104px; }

.am-hero-img {
  width: 42%;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.am-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.025) 0%, transparent 55%);
}

.am-hero-text {
  flex: 1;
  padding: 13px 13px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.am-h { height: 9px; background: rgba(255,255,255,0.12); border-radius: 2px; width: 90%; }
.am-h--short { width: 68%; }
.am-p { height: 5.5px; background: rgba(255,255,255,0.055); border-radius: 2px; width: 85%; }
.am-p--short { width: 60%; }

.am-weak-link {
  font-size: 8px;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.2);
  text-decoration: underline;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-top: 4px;
}

.am-zone--trust { padding: 9px 14px; }

.am-trust-strip { display: flex; gap: 6px; }

.am-trust-block {
  flex: 1;
  height: 26px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 3px;
}
.am-trust-block--wide { flex: 2; }

.am-zone--body { padding: 10px 14px 12px; }

.am-body-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 9px;
}

.am-col-block {
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.am-col-img { height: 28px; background: rgba(255,255,255,0.04); }
.am-col-img--b { background: rgba(255,255,255,0.03); }

.am-col-lines { padding: 5px 6px; display: flex; flex-direction: column; gap: 4px; }

.am-buried-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.am-buried-bar { width: 65px; height: 5.5px; background: rgba(255,255,255,0.05); border-radius: 2px; }

.am-buried-btn {
  font-size: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.audit-overlay {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.audit-overlay.is-visible {
  opacity: 1;
  border-color: rgba(255,95,65,0.18);
  background: rgba(255,70,40,0.035);
  animation: auditOverlayPulse 3s ease-in-out infinite;
}

@keyframes auditOverlayPulse {
  0%, 100% { background: rgba(255,70,40,0.025); }
  50%       { background: rgba(255,70,40,0.055); }
}

.audit-pill {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) translateX(8px);
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: rgba(255,145,115,0.9);
  background: rgba(20,10,7,0.9);
  border: 1px solid rgba(255,95,65,0.22);
  padding: 4px 9px 4px 6px;
  border-radius: 5px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.audit-pill--br { top: auto; bottom: 10px; transform: translateX(8px); }

.audit-pill.is-visible { opacity: 1; transform: translateY(-50%) translateX(0); }
.audit-pill--br.is-visible { opacity: 1; transform: translateX(0); }

.audit-pill__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,115,75,0.95);
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(255,95,55,0.6);
  animation: auditDotPulse 2s ease-in-out infinite;
}

@keyframes auditDotPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(255,95,55,0.5); }
  50%       { box-shadow: 0 0 8px rgba(255,95,55,0.9); }
}

.audit-score-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
}

.audit-score-card.is-visible { opacity: 1; transform: translateY(0); }

.audit-score-card__left { display: flex; align-items: baseline; gap: 2px; flex-shrink: 0; }

.audit-score-card__num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 400;
  color: rgba(255,130,95,0.95);
  line-height: 1;
  letter-spacing: -0.02em;
}

.audit-score-card__denom { font-family: var(--font-sans); font-size: 14px; color: var(--text-3); }

.audit-score-card__right { flex: 1; min-width: 0; }

.audit-score-card__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.audit-score-card__bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 7px;
}

.audit-score-card__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,140,100,0.85) 0%, rgba(255,75,50,1) 100%);
  border-radius: 2px;
  transition: width 1.1s var(--ease);
}

.audit-score-card__fill.is-filled { width: 34%; }

.audit-score-card__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 880px) {
  .audit-scene { max-width: 100%; }
}


/* ============================================================
   SITE PREVIEW (legacy — kept for safety)
============================================================ */
.site-preview {
  width: 100%;
  max-width: 460px;
  position: relative;
  filter: drop-shadow(0 48px 80px rgba(0,0,0,0.6));
}

.site-preview__chrome {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chrome__dots { display: flex; gap: 5px; }
.chrome__dots span { width: 9px; height: 9px; border-radius: 50%; }
.chrome__dots span:nth-child(1) { background: #FF5F57; }
.chrome__dots span:nth-child(2) { background: #FEBC2E; }
.chrome__dots span:nth-child(3) { background: #28C840; }

.chrome__bar {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  color: var(--text-3);
  text-align: center;
  margin-left: 4px;
  font-family: var(--font-sans);
}

.site-preview__body {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid var(--border);
}

.mock-logo-bar { width: 64px; height: 9px; background: var(--text-3); border-radius: 3px; opacity: 0.6; }

.mock-cta-pill {
  font-size: 10px;
  font-weight: 700;
  color: #080B10;
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 4px;
  font-family: var(--font-sans);
}

.mock-hero-area {
  padding: 20px 14px 14px;
  background: linear-gradient(160deg, rgba(0,229,176,0.04) 0%, transparent 55%);
  border-bottom: 1px solid var(--border);
}

.mock-badge {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.18);
  padding: 3px 7px;
  border-radius: 3px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.mock-h1-line { height: 11px; background: rgba(255,255,255,0.13); border-radius: 3px; margin-bottom: 5px; }
.mock-h1-line--short { width: 72%; }

.mock-cta-row { display: flex; gap: 6px; margin-top: 12px; }

.mock-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 4px;
  font-family: var(--font-sans);
}

.mock-btn--primary { background: var(--accent); color: #080B10; }
.mock-btn--ghost { border: 1px solid var(--border-2); color: var(--text-2); }

.mock-trust-strip { padding: 9px 14px; border-bottom: 1px solid var(--border); }

.mock-stars { display: flex; align-items: center; gap: 2px; }

.mock-review-count { font-size: 9.5px; color: var(--text-3); margin-left: 5px; font-family: var(--font-sans); }

.mock-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 11px 14px 14px; }

.mock-menu-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.mock-menu-img { height: 40px; background: linear-gradient(135deg, var(--surface-3) 0%, rgba(0,229,176,0.07) 100%); }
.mock-menu-img--2 { background: linear-gradient(135deg, var(--surface-3) 0%, rgba(90,100,200,0.07) 100%); }

.mock-menu-info { padding: 6px 7px; }
.mock-menu-name { height: 6px; background: rgba(255,255,255,0.09); border-radius: 2px; margin-bottom: 4px; }
.mock-menu-price { height: 5px; background: rgba(0,229,176,0.18); border-radius: 2px; width: 40%; }

.mock-phone {
  position: absolute;
  bottom: -24px; right: -32px;
  width: 104px;
  background: var(--surface-2);
  border: 1.5px solid var(--border-3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
}

.mock-phone__notch { width: 28px; height: 5px; background: var(--bg); border-radius: 0 0 5px 5px; margin: 0 auto; }
.mock-phone__screen { padding: 6px; }

.mock-phone__top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 5px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 5px;
}

.mock-phone__logo { width: 26px; height: 5px; background: var(--text-3); border-radius: 2px; opacity: 0.6; }

.mock-phone__cta {
  font-size: 7.5px;
  font-weight: 700;
  color: #080B10;
  background: var(--accent);
  padding: 2px 5px;
  border-radius: 3px;
  font-family: var(--font-sans);
}

.mock-phone__hero { padding-bottom: 5px; border-bottom: 1px solid var(--border); }

.mock-phone__line { height: 5px; background: rgba(255,255,255,0.11); border-radius: 2px; margin-bottom: 3px; }
.mock-phone__line--short { width: 68%; }

.mock-phone__btn {
  margin-top: 7px;
  text-align: center;
  font-size: 7.5px;
  font-weight: 700;
  color: #080B10;
  background: var(--accent);
  padding: 5px 0;
  border-radius: 4px;
  font-family: var(--font-sans);
}

.mock-phone__call-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 7px;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 0;
  font-family: var(--font-sans);
}


/* ============================================================
   PROBLEM
============================================================ */
.problem { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.problem-card {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  transition: background 0.3s;
}
.problem-card:hover { background: var(--surface); }

.problem-card__num {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.45;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.problem-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.78; }


/* ============================================================
   SOLUTION
============================================================ */
.solution { background: var(--bg-2); }

.solution__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 88px;
  align-items: start;
}

.solution__left { position: sticky; top: 96px; }
.solution__left .section-title { font-size: clamp(28px, 3.6vw, 44px); }

.solution__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.sol-item {
  display: flex;
  gap: 18px;
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.25s;
}
.sol-item:hover { background: var(--surface-2); }

.sol-item:nth-child(odd) { border-right: 1px solid var(--border); }
.sol-item:nth-last-child(-n+2) { border-bottom: none; }
.sol-item:nth-last-child(1):nth-child(odd) { border-right: 1px solid var(--border); }

.sol-item__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}

.sol-item__text h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.sol-item__text p { font-size: 13px; color: var(--text-2); line-height: 1.68; }


/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,176,0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  border-color: rgba(0,229,176,0.22);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,229,176,0.07);
}
.service-card:hover::before { opacity: 1; }

.service-card__num {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}

.service-card__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.022em;
  margin-bottom: 14px;
}

.service-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.82; margin-bottom: 28px; }

.service-card__outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.service-card__outcomes li {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.service-card__outcomes li::before {
  content: '';
  flex-shrink: 0;
  width: 3.5px; height: 3.5px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  opacity: 0.7;
}

.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
  min-height: 44px;
  opacity: 0.8;
}
.service-card__link:hover { opacity: 1; }


/* ============================================================
   CONCEPT STUDY (wireframe layout)
============================================================ */
.concept { background: var(--bg-2); }

.concept-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.concept-panel { background: var(--surface); }
.concept-panel--after { background: var(--surface); }

.concept-panel__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.concept-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  font-family: var(--font-sans);
}

.concept-label--bad { background: rgba(255,80,80,0.08); color: #FF7575; border: 1px solid rgba(255,80,80,0.18); }
.concept-label--good { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,229,176,0.18); }

.concept-panel__type { font-size: 12px; color: var(--text-3); font-family: var(--font-sans); }

.concept-mockup { padding: 18px; border-bottom: 1px solid var(--border); }
.concept-mockup--bad { background: #090a0f; }

.cm-nav-bad {
  height: 34px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 4px 4px 0 0;
}
.cm-nav-bad__brand { width: 48px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 2px; }

.cm-hero-bad { padding: 16px 11px; background: rgba(255,255,255,0.015); border-bottom: 1px solid rgba(255,255,255,0.025); }
.cm-hero-bad__title { height: 9px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-bottom: 4px; width: 80%; }
.cm-hero-bad__sub { height: 6px; background: rgba(255,255,255,0.035); border-radius: 2px; width: 55%; }

.cm-body-bad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 10px 11px; }
.cm-col-bad { height: 48px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.03); border-radius: 3px; }
.cm-footer-bad { height: 22px; background: rgba(255,255,255,0.015); }

.concept-mockup--good { background: var(--surface-2); }

.cm-nav-good {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 11px;
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid var(--border);
}
.cm-nav-good__brand { width: 48px; height: 6px; background: var(--text-3); border-radius: 2px; opacity: 0.6; }
.cm-nav-good__cta { font-size: 8.5px; font-weight: 700; color: #080B10; background: var(--accent); padding: 3px 7px; border-radius: 3px; font-family: var(--font-sans); }

.cm-hero-good { padding: 16px 11px; background: linear-gradient(135deg, rgba(0,229,176,0.05) 0%, transparent 65%); border-bottom: 1px solid var(--border); }
.cm-hero-good__badge { display: inline-block; font-size: 7.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(0,229,176,0.18); padding: 2px 5px; border-radius: 3px; margin-bottom: 7px; font-family: var(--font-sans); }
.cm-hero-good__title { height: 9px; background: rgba(255,255,255,0.14); border-radius: 2px; margin-bottom: 3px; }
.cm-hero-good__sub { height: 6px; background: rgba(255,255,255,0.08); border-radius: 2px; width: 70%; margin-bottom: 9px; }

.cm-hero-good__btns { display: flex; gap: 5px; }
.cm-btn-primary { font-size: 8.5px; font-weight: 700; color: #080B10; background: var(--accent); padding: 4px 9px; border-radius: 3px; display: flex; align-items: center; gap: 3px; font-family: var(--font-sans); }
.cm-btn-ghost { font-size: 8.5px; font-weight: 600; color: var(--text-2); border: 1px solid var(--border-2); padding: 4px 7px; border-radius: 3px; display: flex; align-items: center; gap: 3px; font-family: var(--font-sans); }

.cm-reviews-good { display: flex; align-items: center; gap: 7px; padding: 7px 11px; border-bottom: 1px solid var(--border); }
.cm-stars { font-size: 9px; color: var(--accent); }
.cm-review-line { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 2px; }

.cm-menu-good { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 9px 11px; }
.cm-menu-item { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.cm-menu-img { height: 32px; }
.cm-menu-img--1 { background: linear-gradient(135deg, var(--surface-3) 0%, rgba(0,229,176,0.09) 100%); }
.cm-menu-img--2 { background: linear-gradient(135deg, var(--surface-3) 0%, rgba(80,100,255,0.09) 100%); }
.cm-menu-detail { padding: 5px 6px; }
.cm-menu-name { height: 5px; background: rgba(255,255,255,0.09); border-radius: 2px; margin-bottom: 3px; }
.cm-menu-price { height: 4px; background: var(--accent-dim); border-radius: 2px; width: 35%; }

.concept-issues, .concept-wins { padding: 20px 24px; display: flex; flex-direction: column; gap: 9px; }

.concept-issues li, .concept-wins li {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-2);
  align-items: flex-start;
  line-height: 1.52;
  font-family: var(--font-sans);
}

.issue-icon { color: #FF7070; font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 11px; }
.win-icon   { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 11px; }

.concept-divider {
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  min-height: 100%;
}

.concept-arrow {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #080B10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.concept-note {
  text-align: center;
  margin-top: 28px;
  font-size: 11.5px;
  color: var(--text-3);
  font-style: italic;
  font-family: var(--font-sans);
}


/* ============================================================
   TRANSFORMATION SHOWCASE — screenshot panels (tf-*)
============================================================ */
.tf-layout {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: start;
}

.tf-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.tf-panel--after {
  border-color: rgba(0,229,176,0.12);
  box-shadow: 0 0 0 1px rgba(0,229,176,0.06), 0 24px 64px rgba(0,0,0,0.32);
}

.tf-panel__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.tf-panel__type { font-size: 12px; color: var(--text-3); font-family: var(--font-sans); }

.tf-screen { position: relative; overflow: hidden; }

.tf-browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #0A0C11;
  border-bottom: 1px solid rgba(255,255,255,0.045);
}

.tf-browser-chrome--after { background: #0D1018; border-bottom-color: rgba(0,229,176,0.08); }

.tf-dots { display: flex; gap: 4px; flex-shrink: 0; }
.tf-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.08); }

.tf-url { font-size: 11px; color: var(--text-3); font-family: var(--font-sans); letter-spacing: 0.01em; }
.tf-url--after { color: rgba(0,229,176,0.5); }

.tf-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.tf-img-wrap--before { background: #080709; }
.tf-img-wrap--after  { background: var(--surface-2); }

.tf-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-img-wrap--before .tf-screenshot { opacity: 0.72; filter: saturate(0.45) brightness(0.85); }

.tf-img-overlay--before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(8,7,9,0.55) 100%);
  pointer-events: none;
}

.tf-glow-pulse {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, rgba(0,229,176,0.6) 65%, transparent 100%);
  opacity: 0.55;
  animation: tfGlowPulse 3.2s ease-in-out infinite;
}

@keyframes tfGlowPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.75; }
}

.tf-panel:hover .tf-screenshot { transform: scale(1.02) translateY(-1%); }
.tf-img-wrap--before:hover .tf-screenshot { opacity: 0.85; filter: saturate(0.55) brightness(0.9); }

.tf-list { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }

.tf-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.52;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.tf-list--good .tf-item { transform: translateX(8px); }

.tf-item.revealed { opacity: 1; transform: translateX(0); }

.tf-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.tf-mark--bad  { background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.2); color: #FF7070; }
.tf-mark--good { background: var(--accent-dim); border: 1px solid rgba(0,229,176,0.2); color: var(--accent); }

.tf-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 72px;
  gap: 8px;
}

.tf-divider__line { width: 1px; flex: 1; background: var(--border); max-height: 60px; }

.tf-arrow {
  width: 36px; height: 36px;
  background: var(--accent);
  color: #080B10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(0,229,176,0.08);
  animation: tfArrowPulse 2.4s ease-in-out infinite;
}

@keyframes tfArrowPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0,229,176,0.08); }
  50%       { box-shadow: 0 0 0 10px rgba(0,229,176,0.04); }
}

@media (max-width: 900px) {
  .tf-layout { grid-template-columns: 1fr; gap: 0; }
  .tf-divider { flex-direction: row; padding-top: 0; padding: 16px 0; gap: 12px; }
  .tf-divider__line { flex: 1; height: 1px; width: auto; max-height: none; }
  .tf-arrow { transform: rotate(90deg); }
  .tf-panel--before { border-radius: var(--r-xl) var(--r-xl) var(--r) var(--r); }
  .tf-panel--after  { border-radius: var(--r) var(--r) var(--r-xl) var(--r-xl); }
  .tf-item { transform: translateY(6px); }
  .tf-list--good .tf-item { transform: translateY(6px); }
  .tf-item.revealed { transform: translateY(0); }
}


/* ============================================================
   TRANSFORMATION SLIDER v2 — Homepage (tf2-*)
   Do not mix with cs-slider (Results page).
============================================================ */
.tf2-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 40px 100px rgba(0,0,0,0.55),
    0 12px 32px rgba(0,0,0,0.35);
  margin-bottom: 56px;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  background: var(--bg);
}

.tf2-frame-glow {
  position: absolute;
  top: 0; right: 0;
  left: calc(var(--split, 50%));
  height: 2px;
  background: linear-gradient(90deg,
    rgba(0,229,176,0.5) 0%,
    rgba(0,229,176,0.85) 40%,
    rgba(0,229,176,0.85) 60%,
    rgba(0,229,176,0.4) 100%
  );
  z-index: 12;
  pointer-events: none;
  animation: tf2GlowPulse 3s ease-in-out infinite;
  transition: left 0.04s linear;
}

@keyframes tf2GlowPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 1; }
}

.tf2-slider {
  position: relative;
  width: 100%;
  height: clamp(260px, 80vw, 520px);
  overflow: hidden;
  --split: 50%;
  background: var(--bg);
  display: block;
}

.tf2-after { position: absolute; inset: 0; pointer-events: none; }

.tf2-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(1.05) saturate(1.1);
}

.tf2-before { position: absolute; inset: 0; pointer-events: none; will-change: clip-path; }

.tf2-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.38) brightness(0.80) contrast(0.92);
}

.tf2-label {
  position: absolute;
  top: 20px;
  z-index: 8;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tf2-label--before { left: 18px; background: rgba(8,11,16,0.55); color: rgba(255,255,255,0.62); border: 1px solid rgba(255,255,255,0.1); }
.tf2-label--after  { right: 18px; background: rgba(0,229,176,0.1); color: var(--accent); border: 1px solid rgba(0,229,176,0.22); }

.tf2-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split);
  transform: translateX(-50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  will-change: left;
}

.tf2-handle__track {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.15) 100%);
  min-height: 16px;
}

.tf2-handle__grip {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #080B10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 5px rgba(0,229,176,0.12),
    0 0 24px rgba(0,229,176,0.4),
    0 6px 16px rgba(0,0,0,0.5);
  animation: tf2GripGlow 2.8s ease-in-out infinite;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

@keyframes tf2GripGlow {
  0%, 100% { box-shadow: 0 0 0 5px rgba(0,229,176,0.12), 0 0 24px rgba(0,229,176,0.35), 0 6px 16px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 0 9px rgba(0,229,176,0.07), 0 0 40px rgba(0,229,176,0.55), 0 6px 16px rgba(0,0,0,0.5); }
}

.tf2-stage.is-dragging .tf2-handle__grip {
  transform: scale(1.12);
  animation-play-state: paused;
  box-shadow: 0 0 0 10px rgba(0,229,176,0.06), 0 0 48px rgba(0,229,176,0.65), 0 6px 20px rgba(0,0,0,0.55);
}

.tf2-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.62);
  background: rgba(8,11,16,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 15px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.7s var(--ease);
  animation: tf2HintBob 2.4s ease-in-out infinite;
}

.tf2-hint.is-hidden { opacity: 0; pointer-events: none; }

@keyframes tf2HintBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-3px); }
}

.tf2-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.tf2-callout {
  border-radius: var(--r-xl);
  padding: 28px 28px 26px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.tf2-callout--after {
  border-color: rgba(0,229,176,0.13);
  box-shadow: 0 0 0 1px rgba(0,229,176,0.04), 0 16px 48px rgba(0,0,0,0.22);
}

.tf2-callout--after::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,176,0.5) 30%, rgba(0,229,176,0.5) 70%, transparent 100%);
}

.tf2-callout__header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }

.tf2-callout__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
}

.tf2-callout__badge--before { background: rgba(255,80,80,0.07); color: #FF7070; border: 1px solid rgba(255,80,80,0.18); }
.tf2-callout__badge--after  { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,229,176,0.18); }

.tf2-callout__context { font-family: var(--font-sans); font-size: 12px; color: var(--text-3); }

.tf2-callout__list { display: flex; flex-direction: column; gap: 11px; }

.tf2-callout__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}

.tf2-callout__list li:nth-child(1) { transition-delay: 0.00s; }
.tf2-callout__list li:nth-child(2) { transition-delay: 0.07s; }
.tf2-callout__list li:nth-child(3) { transition-delay: 0.14s; }
.tf2-callout__list li:nth-child(4) { transition-delay: 0.21s; }
.tf2-callout__list li:nth-child(5) { transition-delay: 0.28s; }

.tf2-callout.is-revealed .tf2-callout__list li { opacity: 1; transform: translateY(0); }

.tf2-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.tf2-mark--bad  { background: rgba(255,80,80,0.07); border: 1px solid rgba(255,80,80,0.2); color: #FF7070; }
.tf2-mark--good { background: var(--accent-dim); border: 1px solid rgba(0,229,176,0.2); color: var(--accent); }

/* tf2 responsive */
@media (max-width: 840px) {
  .tf2-callouts { grid-template-columns: 1fr; gap: 14px; }
  .tf2-callout { padding: 22px 22px 20px; }
  .tf2-handle__grip { width: 40px; height: 40px; }
  .tf2-label { top: 14px; font-size: 9.5px; padding: 4px 10px; }
}

@media (max-width: 520px) {
  .tf2-stage { border-radius: 14px; }
  .tf2-hint  { font-size: 9.5px; padding: 6px 12px; gap: 6px; }
}


/* ============================================================
   PROCESS
============================================================ */
.process { background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.process-card {
  padding: 36px 28px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.process-card:last-child { border-right: none; }
.process-card:hover { background: var(--surface-2); }

.process-card__step { margin-bottom: 26px; }

.process-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.2);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
}
.process-card:hover .process-card__num { background: var(--accent); color: #080B10; box-shadow: 0 0 14px var(--accent-glow); }

.process-card__body h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.process-card__body p  { font-size: 13.5px; color: var(--text-2); line-height: 1.72; }


/* ============================================================
   ENQUIRY
============================================================ */
.enquiry { background: var(--bg-2); }

.enquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.enquiry-type {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.enquiry-type::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,176,0.12), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.enquiry-type:hover { border-color: rgba(0,229,176,0.14); transform: translateY(-2px); }
.enquiry-type:hover::before { opacity: 1; }

.enquiry-type__icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 26px;
}

.enquiry-type__title { font-family: var(--font-sans); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.3; }
.enquiry-type__desc  { font-size: 14px; color: var(--text-2); line-height: 1.78; }

.enquiry-cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  flex-wrap: wrap;
}

.enquiry-cta__body { flex: 1; min-width: 260px; }

.enquiry-cta__title { font-family: var(--font-sans); font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: -0.022em; margin-bottom: 7px; line-height: 1.3; }
.enquiry-cta__sub   { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }

.enquiry-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }


/* ============================================================
   CTA BAND — homepage global
============================================================ */
.cta-band { background: var(--bg); }

.cta-box {
  text-align: center;
  position: relative;
  max-width: 700px;
  margin-inline: auto;
  padding: 80px 64px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.cta-box__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,176,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,176,0.38) 25%, rgba(0,229,176,0.38) 75%, transparent 100%);
  z-index: 1;
}

.cta-box .section-label { justify-content: center; }

.cta-box__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.08;
}

.cta-box__sub {
  font-size: 15.5px;
  color: var(--text-2);
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 44px;
  line-height: 1.84;
  position: relative;
}

.cta-box__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-box__reassurance { font-size: 12px; color: var(--text-3); letter-spacing: 0.01em; }


/* ============================================================
   FOOTER — simplified, premium
============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
}

.footer__brand {
  flex: 0 0 auto;
  max-width: 320px;
}

.footer__tagline {
  font-size: 13.5px;
  color: var(--text-3);
  margin-top: 14px;
  line-height: 1.72;
  max-width: 280px;
}

.footer__sub,
.footer__domain {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 6px;
  opacity: 0.65;
}

.footer__domain {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--accent);
  opacity: 0.7;
}

/* Right side: legal links */
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 6px;
  flex-shrink: 0;
}

.footer__legal a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
  transition: color 0.2s;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer__legal a:hover { color: var(--accent); }

.footer__bottom { border-top: 1px solid var(--border); padding-block: 20px; }
.footer__bottom p { font-size: 12px; color: var(--text-3); opacity: 0.65; line-height: 1.6; }
.footer__bottom a { color: var(--text-3); margin-inline: 2px; transition: color 0.18s; }
.footer__bottom a:hover { color: var(--accent); }

.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer__logo .logo__img  { display: block; width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }

/* Legacy .footer__cols / .footer__col hidden by default (booking.html may reference old structure) */
.footer__cols { display: none; }


/* ============================================================
   CONTENT VISIBILITY UTILITIES
============================================================ */
.mob-hide     { display: inline; }
.mob-only     { display: none;   }
.desktop-copy { display: block;  }
.mobile-copy  { display: none;   }

@media (max-width: 768px) {
  .mob-hide     { display: none;   }
  .mob-only     { display: inline; }
  .desktop-copy { display: none;   }
  .mobile-copy  { display: block;  }
}


/* ============================================================
   MOBILE STICKY CTA BAR
============================================================ */
.mob-cta-bar { display: none; }

@media (max-width: 768px) {
  .mob-cta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 98;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(11,13,18,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-2);
    transform: translateY(100%);
    transition: transform 0.38s var(--ease);
    will-change: transform;
  }

  .mob-cta-bar--visible { transform: translateY(0); }

  .mob-cta-bar__btn {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
    min-height: 48px;
    letter-spacing: 0.005em;
  }

  .mob-cta-bar__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: var(--r);
    border: 1px solid var(--border-2);
    color: rgba(255,255,255,0.6);
    transition: border-color 0.2s, color 0.2s;
  }
  .mob-cta-bar__wa:hover { border-color: var(--border-3); color: var(--text); }

  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}


/* ============================================================
   RESPONSIVE — TABLET (max-width: 1100px)
============================================================ */
@media (max-width: 1100px) {
  .solution__layout { grid-template-columns: 1fr; gap: 52px; }
  .solution__left { position: static; }
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 96px; }

  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { display: none; }
  .hero__copy { max-width: 100%; }

  .hero { padding-top: calc(68px + 72px); padding-bottom: 80px; }

  .problem-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: none; }
  .process-card:nth-child(3) { border-top: 1px solid var(--border); }
  .process-card:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .solution__features { grid-template-columns: 1fr; }
  .sol-item:nth-child(odd) { border-right: none; }
  .sol-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .sol-item:last-child { border-bottom: none; }

  .enquiry-types { grid-template-columns: 1fr 1fr; }
  .enquiry-type:last-child { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; width: 100%; }
  .enquiry-cta { padding: 32px 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE LARGE (max-width: 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 72px; }

  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero { padding-top: calc(68px + 52px); padding-bottom: 64px; }

  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__visual { display: none; }
  .hero__copy { max-width: 100%; }

  .hero__h1 { font-size: clamp(32px, 8.5vw, 48px); line-height: 1.07; margin-bottom: 20px; }

  .hero__sub { font-size: 15px; line-height: 1.74; margin-bottom: 28px; max-width: 100%; }

  .hero__actions { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 28px; }
  .hero__actions .btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 24px; min-height: 48px; }

  .trust-bar { flex-direction: row !important; flex-wrap: wrap; gap: 8px 16px; padding-top: 18px; }
  .trust-item { font-size: 11.5px; }

  .eyebrow, .section-label { font-size: 10.5px; margin-bottom: 14px; }
  .section-title { font-size: clamp(26px, 6.5vw, 38px); line-height: 1.12; margin-bottom: 12px; }
  .section-intro { font-size: 14.5px; line-height: 1.76; max-width: 100%; }
  .mobile-copy { font-size: 14.5px; line-height: 1.76; color: var(--text-2); }
  .section-header { margin-bottom: 32px; }

  .problem-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .problem-card { padding: 20px 20px; }
  .problem-card__num { font-size: 10.5px; letter-spacing: 0.08em; margin-bottom: 10px; opacity: 0.75; }
  .problem-card h3 { font-size: 15.5px; line-height: 1.25; margin-bottom: 6px; }
  .problem-card p { font-size: 13px; line-height: 1.62; color: var(--text-3); }

  .solution__layout { grid-template-columns: 1fr; gap: 36px; }
  .solution__left { position: static; }
  .solution__features { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .sol-item:nth-child(odd)       { border-right: none; }
  .sol-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .sol-item:last-child           { border-bottom: none; }
  .sol-item { padding: 18px 18px; gap: 14px; align-items: flex-start; }
  .sol-item__icon { width: 34px; height: 34px; flex-shrink: 0; }
  .sol-item__text h4 { font-size: 14px; font-weight: 700; line-height: 1.28; margin-bottom: 4px; letter-spacing: -0.02em; }
  .sol-item__text p  { font-size: 12.5px; line-height: 1.62; color: var(--text-3); }

  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 24px 20px; border-radius: var(--r-lg); }
  .service-card__num { font-size: 10.5px; letter-spacing: 0.08em; margin-bottom: 10px; opacity: 0.75; }
  .service-card__title { font-size: 16.5px; letter-spacing: -0.025em; line-height: 1.25; margin-bottom: 8px; }
  .service-card__desc { font-size: 13px; line-height: 1.68; color: var(--text-3); margin-bottom: 16px; }
  .service-card__outcomes { gap: 6px; margin-bottom: 16px; }
  .service-card__outcomes li { font-size: 13px; line-height: 1.5; }
  .service-card__link { font-size: 13px; min-height: 42px; }

  .concept-layout { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .concept-divider { min-height: auto; padding: 14px 0; border-left: none; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .concept-arrow { transform: rotate(90deg); }
  .concept-panel__header { padding: 13px 18px; }
  .concept-issues, .concept-wins { padding: 16px 18px; }
  .concept-issues li, .concept-wins li { font-size: 12.5px; }

  .process-grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .process-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 18px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .process-card:last-child { border-bottom: none; }
  .process-card:nth-child(3),
  .process-card:nth-child(4) { border-top: none; }
  .process-card__step { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; padding-top: 2px; gap: 0; margin-bottom: 0; }
  .process-card__line { display: none; }
  .process-card__body { flex: 1; }
  .process-card__num  { width: 36px; height: 36px; font-size: 12.5px; }
  .process-card__body h3 { font-size: 15px; font-weight: 700; line-height: 1.28; margin-bottom: 5px; letter-spacing: -0.02em; }
  .process-card__body p  { font-size: 13px; line-height: 1.62; color: var(--text-3); }

  .enquiry-types { grid-template-columns: 1fr; gap: 10px; }
  .enquiry-type { padding: 24px 20px; border-radius: var(--r-lg); }
  .enquiry-type:last-child { grid-column: auto; max-width: 100%; margin-inline: 0; }
  .enquiry-type__icon { width: 36px; height: 36px; margin-bottom: 16px; }
  .enquiry-type__title { font-size: 15.5px; line-height: 1.25; margin-bottom: 7px; }
  .enquiry-type__desc  { font-size: 13px; line-height: 1.68; color: var(--text-3); }
  .enquiry-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; gap: 18px; border-radius: var(--r-lg); }
  .enquiry-cta__actions { width: 100%; flex-direction: column; }
  .enquiry-cta__actions .btn { width: 100%; justify-content: center; }
  .enquiry-cta__title { font-size: 16px; line-height: 1.3; margin-bottom: 5px; }
  .enquiry-cta__sub   { font-size: 13px; color: var(--text-3); line-height: 1.65; }

  .cta-box { padding: 48px 22px; border-radius: var(--r-lg); }
  .cta-box__title { margin-bottom: 12px; line-height: 1.12; }
  .cta-box__sub { font-size: 14px; line-height: 1.74; color: var(--text-3); margin-bottom: 28px; }
  .cta-box__actions { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 16px; width: 100%; }
  .cta-box .btn--xl { width: 100%; padding: 15px 24px; font-size: 15px; justify-content: center; }
  .cta-box__reassurance { font-size: 11.5px; opacity: 0.6; letter-spacing: 0.01em; }

  .tf2-stage    { margin-bottom: 14px; border-radius: 14px; }
  .tf2-slider   { height: clamp(204px, 54vw, 244px); aspect-ratio: unset; }
  .tf2-label    { font-size: 9px; letter-spacing: 0.08em; padding: 3px 9px; top: 11px; }
  .tf2-label--before { left: 11px; }
  .tf2-label--after  { right: 11px; }
  .tf2-handle__grip  { width: 36px; height: 36px; box-shadow: 0 0 0 4px rgba(0,229,176,0.10), 0 0 16px rgba(0,229,176,0.30), 0 4px 12px rgba(0,0,0,0.5); }
  .tf2-hint     { font-size: 9px; letter-spacing: 0.03em; padding: 5px 11px; gap: 6px; bottom: 12px; }
  .tf2-callouts { grid-template-columns: 1fr; gap: 8px; margin-bottom: 16px; }
  .tf2-callout  { padding: 16px 18px 14px; border-radius: var(--r-lg); }
  .tf2-callout__header { margin-bottom: 11px; gap: 8px; align-items: center; }
  .tf2-callout__badge  { font-size: 8.5px; letter-spacing: 0.1em; padding: 3px 8px; }
  .tf2-callout__context { font-size: 10.5px; opacity: 0.52; }
  .tf2-callout__list   { gap: 7px; }
  .tf2-callout__list li { font-size: 13px; gap: 9px; line-height: 1.44; opacity: 1; transform: none; }
  .tf2-callout__list li:nth-child(n+4) { display: none; }
  .tf2-mark     { width: 17px; height: 17px; }
  .concept-note { font-size: 11px; margin-top: 14px; opacity: 0.6; text-align: left; }

  .footer { padding-top: 44px; }
  .footer__inner { flex-direction: column; gap: 24px; padding-bottom: 36px; }
  .footer__tagline { font-size: 13px; line-height: 1.65; margin-top: 10px; color: var(--text-3); max-width: 280px; }
  .footer__legal   { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 6px 20px; }
  .footer__legal a { font-size: 12.5px; opacity: 0.7; min-height: 36px; display: inline-flex; align-items: center; }
  .footer__bottom p { font-size: 11.5px; line-height: 1.75; opacity: 0.5; }

  .scroll-progress { height: 2.5px; }
  .js .reveal { transform: translateY(10px); }
}

/* ============================================================
   RESPONSIVE — MOBILE SMALL (max-width: 480px)
============================================================ */
@media (max-width: 480px) {
  :root { --section-gap: 56px; }

  .container { padding-inline: 20px; }

  .hero { padding-top: calc(68px + 40px); padding-bottom: 52px; }
  .hero__h1 { font-size: clamp(28px, 9vw, 38px); letter-spacing: -0.01em; margin-bottom: 16px; }
  .hero__sub { font-size: 14.5px; margin-bottom: 24px; }
  .trust-bar  { gap: 6px 14px; padding-top: 14px; }
  .trust-item { font-size: 11px; }

  .eyebrow, .section-label { font-size: 10px; margin-bottom: 10px; }
  .section-title  { font-size: clamp(23px, 7.5vw, 30px); line-height: 1.14; margin-bottom: 10px; }
  .section-intro, .mobile-copy { font-size: 14px; line-height: 1.74; }
  .section-header { margin-bottom: 26px; }

  .problem-card { padding: 18px 18px; }
  .problem-card h3 { font-size: 15px; }
  .problem-card p  { font-size: 12.5px; }

  .sol-item { padding: 16px 16px; gap: 12px; }
  .sol-item__icon { width: 30px; height: 30px; }
  .sol-item__text h4 { font-size: 13.5px; }
  .sol-item__text p  { font-size: 12px; line-height: 1.6; }

  .service-card { padding: 20px 18px; }
  .service-card__title { font-size: 16px; }
  .service-card__desc  { font-size: 12.5px; margin-bottom: 14px; }
  .service-card__outcomes li { font-size: 12.5px; }

  .concept-panel__header { flex-wrap: wrap; gap: 7px; padding: 11px 14px; }
  .concept-mockup { padding: 12px; }
  .concept-issues, .concept-wins { padding: 14px 16px; gap: 7px; }
  .concept-issues li, .concept-wins li { font-size: 12px; }

  .process-card { padding: 16px 16px; gap: 13px; }
  .process-card__num { width: 32px; height: 32px; font-size: 12px; }
  .process-card__body h3 { font-size: 14.5px; }
  .process-card__body p  { font-size: 12.5px; }

  .enquiry-type { padding: 20px 18px; }
  .enquiry-type__icon { width: 32px; height: 32px; margin-bottom: 14px; }
  .enquiry-type__title { font-size: 15px; }
  .enquiry-type__desc  { font-size: 12.5px; }
  .enquiry-cta { padding: 20px 18px; }
  .enquiry-cta__title { font-size: 15.5px; }

  .cta-box { padding: 38px 18px; }
  .cta-box__title { font-size: clamp(22px, 7.5vw, 28px); line-height: 1.14; }
  .cta-box__sub { font-size: 13.5px; margin-bottom: 24px; }

  .tf2-stage { border-radius: 12px; margin-bottom: 12px; }
  .tf2-slider { height: clamp(185px, 52vw, 212px); }
  .tf2-callout { padding: 14px 15px 12px; }
  .tf2-callout__list li { font-size: 12.5px; line-height: 1.40; }
  .tf2-handle__grip { width: 34px; height: 34px; }
  .tf2-label { font-size: 8.5px; padding: 3px 8px; }
  .tf2-hint  { font-size: 8.5px; padding: 4px 10px; }

  .audit-score-card { gap: 12px; padding: 12px 14px; }
  .audit-score-card__num { font-size: 32px; }

  .footer { padding-top: 40px; }
  .footer__tagline { font-size: 12.5px; }
  .footer__legal a { font-size: 12px; }
  .footer__bottom p { font-size: 11px; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL (max-width: 360px)
============================================================ */
@media (max-width: 360px) {
  .container { padding-inline: 16px; }
  .hero__h1  { font-size: 26px; }
  .section-title { font-size: 22px; }
  .btn       { font-size: 14px; }
}

/* ============================================================
   REDUCE MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ============================================================
   DESKTOP ENHANCEMENTS — min-width: 1200px
============================================================ */
@media (min-width: 1200px) {

  :root { --max-w: 1380px; --section-gap: clamp(96px, 9vw, 128px); }

  .container { padding-inline: clamp(48px, 4vw, 80px); }

  body { font-size: 16.5px; }

  .header__inner { height: 76px; }
  .nav__link { font-size: 13.5px; }
  .header__cta { font-size: 14px; padding: 11px 22px; }

  .hero { padding-top: calc(76px + 100px); padding-bottom: 120px; }
  .hero__inner { grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
  .hero__h1 { font-size: 78px; line-height: 1.03; letter-spacing: -0.018em; margin-bottom: 28px; }
  .hero__sub { font-size: 17.5px; line-height: 1.84; max-width: 460px; margin-bottom: 44px; }
  .hero__actions { gap: 12px; margin-bottom: 44px; }
  .audit-scene { max-width: 540px; }
  .audit-score-card__num { font-size: 48px; }
  .trust-item { font-size: 13px; }

  .eyebrow, .section-label { font-size: 11.5px; letter-spacing: 0.145em; margin-bottom: 24px; }

  .section-header { margin-bottom: 72px; }
  .section-title  { font-size: 66px; max-width: 820px; line-height: 1.06; letter-spacing: -0.015em; margin-bottom: 24px; }
  .section-intro  { font-size: 17px; max-width: 540px; line-height: 1.88; }

  .btn { font-size: 14.5px; min-height: 50px; }
  .btn--lg { padding: 15px 32px; font-size: 15px; }
  .btn--xl { padding: 17px 40px; font-size: 16px; }

  .problem-card { padding: 44px 36px; }
  .problem-card h3 { font-size: 17.5px; line-height: 1.25; margin-bottom: 12px; }
  .problem-card p  { font-size: 14px; }

  .solution__layout { grid-template-columns: 400px 1fr; gap: 96px; }
  .solution__left .section-title { font-size: 48px; max-width: none; }
  .sol-item { padding: 32px 28px; gap: 20px; }
  .sol-item__icon { width: 40px; height: 40px; border-radius: 10px; }
  .sol-item__text h4 { font-size: 15.5px; margin-bottom: 5px; }
  .sol-item__text p  { font-size: 13.5px; line-height: 1.72; }

  .services-grid { gap: 16px; }
  .service-card { padding: 48px 44px; border-radius: 18px; }
  .service-card__title { font-size: 21px; letter-spacing: -0.025em; margin-bottom: 14px; }
  .service-card__desc  { font-size: 14.5px; line-height: 1.82; margin-bottom: 28px; }
  .service-card__outcomes { gap: 9px; margin-bottom: 28px; }
  .service-card__outcomes li { font-size: 13.5px; gap: 10px; }
  .service-card__link { font-size: 13.5px; }

  .tf2-stage    { border-radius: 20px; }
  .tf2-slider   { height: clamp(300px, 40vw, 560px); }
  .tf2-callout  { padding: 32px 32px 30px; border-radius: 16px; }
  .tf2-callout__list li { font-size: 14px; gap: 12px; }
  .tf2-callouts { gap: 20px; margin-bottom: 32px; }

  .process-card { padding: 44px 32px; }
  .process-card__num { width: 46px; height: 46px; font-size: 14px; }
  .process-card__step { margin-bottom: 26px; }
  .process-card__body h3 { font-size: 17px; margin-bottom: 10px; letter-spacing: -0.022em; }
  .process-card__body p  { font-size: 14px; line-height: 1.76; }

  .enquiry-types { gap: 16px; }
  .enquiry-type { padding: 44px 38px; border-radius: 18px; }
  .enquiry-type__icon  { width: 44px; height: 44px; border-radius: 11px; margin-bottom: 24px; }
  .enquiry-type__title { font-size: 18.5px; letter-spacing: -0.022em; margin-bottom: 12px; }
  .enquiry-type__desc  { font-size: 14.5px; line-height: 1.8; }
  .enquiry-cta { padding: 44px 56px; border-radius: 18px; }
  .enquiry-cta__title { font-size: 21px; letter-spacing: -0.022em; margin-bottom: 8px; }
  .enquiry-cta__sub   { font-size: 14px; }

  .cta-box { padding: 96px 80px; max-width: 760px; border-radius: 20px; }
  .cta-box__title { font-size: 58px; letter-spacing: -0.015em; margin-bottom: 20px; }
  .cta-box__sub { font-size: 16.5px; max-width: 460px; margin-bottom: 44px; line-height: 1.84; }
  .cta-box__actions { gap: 12px; margin-bottom: 22px; }

  .footer { padding-top: 72px; }
  .footer__inner { gap: 64px; padding-bottom: 56px; }
}

/* ============================================================
   WIDE DESKTOP — min-width: 1440px
============================================================ */
@media (min-width: 1440px) {

  :root { --max-w: 1520px; }

  .container { padding-inline: clamp(56px, 4.5vw, 96px); }

  body { font-size: 17px; }

  .hero { padding-top: calc(76px + 112px); padding-bottom: 128px; }
  .hero__inner { gap: 88px; }
  .hero__h1 { font-size: 88px; letter-spacing: -0.02em; margin-bottom: 30px; }
  .hero__sub { font-size: 18px; max-width: 500px; margin-bottom: 48px; }
  .audit-scene { max-width: 580px; }

  .section-header { margin-bottom: 80px; }
  .section-title  { font-size: 76px; max-width: 900px; letter-spacing: -0.016em; }
  .section-intro  { font-size: 18px; max-width: 580px; }

  .solution__layout { grid-template-columns: 460px 1fr; gap: 112px; }
  .solution__left .section-title { font-size: 54px; }
  .sol-item { padding: 36px 32px; }

  .service-card { padding: 56px 52px; }
  .service-card__title { font-size: 22px; }

  .process-card { padding: 52px 36px; }
  .process-card__body h3 { font-size: 18px; }

  .enquiry-type { padding: 52px 44px; }
  .enquiry-type__title { font-size: 20px; }
  .enquiry-cta { padding: 52px 64px; }
  .enquiry-cta__title { font-size: 23px; }

  .cta-box { padding: 112px 104px; max-width: 820px; }
  .cta-box__title { font-size: 66px; letter-spacing: -0.016em; }
  .cta-box__sub   { font-size: 17.5px; max-width: 500px; }
}


/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 36px;
}

.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 8px 52px;
}

.stats-strip__num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1;
}

.stats-strip__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-strip__sep {
  width: 1px;
  height: 44px;
  background: var(--border-2);
  flex-shrink: 0;
}

@media (max-width: 840px) {
  .stats-strip { padding-block: 28px; }
  .stats-strip__item { padding: 8px 20px; }
  .stats-strip__num { font-size: 30px; }
  .stats-strip__sep { height: 32px; }
}

@media (max-width: 640px) {
  .stats-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
  }
  .stats-strip__item { background: var(--surface); padding: 22px 16px; }
  .stats-strip__sep  { display: none; }
  .stats-strip__num  { font-size: 28px; }
}


/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial { background: var(--bg-2); }

.testimonial__card {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding: 72px 64px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.testimonial__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,176,0.42) 30%, rgba(0,229,176,0.42) 70%, transparent 100%);
}

.testimonial__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,229,176,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.testimonial__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 32px;
  position: relative;
}

.testimonial__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.54;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 40px;
  position: relative;
}

.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.testimonial__author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial__author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
}

.testimonial__author-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.testimonial__author-role {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .testimonial__card  { padding: 48px 32px; }
  .testimonial__quote { font-size: clamp(16px, 4.5vw, 20px); margin-bottom: 28px; }
  .testimonial__author { flex-direction: row; }
  .testimonial__stars { margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .testimonial__card        { padding: 38px 22px; }
  .testimonial__quote       { font-size: 16px; line-height: 1.58; }
  .testimonial__author      { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .testimonial__author-info { align-items: center; text-align: center; }
  .testimonial__author-name { font-size: 13.5px; }
  .testimonial__author-role { font-size: 11.5px; max-width: 260px; }
  .testimonial__author-avatar { width: 36px; height: 36px; font-size: 15px; }
}


/* ============================================================
   KEYFRAMES — premium micro-interactions
============================================================ */
@keyframes eyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,229,176,0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(0,229,176,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,229,176,0); }
}


/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--bg-2); }

.faq .section-header { margin-bottom: 48px; }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.22s;
}
.faq-item:last-child  { border-bottom: none; }
.faq-item.is-open     { background: var(--surface-2); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color 0.2s;
  min-height: 44px;
}
.faq-item__q:hover         { color: var(--accent); }
.faq-item.is-open .faq-item__q { color: var(--accent); }

.faq-item__icon {
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.2s;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item__a {
  padding: 0 28px 24px;
}
.faq-item__a[hidden] { display: none; }

.faq-item__a p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.82;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-list { border-radius: var(--r-lg); }
  .faq-item__q { padding: 18px 20px; font-size: 14.5px; }
  .faq-item__a { padding: 0 20px 18px; }
  .faq-item__a p { font-size: 14px; line-height: 1.74; }
}

@media (max-width: 480px) {
  .faq-item__q { padding: 15px 18px; font-size: 14px; }
  .faq-item__a { padding: 0 18px 15px; }
  .faq-item__a p { font-size: 13.5px; }
}


/* ============================================================
   TABLET / iPAD (769px – 1024px)
============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Section rhythm */
  :root { --section-gap: 88px; }

  /* Stats strip — tighter padding between columns on mid-size tablets */
  .stats-strip__item { padding: 10px 24px; }
  .stats-strip__num  { font-size: 32px; }

  /* Testimonial — slightly reduced card padding */
  .testimonial__card { padding: 56px 48px; }

  /* FAQ — expand list to full container width */
  .faq-list { max-width: 100%; }

  /* Hero — constrain copy width so it doesn't stretch to full tablet width */
  .hero__copy { max-width: 560px; }
}


/* ============================================================
   SMALL PHONES (max-width: 380px)
============================================================ */
@media (max-width: 380px) {
  .hero__h1 { font-size: clamp(26px, 9.5vw, 34px); }
  .stats-strip__num   { font-size: 24px; }
  .stats-strip__item  { padding: 18px 12px; }
  .stats-strip__label { font-size: 10px; }
  .faq-item__q { font-size: 13.5px; }
}


/* ============================================================
   BOOKING PAGE — bk-* namespace
============================================================ */

/* ---- Hero ------------------------------------------------- */
.bk-hero {
  padding-top: calc(68px + 72px);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.bk-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 15%, transparent 80%);
  pointer-events: none;
}

.bk-hero__glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 680px;
  background: radial-gradient(ellipse 60% 55% at 50% 30%, rgba(0,229,176,0.11) 0%, rgba(0,229,176,0.04) 45%, transparent 68%);
  pointer-events: none;
}

.bk-hero__inner { position: relative; z-index: 1; max-width: 700px; }

.bk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.18);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.bk-badge__icon { width: 14px; height: 14px; flex-shrink: 0; display: block; }

.bk-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.4vw, 66px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.bk-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}

.bk-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 20px; }

.bk-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-3);
}

.bk-trust__item svg { color: var(--accent); flex-shrink: 0; display: block; width: 12px; height: 12px; }

.bk-trust__sep { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); opacity: 0.35; }

/* ---- Booking section -------------------------------------- */
.bk-section { background: var(--bg); }

.bk-layout { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }

.bk-left { position: sticky; top: calc(68px + 24px); display: flex; flex-direction: column; gap: 32px; }

.bk-cover__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.bk-cover-list { display: flex; flex-direction: column; gap: 14px; }

.bk-cover-item { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-sans); font-size: 14px; color: var(--text-2); line-height: 1.65; }

.bk-cover-item__icon { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: var(--accent-dim); border: 1px solid rgba(0,229,176,0.18); color: var(--accent); margin-top: 1px; }
.bk-cover-item__icon svg { display: block; width: 10px; height: 10px; flex-shrink: 0; }

.bk-meta { display: flex; flex-direction: column; gap: 14px; padding-top: 32px; border-top: 1px solid var(--border); }

.bk-meta__item { display: flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-size: 13.5px; color: var(--text-2); }

.bk-meta__icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex-shrink: 0; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r); color: var(--accent); }
.bk-meta__icon svg { display: block; width: 14px; height: 14px; flex-shrink: 0; }

.bk-calendly-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.bk-calendly-card__glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,176,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.bk-calendly-card .calendly-inline-widget { position: relative; z-index: 1; }

/* ---- Reassurance ------------------------------------------ */
.bk-reassurance { background: var(--bg-2); }

.bk-reassurance__card {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  overflow: hidden;
}

.bk-reassurance__card-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,176,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.bk-reassurance__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.18);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
}
.bk-reassurance__icon svg { display: block; width: 20px; height: 20px; flex-shrink: 0; }

.bk-reassurance__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  position: relative;
}

.bk-reassurance__text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.82;
  max-width: 440px;
  margin-inline: auto;
  position: relative;
}

/* ---- Booking responsive ----------------------------------- */
@media (max-width: 1024px) {
  .bk-layout { grid-template-columns: 300px 1fr; gap: 48px; }
  .bk-left   { position: static; }
}

@media (max-width: 768px) {
  .bk-hero { padding-top: calc(68px + 56px); padding-bottom: 56px; }
  .bk-hero__title { font-size: clamp(32px, 9vw, 46px); }
  .bk-hero__sub   { font-size: 15px; margin-bottom: 28px; }
  .bk-trust       { gap: 8px 16px; }
  .bk-trust__sep  { display: none; }
  .bk-layout { grid-template-columns: 1fr; gap: 40px; }
  .bk-left   { gap: 28px; }
  .bk-cover__title { font-size: 22px; }
  .bk-calendly-card .calendly-inline-widget { height: 800px !important; }
  .bk-reassurance__card  { padding: 44px 28px; }
  .bk-reassurance__title { font-size: 22px; }
  .bk-reassurance__text  { font-size: 14.5px; }
}

@media (max-width: 480px) {
  .bk-hero { padding-top: calc(68px + 40px); padding-bottom: 44px; }
  .bk-hero__title { font-size: clamp(28px, 8.5vw, 36px); }
  .bk-badge { font-size: 10px; padding: 5px 12px; }
  .bk-cover__title { font-size: 20px; }
  .bk-cover-item   { font-size: 13.5px; }
  .bk-meta__item   { font-size: 13px; }
  .bk-calendly-card .calendly-inline-widget { height: 750px !important; }
  .bk-reassurance__card { padding: 36px 22px; }
}


/* ============================================================
   RESULTS PAGE — cs-* components
   All selectors scoped to .cs-page where they could
   affect other pages (cta-box, stat-bar, proof-strip, etc.)
============================================================ */

/* ---- Container ------------------------------------------- */
.cs-container {
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: clamp(22px, 5vw, 72px);
}

/* ---- Section dividers override --------------------------- */
.cs-page .section + .section { border-top: none; }
.cs-page .section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(22px, 5vw, 72px);
  right: clamp(22px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 18%,
    rgba(255,255,255,0.11) 50%,
    rgba(255,255,255,0.06) 82%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ---- Hero ------------------------------------------------ */
.cs-hero {
  padding-top: calc(68px + 128px);
  padding-bottom: 128px;
  position: relative;
  overflow: hidden;
}

.cs-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.013) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 10%, transparent 80%);
  pointer-events: none;
}

.cs-hero__glow {
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 960px; height: 720px;
  background: radial-gradient(ellipse, rgba(0,229,176,0.02) 0%, transparent 62%);
  pointer-events: none;
}

.cs-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cs-hero__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.8vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 32px;
}

.cs-hero__title em { font-style: italic; color: var(--accent); }

.cs-hero__sub {
  color: rgba(150, 160, 176, 1);
  font-size: clamp(15.5px, 1.55vw, 17.5px);
  line-height: 1.84;
  max-width: 500px;
  margin-bottom: 40px;
}

.cs-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0; }

.cs-hero__actions .btn--accent { box-shadow: 0 2px 10px rgba(0,229,176,0.12); }
.cs-hero__actions .btn--accent:hover { box-shadow: 0 6px 22px rgba(0,229,176,0.24); }

.cs-hero__intel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 10px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.055);
}

.cs-hero__intel-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.cs-hero__intel-item svg { color: var(--accent); flex-shrink: 0; }

.cs-hero__intel-sep {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.3;
  margin: 0 18px;
}

/* ---- Positioning section --------------------------------- */
.cs-section--position {
  background: linear-gradient(180deg, rgba(19,22,32,0) 0%, rgba(19,22,32,0.35) 100%);
}

.cs-position__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.cs-position__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-top: 12px;
}

.cs-position__para {
  color: rgba(150, 160, 176, 1);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.88;
}

.cs-position__accent-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ---- Diagnosis grid -------------------------------------- */
.cs-diagnosis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.cs-diagnosis__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 10px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.cs-diagnosis__item:hover { border-color: rgba(0,229,176,0.2); background: var(--surface-2); }

.cs-diagnosis__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.14);
  color: var(--accent);
  flex-shrink: 0;
}
.cs-diagnosis__icon svg { width: 14px; height: 14px; flex-shrink: 0; }

.cs-diagnosis__label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--text-2); }

/* ---- Case study header ----------------------------------- */
.cs-case__header { margin-bottom: 56px; }

.cs-case__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cs-case__label::after { content: ''; display: block; width: 48px; height: 1px; background: linear-gradient(90deg, rgba(0,229,176,0.35), transparent); }

.cs-case__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 760px;
}
.cs-case__title em { font-style: italic; color: var(--accent); }

.cs-case__sub { font-size: clamp(14px, 1.3vw, 15.5px); color: var(--text-3); line-height: 1.7; }

.cs-case__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: fit-content;
}

.cs-case__meta-item { font-size: 12px; font-weight: 500; }
.cs-case__meta-item--before { color: var(--text-3); }
.cs-case__meta-item--after  { color: var(--text-2); }

.cs-case__meta-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(150,160,176,0.4); display: block; }
.cs-case__meta-dot--accent { background: var(--accent); box-shadow: 0 0 5px rgba(0,229,176,0.36); }

.cs-case__meta-arrow { color: var(--text-3); flex-shrink: 0; display: block; }

/* ---- Stat bar — scoped to results page ------------------- */
.results-stat-bar {
  display: flex;
  align-items: stretch;
  gap: 1px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  margin-bottom: 80px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.03) inset,
    0 12px 32px rgba(0,0,0,0.18);
}

.results-stat-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: var(--surface);
  position: relative;
}

.results-stat-bar__item + .results-stat-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border-2);
}

.results-stat-bar__item--accent {
  background: linear-gradient(160deg, rgba(0,229,176,0.07) 0%, rgba(0,229,176,0.025) 100%);
}
.results-stat-bar__item--positive {
  background: linear-gradient(160deg, rgba(0,229,176,0.065) 0%, rgba(0,229,176,0.02) 100%);
}

.results-stat-bar__context {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.results-stat-bar__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(30px, 4.2vw, 48px);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.results-stat-bar__num--accent { color: var(--accent); }
.results-stat-bar__num--warn   { color: #FF6B6B; }
.results-stat-bar__item--warn  {
  background: linear-gradient(160deg, rgba(255,80,80,0.07) 0%, rgba(255,80,80,0.025) 100%);
}

.results-stat-bar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.4;
}

/* ---- Before/after slider — Results page (cs-slider) ------ */
.cs-slider {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-2);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 64px rgba(0,0,0,0.48),
    0 6px 20px rgba(0,0,0,0.24);
  margin-bottom: 6px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: col-resize;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.cs-slider:hover,
.cs-slider:focus-visible {
  border-color: rgba(0,229,176,0.15);
  box-shadow:
    0 0 0 1px rgba(0,229,176,0.07),
    0 24px 64px rgba(0,0,0,0.48),
    0 6px 20px rgba(0,0,0,0.24);
}

.cs-slider__track {
  position: relative;
  width: 100%;
  height: clamp(360px, 46vw, 600px);
  overflow: hidden;
  background: #0A0809;
}

.cs-slider__after {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  filter: brightness(1.05) saturate(1.1);
  pointer-events: none;
  will-change: transform;
}

.cs-slider__before-panel {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}

.cs-slider__before {
  position: absolute;
  inset: 0;
  width: 100%; max-width: none; height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  filter: saturate(0.32) brightness(0.74) contrast(0.90);
  pointer-events: none;
}

.cs-slider__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1.5px;
  margin-left: -1px;
  background: rgba(0,229,176,0.85);
  box-shadow: 0 0 8px rgba(0,229,176,0.28), 0 0 20px rgba(0,229,176,0.1);
  will-change: left;
  pointer-events: none;
  transition: box-shadow 0.25s ease;
  z-index: 10;
}

.cs-slider:hover .cs-slider__line,
.cs-slider.is-dragging .cs-slider__line {
  box-shadow: 0 0 12px rgba(0,229,176,0.45), 0 0 28px rgba(0,229,176,0.16);
}

.cs-slider__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(11,13,18,0.88);
  border: 1.5px solid rgba(0,229,176,0.75);
  box-shadow: 0 0 0 5px rgba(0,229,176,0.07), 0 4px 14px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: left;
  pointer-events: none;
  z-index: 11;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.18s var(--ease-out);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cs-slider__handle svg { width: 18px; height: 18px; flex-shrink: 0; }

.cs-slider:hover .cs-slider__handle,
.cs-slider.is-dragging .cs-slider__handle {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(0,229,176,0.1), 0 0 18px rgba(0,229,176,0.24), 0 4px 14px rgba(0,0,0,0.45);
}

.cs-slider.is-dragging .cs-slider__handle { transform: translate(-50%, -50%) scale(1.08); }

.cs-slider__label {
  position: absolute;
  top: 16px;
  z-index: 12;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cs-slider__label--before { left: 16px; background: rgba(8,11,16,0.65); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.09); }
.cs-slider__label--after  { right: 16px; background: rgba(0,229,176,0.12); color: var(--accent); border: 1px solid rgba(0,229,176,0.22); }

.cs-slider__hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(8,11,16,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: 12;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}

.cs-slider.has-interacted .cs-slider__hint { opacity: 0; }

/* ---- Transform bar --------------------------------------- */
.cs-transform-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  margin-bottom: 4px;
}

.cs-transform-bar__label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  white-space: nowrap;
  flex-shrink: 0;
}

.cs-transform-bar__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,229,176,0.2), transparent 70%);
}

/* ---- Concept note ---------------------------------------- */
.concept-note {
  font-size: 11.5px;
  color: var(--text-3);
  font-style: italic;
  margin: 14px 0 52px;
  line-height: 1.6;
}

/* ---- Improvement cards ----------------------------------- */
.cs-improve {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.cs-improve__item { padding: 0 52px 0 0; border-right: 1px solid rgba(255,255,255,0.06); }
.cs-improve__item:nth-child(2) { padding: 0 52px 0 52px; }
.cs-improve__item:last-child   { padding: 0 0 0 52px; border-right: none; }

.cs-improve__indicator { display: block; width: 24px; height: 1.5px; background: var(--accent); opacity: 0.55; border-radius: 2px; margin-bottom: 26px; }

.cs-improve__num {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 12px;
}

.cs-improve__title {
  font-family: var(--font-sans);
  font-size: clamp(15.5px, 1.35vw, 17.5px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.28;
  max-width: 24ch;
}

.cs-improve__body {
  font-size: 13.5px;
  color: rgba(150, 160, 176, 0.9);
  line-height: 1.84;
  max-width: 32ch;
}

/* ---- Process steps --------------------------------------- */
.cs-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.cs-step {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.055);
  padding: 38px 32px 44px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.cs-step::before { display: none; }

.cs-step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.cs-step:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.cs-step:not(:first-child) { border-left: none; }

.cs-step:hover {
  border-color: rgba(0,229,176,0.15);
  box-shadow: inset 0 0 0 1px rgba(0,229,176,0.05);
  transform: none;
}

.cs-step__num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.65;
  margin-bottom: 22px;
}

.cs-step__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  line-height: 1.32;
}

.cs-step__body { font-size: 13px; color: var(--text-3); line-height: 1.74; }

.cs-step__output {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

.cs-step__output--accent { color: var(--accent); background: var(--accent-dim); border-color: rgba(0,229,176,0.18); }

.cs-step:hover .cs-step__output               { border-color: rgba(255,255,255,0.12); color: var(--text-2); }
.cs-step:hover .cs-step__output--accent        { border-color: rgba(0,229,176,0.28);  color: var(--accent); }

/* ---- Results page CTA — scoped to .cs-page --------------- */
.cta-subtext {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.62;
  margin-bottom: 16px;
  font-style: italic;
}

.cs-page .cta-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,150,100,0.9);
  background: rgba(255,90,50,0.08);
  border: 1px solid rgba(255,100,60,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.cs-page .cta-urgency-badge .cta-urgency-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,120,80,0.9);
  animation: urgencyPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.82); }
}

.cs-page .cta-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  padding: 72px 80px;
  text-align: center;
  overflow: hidden;
  max-width: none;
  margin-inline: 0;
}

.cs-page .cta-box__glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 360px;
  background: radial-gradient(ellipse, rgba(0,229,176,0.045) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.cs-page .cta-box__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}

.cs-page .cta-box__sub {
  position: relative;
  z-index: 1;
  font-size: clamp(14.5px, 1.3vw, 16px);
  color: var(--text-2);
  line-height: 1.78;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.cs-page .cta-box__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cs-page .cta-box__actions .btn--accent { font-size: 15px; padding: 15px 36px; box-shadow: 0 4px 16px rgba(0,229,176,0.18); }
.cs-page .cta-box__actions .btn--accent:hover { box-shadow: 0 8px 26px rgba(0,229,176,0.3); }
.cs-page .cta-box__actions .btn--ghost { font-size: 15px; padding: 15px 28px; }

.cs-page .cta-proof-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 0;
  margin-top: 20px;
}

.cs-page .cta-proof-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.01em;
}
.cs-page .cta-proof-strip__item svg { color: var(--accent); flex-shrink: 0; opacity: 0.8; }

.cs-page .cta-proof-strip__sep {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.25;
  margin: 0 16px;
}


/* ============================================================
   RESULTS PAGE — RESPONSIVE
============================================================ */

/* ---- Tablet (max 1100px) --------------------------------- */
@media (max-width: 1100px) {
  .cs-position__layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- Tablet portrait (max 960px) ------------------------- */
@media (max-width: 960px) {
  .cs-process-row { grid-template-columns: repeat(2, 1fr); }
  .cs-step:first-child  { border-radius: var(--r-lg) 0 0 0; }
  .cs-step:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; border-right: 1px solid var(--border); }
  .cs-step:nth-child(3) { border-top: none; border-left: none; border-radius: 0 0 0 var(--r-lg); }
  .cs-step:nth-child(4) { border-top: none; border-left: none; border-radius: 0 0 var(--r-lg) 0; border-right: 1px solid var(--border); }
  .cs-step:last-child   { border-radius: 0 0 var(--r-lg) 0; border-right: 1px solid var(--border); }
}

/* ---- Mobile (max 768px) ---------------------------------- */
@media (max-width: 768px) {
  .cs-hero { padding-top: calc(68px + 64px); padding-bottom: 72px; }
  .cs-hero__inner { max-width: 100%; }
  .cs-hero__title { font-size: clamp(30px, 8vw, 46px); line-height: 1.06; margin-bottom: 18px; }
  .cs-hero__sub { font-size: 15px; line-height: 1.76; margin-bottom: 28px; max-width: 100%; }
  .cs-hero__actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .cs-hero__actions .btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; min-height: 48px; }

  .cs-hero__intel { margin-top: 32px; padding-top: 22px; row-gap: 8px; }
  .cs-hero__intel-sep { margin: 0 12px; }
  .cs-hero__intel-item { font-size: 11.5px; }

  .cs-position__title { font-size: clamp(26px, 7vw, 38px); }
  .cs-position__para  { font-size: 14.5px; }

  .cs-diagnosis { gap: 7px; margin-top: 36px; padding-top: 28px; }
  .cs-diagnosis__item { padding: 7px 13px 7px 9px; }
  .cs-diagnosis__icon { width: 24px; height: 24px; border-radius: 6px; }
  .cs-diagnosis__icon svg { width: 13px; height: 13px; }
  .cs-diagnosis__label { font-size: 12px; }

  .cs-case__header { margin-bottom: 36px; }
  .cs-case__title { font-size: clamp(24px, 7.5vw, 38px); line-height: 1.08; }
  .cs-case__meta { padding: 11px 14px; gap: 8px; width: auto; }
  .cs-case__meta-item { font-size: 11.5px; }
  .cs-case__meta-arrow { display: none; }

  .results-stat-bar { flex-direction: column; margin-bottom: 48px; box-shadow: none; }
  .results-stat-bar__item { flex-direction: column; align-items: flex-start; text-align: left; padding: 22px 20px; gap: 4px; }
  .results-stat-bar__item + .results-stat-bar__item::before { display: none; }
  .results-stat-bar__item + .results-stat-bar__item { border-top: 1px solid var(--border); }
  .results-stat-bar__context { font-size: 9px; margin-bottom: 4px; letter-spacing: 0.12em; }
  .results-stat-bar__num { font-size: clamp(28px, 7vw, 38px); margin-bottom: 4px; line-height: 1; }
  .results-stat-bar__label { font-size: 11px; letter-spacing: 0.04em; text-align: left; }

  .cs-slider { border-radius: 14px; margin-inline: 0; box-shadow: none; border-color: var(--border-2); }
  .cs-slider__track { height: clamp(210px, 56vw, 320px); }
  .cs-slider__handle { width: 38px; height: 38px; box-shadow: 0 0 0 4px rgba(0,229,176,0.08), 0 2px 10px rgba(0,0,0,0.4); }
  .cs-slider__label { font-size: 8.5px; padding: 4px 10px; top: 12px; }
  .cs-slider__label--before { left: 12px; }
  .cs-slider__label--after  { right: 12px; }
  .cs-slider__hint { font-size: 9.5px; padding: 5px 11px; bottom: 14px; }

  .cs-transform-bar { margin-top: 28px; }

  .cs-improve { grid-template-columns: 1fr; margin-top: 36px; }
  .cs-improve__item,
  .cs-improve__item:nth-child(2),
  .cs-improve__item:last-child { padding: 28px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .cs-improve__item:last-child { border-bottom: none; padding-bottom: 0; }
  .cs-improve__indicator { margin-bottom: 18px; }
  .cs-improve__title { font-size: 15px; max-width: 100%; margin-bottom: 10px; }
  .cs-improve__body  { font-size: 13.5px; line-height: 1.74; max-width: 100%; }

  .cs-process-row { grid-template-columns: 1fr; }
  .cs-step { border-radius: 0 !important; border-left: 1px solid var(--border) !important; border-right: 1px solid var(--border) !important; border-top: none; padding: 28px 24px 32px; box-shadow: none; }
  .cs-step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0 !important; border-top: 1px solid var(--border) !important; }
  .cs-step:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg) !important; }
  .cs-step__output { display: none; }

  .section-header { margin-bottom: 56px; }

  .cs-page .cta-box { padding: 48px 28px 52px; border-radius: 16px; box-shadow: none; }
  .cs-page .cta-box__glow { display: none; }
  .cs-page .cta-box__title { font-size: clamp(26px, 7vw, 38px); margin-bottom: 10px; }
  .cs-page .cta-box__sub { font-size: 14.5px; margin-bottom: 28px; }
  .cs-page .cta-box__actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .cs-page .cta-box__actions .btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; min-height: 48px; }
  .cs-page .cta-proof-strip { flex-direction: column; gap: 8px; align-items: center; }
  .cs-page .cta-proof-strip__sep { display: none; }
}

/* ---- Small mobile (max 480px) ---------------------------- */
@media (max-width: 480px) {
  .cs-hero { padding-top: calc(68px + 48px); padding-bottom: 56px; }
  .cs-hero__inner { max-width: 100%; }
  .cs-hero__title { font-size: clamp(28px, 9vw, 38px); margin-bottom: 14px; }
  .cs-hero__sub { font-size: 14.5px; margin-bottom: 22px; }

  .cs-hero__intel { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cs-hero__intel-sep { display: none; }

  .cs-position__title { font-size: clamp(24px, 8vw, 32px); }
  .cs-position__para  { font-size: 14.5px; }

  .cs-case__title { font-size: clamp(22px, 8vw, 32px); }
  .cs-case__meta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cs-case__meta-item { font-size: 12px; }

  .cs-slider { border-radius: var(--r-xl); margin-inline: 0; }
  .cs-slider__track { height: clamp(190px, 54vw, 260px); }

  .results-stat-bar__item { padding: 18px 18px; }

  .cs-improve__title { font-size: 15px; }
  .cs-improve__body  { font-size: 13.5px; line-height: 1.65; }

  .cs-step { padding: 28px 24px 32px; }
  .cs-step__body { font-size: 13px; }

  .cs-page .cta-box { padding: 36px 20px 44px; }
  .cs-page .cta-box__title { font-size: clamp(22px, 8vw, 30px); }
}

/* ---- Results page: standard desktop (1200px+) ------------ */
@media (min-width: 1200px) {
  .cs-container { max-width: 1480px; padding-inline: clamp(48px, 4vw, 80px); }

  .cs-hero { padding-top: calc(76px + 140px); padding-bottom: 148px; }
  .cs-hero__inner { max-width: 900px; }
  .cs-hero__title { font-size: 88px; line-height: 1.02; letter-spacing: -0.018em; margin-bottom: 36px; }
  .cs-hero__sub { font-size: 18px; line-height: 1.86; max-width: 520px; margin-bottom: 56px; }

  .cs-position__layout { gap: 112px; }
  .cs-position__title { font-size: 58px; letter-spacing: -0.016em; }
  .cs-position__para  { font-size: 17.5px; line-height: 1.92; }

  .cs-case__header { margin-bottom: 72px; }
  .cs-case__title { font-size: 68px; letter-spacing: -0.016em; max-width: 860px; }
  .cs-case__sub   { font-size: 16px; line-height: 1.75; }

  .cs-improve { margin-top: 72px; }
  .cs-improve__item              { padding: 0 72px 0 0; }
  .cs-improve__item:nth-child(2) { padding: 0 72px 0 72px; }
  .cs-improve__item:last-child   { padding: 0 0 0 72px; }
  .cs-improve__title { font-size: 18.5px; letter-spacing: -0.02em; margin-bottom: 12px; }
  .cs-improve__body  { font-size: 15px; line-height: 1.78; max-width: 28ch; }

  .cs-step { padding: 44px 36px 48px; }
  .cs-step__title { font-size: 17px; margin-bottom: 12px; }
  .cs-step__body  { font-size: 14.5px; line-height: 1.74; }

  .cs-slider__track { height: clamp(480px, 48vw, 760px); }
}

/* ---- Results page: wide desktop (1440px+) ---------------- */
@media (min-width: 1440px) {
  .cs-container { max-width: 1600px; }

  .cs-hero { padding-top: calc(76px + 160px); padding-bottom: 164px; }
  .cs-hero__title { font-size: 100px; letter-spacing: -0.02em; }
  .cs-hero__sub   { font-size: 19.5px; max-width: 560px; }

  .cs-position__title { font-size: 66px; }
  .cs-case__title     { font-size: 78px; }

  .cs-improve__title { font-size: 20px; }
  .cs-improve__body  { max-width: 26ch; }

  .cs-step { padding: 52px 40px 56px; }
  .cs-step__title { font-size: 18px; }

  .cs-slider__track { height: clamp(560px, 48vw, 840px); }
}


/* ============================================================
   APEXLOCAL — confirmation-styles-addition.css
   Overrides & extensions for confirmation.html only.
   Design: Cinematic · Premium · Minimal · Dark
   Tokens inherited from styles.css
   ============================================================ */

/* ============================================================
   GLOBAL SAFETY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}


/* ============================================================
   CONFIRM HERO
   ============================================================ */
.confirm-hero {
  position: relative;
  padding-top: clamp(130px, 16vw, 200px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
}

/* Cinematic grid background — matches homepage hero grid treatment */
.confirm-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Accent glow bloom from top-right — mirrors homepage hero glow */
.confirm-hero__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: clamp(420px, 55vw, 760px);
  height: clamp(420px, 55vw, 760px);
  background: radial-gradient(
    ellipse at 65% 30%,
    rgba(0, 229, 176, 0.11) 0%,
    rgba(0, 229, 176, 0.045) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.confirm-hero .container { position: relative; z-index: 1; }

.confirm-hero__inner {
  max-width: 820px;
}

/* Status badge — refined pill */
.confirm-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 176, 0.22);
  background: rgba(0, 229, 176, 0.07);
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.confirm-status-badge__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 229, 176, 0.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.78); }
}

/* Hero title — elegant serif, large, cinematic */
.confirm-hero__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.035;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

/* Subtitle — readable, calm */
.confirm-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.88;
  color: var(--text-2);
  max-width: 560px;
}

/* Subtle bottom separator matching homepage section divider style */
.confirm-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(22px, 5vw, 64px);
  right: clamp(22px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.06) 18%,
    rgba(255,255,255,0.11) 50%,
    rgba(255,255,255,0.06) 82%,
    transparent 100%
  );
}


/* ============================================================
   WHAT HAPPENS NEXT — Process Steps
   ============================================================ */
.confirm-steps {
  padding-block: var(--section-gap);
}

.confirm-steps__header {
  margin-bottom: clamp(56px, 7vw, 96px);
}

/* Three-column cards — elevated from homepage process-grid pattern */
.confirm-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
}

/* Override default process-card styles for confirmation context */
.confirm-steps__grid .process-card {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3.5vw, 44px);
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  transition: background 0.28s var(--ease);
  position: relative;
}

.confirm-steps__grid .process-card:last-child {
  border-right: none;
}

.confirm-steps__grid .process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 176, 0), transparent);
  transition: background 0.36s var(--ease);
}

.confirm-steps__grid .process-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(0, 229, 176, 0.45), transparent);
}

.confirm-steps__grid .process-card:hover {
  background: rgba(0, 229, 176, 0.035);
}

.confirm-steps__grid .process-card__step {
  margin-bottom: 28px;
}

.confirm-steps__grid .process-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: background 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.confirm-steps__grid .process-card:hover .process-card__num {
  background: var(--accent);
  color: #080B10;
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(0, 229, 176, 0.3);
}

.confirm-steps__grid .process-card__body h3 {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.confirm-steps__grid .process-card__body p {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text-2);
}


/* ============================================================
   BEFORE THE CALL — Checklist Section
   ============================================================ */
.confirm-checklist-section {
  padding-block: var(--section-gap);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 176, 0.022) 50%, transparent 100%);
  position: relative;
}

.confirm-checklist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(22px, 5vw, 64px);
  right: clamp(22px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 229, 176, 0.06) 18%,
    rgba(0, 229, 176, 0.16) 50%,
    rgba(0, 229, 176, 0.06) 82%,
    transparent 100%
  );
}

.confirm-checklist-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: clamp(22px, 5vw, 64px);
  right: clamp(22px, 5vw, 64px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 229, 176, 0.06) 18%,
    rgba(0, 229, 176, 0.16) 50%,
    rgba(0, 229, 176, 0.06) 82%,
    transparent 100%
  );
}

/* Two-column layout — left: text, right: checklist card */
.confirm-checklist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.confirm-checklist-left .section-label {
  margin-bottom: 20px;
}

.confirm-checklist-left .section-title {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 54px);
}

.confirm-checklist-left .section-intro {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: 0;
}

/* Elevated checklist card */
.confirm-checklist-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow on card top-right */
.confirm-checklist-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 229, 176, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Individual checklist item */
.confirm-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: clamp(13.5px, 1.3vw, 15px);
  line-height: 1.72;
  color: var(--text-2);
  transition: color 0.2s;
}

.confirm-checklist-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.confirm-checklist-item:first-child {
  padding-top: 0;
}

.confirm-checklist-item:hover {
  color: var(--text);
}

/* Check icon container */
.confirm-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 229, 176, 0.1);
  border: 1px solid rgba(0, 229, 176, 0.22);
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, box-shadow 0.2s;
}

.confirm-checklist-item:hover .confirm-check-icon {
  background: rgba(0, 229, 176, 0.18);
  box-shadow: 0 0 10px rgba(0, 229, 176, 0.2);
}


/* ============================================================
   REASSURANCE BAR
   ============================================================ */
.confirm-reassurance {
  padding-block: clamp(56px, 7vw, 96px);
}

.confirm-reassurance__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

/* Left accent stripe */
.confirm-reassurance__inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  border-radius: 0 2px 2px 0;
}

/* Subtle right glow */
.confirm-reassurance__inner::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 229, 176, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.confirm-reassurance__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 229, 176, 0.08);
  border: 1px solid rgba(0, 229, 176, 0.18);
  color: var(--accent);
  flex-shrink: 0;
}

.confirm-reassurance__text {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text-2);
  margin: 0;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.confirm-cta {
  padding-block: var(--section-gap);
}

.confirm-cta__inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.confirm-cta__label {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* Buttons row */
.confirm-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Large CTA button sizing */
.confirm-actions .btn--lg {
  font-size: 15px;
  padding: 14px 32px;
  min-height: 52px;
}

/* Ghost button on dark confirmation page */
.confirm-actions .btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.confirm-actions .btn--ghost:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}


/* ============================================================
   FOOTER CONSISTENCY FIXES
   (unified footer styles defined above in main footer block)
   ============================================================ */


/* ============================================================
   REVEAL ANIMATION — inherits from main styles, fine-tuned
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.22s; }
.reveal--delay-3 { transition-delay: 0.34s; }


/* ============================================================
   SECTION RHYTHM — confirmation page specific spacing
   ============================================================ */
.confirm-steps {
  padding-block: var(--section-gap);
}

.confirm-steps + .confirm-checklist-section,
.confirm-checklist-section + .confirm-reassurance,
.confirm-reassurance + .confirm-cta {
  /* Sections separated by accent border lines defined above */
}

/* Section header spacing specific to confirmation */
.confirm-steps__header.section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}


/* ============================================================
   RESPONSIVE — TABLET  (≤ 980px)
   ============================================================ */
@media (max-width: 980px) {

  /* Hero */
  .confirm-hero {
    padding-top: clamp(110px, 14vw, 160px);
    padding-bottom: clamp(64px, 8vw, 100px);
  }

  /* Steps — stack to single column elegantly */
  .confirm-steps__grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-lg);
  }

  .confirm-steps__grid .process-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .confirm-steps__grid .process-card:last-child {
    border-bottom: none;
  }

  .confirm-steps__grid .process-card__step {
    margin-bottom: 0;
    flex-shrink: 0;
    padding-top: 3px;
  }

  .confirm-steps__grid .process-card__body {
    flex: 1;
  }

  /* Checklist — stack */
  .confirm-checklist-layout {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 64px);
  }

  .confirm-checklist-left .section-title {
    max-width: 540px;
  }

  /* Footer cols stay but wrap better */
  .footer__cols {
    gap: clamp(28px, 4vw, 48px);
    justify-content: flex-start;
  }

}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero */
  .confirm-hero {
    padding-top: clamp(100px, 24vw, 140px);
    padding-bottom: clamp(56px, 10vw, 80px);
  }

  .confirm-hero__title {
    font-size: clamp(38px, 10.5vw, 56px);
    line-height: 1.045;
    letter-spacing: -0.018em;
  }

  .confirm-hero__sub {
    font-size: 15px;
    line-height: 1.82;
    max-width: 100%;
  }

  .confirm-status-badge {
    font-size: 10.5px;
    padding: 6px 13px 6px 10px;
    margin-bottom: 28px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(30px, 8.5vw, 44px);
  }

  .section-intro {
    font-size: 14.5px;
    line-height: 1.85;
  }

  /* Steps grid */
  .confirm-steps__grid .process-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .confirm-steps__grid .process-card__num {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .confirm-steps__grid .process-card__body h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .confirm-steps__grid .process-card__body p {
    font-size: 13px;
  }

  /* Checklist */
  .confirm-checklist-card {
    padding: 24px 20px;
  }

  .confirm-checklist-item {
    font-size: 13.5px;
    gap: 14px;
    padding-block: 18px;
  }

  .confirm-check-icon {
    width: 24px;
    height: 24px;
  }

  /* Reassurance bar */
  .confirm-reassurance__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
  }

  .confirm-reassurance__inner::before {
    top: 0;
    bottom: 0;
    left: 0;
  }

  .confirm-reassurance__text {
    font-size: 14px;
  }

  /* CTA */
  .confirm-cta__label {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 28px;
  }

  .confirm-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }

  .confirm-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__cols {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    justify-content: flex-start;
  }

}


/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

  .confirm-hero__title {
    font-size: clamp(34px, 11vw, 46px);
  }

  .confirm-hero__title br {
    display: none;
  }

  .section-title br {
    display: none;
  }

  .section-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .confirm-steps__grid .process-card {
    padding: 20px 16px;
  }

  .confirm-checklist-card {
    padding: 20px 16px;
  }

  .confirm-reassurance__inner {
    padding: 20px 16px;
  }

  .confirm-cta__inner {
    padding-inline: 0;
  }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .confirm-cta__label {
    font-size: clamp(22px, 8.5vw, 32px);
  }

}


/* ============================================================
   LARGE SCREENS  (≥ 1280px)
   ============================================================ */
@media (min-width: 1280px) {

  .confirm-hero__title {
    font-size: clamp(76px, 6.5vw, 96px);
  }

  .confirm-steps__grid .process-card {
    padding: 56px 48px;
  }

  .confirm-steps__grid .process-card__num {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .confirm-steps__grid .process-card__body h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .confirm-steps__grid .process-card__body p {
    font-size: 14.5px;
  }

  .confirm-checklist-card {
    padding: 52px;
  }

  .confirm-checklist-item {
    font-size: 15px;
    padding-block: 22px;
  }

  .confirm-reassurance__inner {
    padding: 48px 60px;
  }

  .confirm-cta__label {
    font-size: clamp(40px, 3.8vw, 54px);
  }

}


/* ============================================================
   GHL FORM EMBED ON BOOKING PAGE
============================================================ */

.bk-calendly-card {
  background: #131620;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,229,176,0.04),
    0 24px 64px rgba(0,0,0,0.4);
}

/* If using iframe embed */
.bk-calendly-card iframe {
  width: 100%;
  border: none;
  display: block;
  background: #131620;
  border-radius: 18px;
}

/* If using script embed */
.bk-calendly-card iframe,
.bk-calendly-card .hl-form-builder,
.bk-calendly-card .form-builder--wrap {
  background: #131620 !important;
}
/* ============================================================
   APEX MOTION HERO SCENE
   Scoped to .apex-motion-* only.
   ============================================================ */

/* ---- Scene container ---- */
.apex-motion-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
  overflow: visible;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  gap: 0;
}

/* ---- Marquee tracks ---- */
.apex-motion-track {
  width: 100%;
  overflow: hidden;
  padding-block: 9px;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.apex-motion-strip {
  display: flex;
  gap: 9px;
  width: max-content;
  will-change: transform;
}

.apex-motion-track--left  .apex-motion-strip { animation: apexMarqueeLeft  34s linear infinite; }
.apex-motion-track--right .apex-motion-strip { animation: apexMarqueeRight 38s linear infinite; }

@keyframes apexMarqueeLeft  { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes apexMarqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ---- Cards ---- */
.apex-motion-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid;
  flex-shrink: 0;
  user-select: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.apex-motion-card--outcome {
  background: rgba(0,229,176,0.08);
  border-color: rgba(0,229,176,0.24);
  color: rgba(0,229,176,0.95);
}
.apex-motion-card--feature {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
}
.apex-motion-card--before {
  background: rgba(255,90,60,0.06);
  border-color: rgba(255,90,60,0.18);
  color: rgba(255,100,70,0.72);
  font-style: italic;
}
.apex-motion-card--after {
  background: rgba(0,229,176,0.08);
  border-color: rgba(0,229,176,0.28);
  color: var(--accent, #00E5B0);
  font-style: italic;
}

.apex-motion-card__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, #00E5B0);
  flex-shrink: 0;
  animation: apexPulse 3s ease-in-out infinite;
}
.apex-motion-card__dot--dim {
  background: rgba(255,255,255,0.22);
  animation: none;
}

@keyframes apexPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.68); }
}

/* ---- Device wrapper ---- */
.apex-motion-device {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 86%;
  max-width: 400px;
  animation: apexDeviceFloat 8s ease-in-out infinite;
}

@keyframes apexDeviceFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50%       { transform: translate(-50%, -50%) translateY(-5px); }
}

.apex-motion-device__glow {
  position: absolute;
  inset: -90px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 65% 58% at 50% 50%,
    rgba(0,229,176,0.22) 0%,
    rgba(0,229,176,0.08) 38%,
    rgba(0,229,176,0.02) 60%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  animation: apexGlowPulse 5s ease-in-out infinite;
}

@keyframes apexGlowPulse {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}

/* ---- Browser mockup ---- */
.apex-motion-browser {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid rgba(0,229,176,0.18);
  overflow: hidden;
  background: #0A0C11;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.025),
    0 24px 64px rgba(0,0,0,0.58),
    0 6px 20px rgba(0,0,0,0.38),
    0 0 0 1px rgba(0,229,176,0.035);
}

.apex-motion-browser__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0D1018;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 34px;
}

.apex-motion-browser__dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.apex-motion-browser__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.055);
}

.apex-motion-browser__bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.045);
  border-radius: 4px;
  padding: 4px 9px;
  color: rgba(255,255,255,0.24);
  font-size: 9px;
  overflow: hidden;
  white-space: nowrap;
}

.apex-motion-browser__live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--accent, #00E5B0);
  background: rgba(0,229,176,0.06);
  border: 1px solid rgba(0,229,176,0.18);
  border-radius: 20px;
  padding: 2px 9px 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.apex-motion-live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, #00E5B0);
  animation: apexLiveBlink 2s ease-in-out infinite;
}

@keyframes apexLiveBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ---- Mini site interior ---- */
.apex-motion-site { background: #11141C; }

.apex-motion-site__hero-band {
  padding: 13px 13px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.038);
  background: linear-gradient(160deg, rgba(0,229,176,0.025) 0%, transparent 60%);
}

.apex-motion-site__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.apex-motion-site__logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.apex-motion-site__logo-sq {
  width: 10px;
  height: 10px;
  background: rgba(0,229,176,0.50);
  border-radius: 2px;
  flex-shrink: 0;
}
.apex-motion-site__logo-bar {
  width: 34px;
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.apex-motion-site__cta-pill {
  font-size: 8px;
  font-weight: 700;
  color: #0A0C10;
  background: var(--accent, #00E5B0);
  border-radius: 20px;
  padding: 3px 9px;
  letter-spacing: 0.02em;
}

.apex-motion-site__headline {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 9px;
}

.apex-motion-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.09);
}
.apex-motion-line--h1 { width: 72%; }
.apex-motion-line--h2 { width: 50%; background: rgba(255,255,255,0.055); }

.apex-motion-site__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 8.5px;
  font-weight: 700;
  color: #0A0C10;
  background: var(--accent, #00E5B0);
  border-radius: 6px;
  padding: 6px 11px;
  margin-bottom: 9px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(0,229,176,0.18);
  animation: apexCtaGlow 4s ease-in-out infinite;
}

@keyframes apexCtaGlow {
  0%, 100% { box-shadow: 0 2px 10px rgba(0,229,176,0.18); }
  50%       { box-shadow: 0 3px 18px rgba(0,229,176,0.32); }
}

.apex-motion-site__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 7.5px;
  color: rgba(255,255,255,0.30);
}
.apex-motion-site__stars svg {
  width: 8px;
  height: 8px;
  color: #FFC851;
  flex-shrink: 0;
}

/* ---- Metric cards ---- */
.apex-motion-site__metric-band {
  display: flex;
  gap: 7px;
  padding: 9px 13px 11px;
}

.apex-motion-metric-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 8px;
  padding: 7px 9px;
}

.apex-motion-metric-card--calls {
  background: rgba(0,229,176,0.04);
  border-color: rgba(0,229,176,0.12);
}

.apex-motion-metric-card__icon {
  width: 13px;
  height: 13px;
  color: var(--accent, #00E5B0);
  flex-shrink: 0;
}

.apex-motion-metric-card__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

/* Heading label (replaces hard number) */
.apex-motion-metric-card__label {
  font-size: 7.5px;
  color: rgba(255,255,255,0.34);
  font-weight: 500;
  white-space: nowrap;
}

.apex-motion-metric-card__label--heading {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent, #00E5B0);
  letter-spacing: -0.02em;
}

.apex-motion-metric-card__trend {
  font-size: 9px;
  color: var(--accent, #00E5B0);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Phone chip ---- */
.apex-motion-phone-chip {
  position: absolute;
  bottom: -13px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #080C10;
  background: var(--accent, #00E5B0);
  border-radius: 30px;
  padding: 6px 13px 6px 10px;
  box-shadow:
    0 4px 14px rgba(0,229,176,0.26),
    0 0 0 2px rgba(0,229,176,0.12);
  z-index: 4;
  animation: apexChipFloat 5s ease-in-out infinite;
  white-space: nowrap;
}

.apex-motion-phone-chip svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: #080C10;
}

@keyframes apexChipFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-4px) rotate(0deg); }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .apex-motion-strip,
  .apex-motion-device,
  .apex-motion-device__glow,
  .apex-motion-phone-chip,
  .apex-motion-card__dot,
  .apex-motion-live-dot,
  .apex-motion-site__cta-btn {
    animation: none !important;
    transform: none !important;
  }
  .apex-motion-device {
    transform: translate(-50%, -50%) !important;
  }
}

/* ---- Mobile: keep homepage clean and prevent visual overflow ---- */
@media (max-width: 880px) {
  .hero__visual {
    display: none;
  }
}


/* ============================================================
   MOBILE OPTIMISATION ONLY — DESKTOP UNCHANGED
   Paste at the very bottom of styles.css
============================================================ */

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .section,
  .hero,
  .cta-band {
    overflow-x: hidden;
  }

  /* ---------------- HERO ---------------- */

  .hero {
    padding-top: calc(68px + 56px);
    padding-bottom: 64px;
  }

  .hero__inner {
    display: block;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.02;
    margin-bottom: 24px;
  }

  .hero__sub {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 32px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 34px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero__actions .btn--ghost {
    opacity: 0.72;
    border-color: var(--border);
  }

  .trust-bar {
    padding-top: 22px;
    gap: 10px 16px;
  }

  .trust-item {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero__visual,
  .apex-motion-scene {
    display: none !important;
  }

  /* ---------------- SECTION RHYTHM ---------------- */

  :root {
    --section-gap: 76px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-label,
  .eyebrow {
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(31px, 9vw, 43px);
    line-height: 1.06;
    margin-bottom: 16px;
  }

  .section-intro {
    font-size: 14.5px;
    line-height: 1.68;
    max-width: 34ch;
  }

  /* ---------------- CARDS ---------------- */

  .problem-card,
  .service-card,
  .process-card,
  .enquiry-type,
  .pricing-card,
  .sol-item,
  .cs-step {
    padding: 24px 22px;
  }

  .problem-card p,
  .service-card__desc,
  .process-card__body p,
  .sol-item__text p,
  .enquiry-type__desc {
    font-size: 13.5px;
    line-height: 1.62;
  }

  .problem-card h3,
  .service-card__title,
  .process-card__title,
  .enquiry-type__title {
    line-height: 1.18;
  }

  /* ---------------- CTA AREAS ---------------- */

  .cta-box {
    padding: 42px 22px;
  }

  .cta-box__title {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.06;
    margin-bottom: 16px;
  }

  .cta-box__sub {
    font-size: 14px;
    line-height: 1.64;
    margin-bottom: 28px;
  }

  .cta-box__actions,
  .enquiry-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-box__actions .btn,
  .enquiry-cta__actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .cta-box__actions .btn--ghost,
  .enquiry-cta__actions .btn--ghost {
    opacity: 0.68;
    border-color: var(--border);
  }

  /* ---------------- PRICING ---------------- */

  .pricing-card {
    border-radius: var(--r-lg);
  }

  .pricing-card .btn {
    width: 100%;
  }

  /* ---------------- MOBILE STICKY CTA SAFETY ---------------- */

  .mob-cta-bar {
    padding-inline: 16px;
  }

  .mob-cta-bar__btn {
    font-size: 13.5px;
  }

  /* Prevent final footer content being hidden behind sticky CTA */
  body {
    padding-bottom: 78px;
  }

  /* ---------------- FOOTER ---------------- */

  .footer {
    padding-top: 36px;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 28px;
  }

  .footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px 16px;
  }

  .footer__legal a {
    min-height: 28px;
    font-size: 12px;
  }

  .footer__bottom {
    padding-block: 16px;
  }

  .footer__bottom p {
    font-size: 11.5px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  .container {
    padding-inline: 20px;
  }

  .hero {
    padding-top: calc(68px + 44px);
    padding-bottom: 56px;
  }

  .hero__h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .hero__sub {
    font-size: 14px;
    line-height: 1.62;
    max-width: 100%;
  }

  :root {
    --section-gap: 66px;
  }

  .section-title {
    font-size: clamp(30px, 10vw, 39px);
  }

  .problem-card,
  .service-card,
  .process-card,
  .enquiry-type,
  .pricing-card,
  .sol-item,
  .cs-step {
    padding: 22px 20px;
  }

  .cta-box {
    padding: 36px 20px;
  }

  .trust-bar {
    gap: 8px 12px;
  }

  .trust-item {
    font-size: 11.5px;
  }
}

/* ============================================================
   MOCKUP STEPS — "Start With the Mock-Up. Decide From There."
   Replaces the old enquiry-types / pricing cards section.
============================================================ */
.mockup-steps { background: var(--bg-2); }

.mockup-steps__header { margin-bottom: 52px; }

/* Three-column grid — connected card strip */
.mockup-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 0;
}

.mockup-step {
  background: var(--surface);
  padding: 36px 32px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s var(--ease);
}
.mockup-step:last-child { border-right: none; }
.mockup-step:hover { background: var(--surface-2); }

/* Accent top-line on hover */
.mockup-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,229,176,0), transparent);
  transition: background 0.36s var(--ease);
}
.mockup-step:hover::before {
  background: linear-gradient(90deg, transparent, rgba(0,229,176,0.5), transparent);
}

/* Step number */
.mockup-step__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 18px;
}

/* Icon */
.mockup-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.14);
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.mockup-step:hover .mockup-step__icon {
  background: rgba(0,229,176,0.13);
  border-color: rgba(0,229,176,0.28);
  box-shadow: 0 0 12px rgba(0,229,176,0.12);
}

/* Title */
.mockup-step__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 10px;
}

/* Body */
.mockup-step__body {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.74;
  margin-bottom: 20px;
}

/* Tag pill */
.mockup-step__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.16);
  border-radius: 100px;
  padding: 4px 12px;
  opacity: 0.85;
}

/* CTA bar below the cards */
.mockup-steps__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 28px 36px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
}

.mockup-steps__cta-text {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  flex: 1;
  min-width: 200px;
  line-height: 1.4;
}

.mockup-steps__cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .mockup-steps__grid { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .mockup-step { border-right: none; border-bottom: 1px solid var(--border); }
  .mockup-step:last-child { border-bottom: none; }
  .mockup-steps__cta { padding: 24px 28px; }
}

@media (max-width: 768px) {
  .mockup-steps__header { margin-bottom: 32px; }
  .mockup-step { padding: 26px 22px 24px; }
  .mockup-step__num { margin-bottom: 12px; }
  .mockup-step__icon { width: 36px; height: 36px; margin-bottom: 16px; }
  .mockup-step__title { font-size: 15.5px; margin-bottom: 7px; }
  .mockup-step__body  { font-size: 13px; line-height: 1.66; margin-bottom: 14px; }
  .mockup-steps__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--r-lg);
    margin-top: 14px;
  }
  .mockup-steps__cta-text { font-size: 15px; }
  .mockup-steps__cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .mockup-steps__cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .mockup-step { padding: 22px 18px 20px; }
  .mockup-step__tag { font-size: 10px; padding: 3px 10px; }
}


/* ============================================================
   Supports the mock-up request page content blocks.
============================================================ */

/* ---- Info blocks (Why it's free / What happens after) ---- */
.bk-info-block {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bk-info-block__label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 14px;
}

.bk-info-block__body {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.72;
  margin: 0;
}

/* ---- What happens after: step list ---- */
.bk-next-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* Reuses .bk-meta__item / .bk-meta__icon from existing bk namespace */

/* ---- Form card header ---- */
.bk-form-header {
  margin-bottom: 20px;
  padding: 0 2px;
}

.bk-form-header__title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.bk-form-header__sub {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.65;
}

/* ---- Form card reassurance text ---- */
.bk-form-reassurance {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-3);
  margin: 16px 2px 0;
  line-height: 1.72;
}

/* ---- WhatsApp alternative below form card ---- */
.bk-wa-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.bk-wa-alt__text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-3);
}

.bk-wa-alt__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  transition: opacity 0.15s;
}

.bk-wa-alt__link:hover { opacity: 0.75; }
.bk-wa-alt__link svg { flex-shrink: 0; display: block; }

/* ---- GHL form iframe inside card ---- */
.bk-calendly-card {
  padding: 28px;
}

.bk-calendly-card iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* ---- Mobile overrides for new booking blocks ---- */
@media (max-width: 768px) {
  .bk-info-block { padding-top: 22px; }
  .bk-info-block__body { font-size: 13px; }
  .bk-next-list { padding-top: 22px; gap: 12px; }
  .bk-form-header { margin-bottom: 16px; }
  .bk-form-header__title { font-size: 16px; }
  .bk-calendly-card { padding: 20px; }
  .bk-form-reassurance { font-size: 11.5px; margin-top: 14px; }
}

@media (max-width: 480px) {
  .bk-info-block__label { font-size: 10px; }
  .bk-info-block__body  { font-size: 12.5px; }
  .bk-calendly-card { padding: 16px; }
  .bk-form-reassurance { font-size: 11px; }
}

/* ============================================================
   MOBILE IMPROVEMENTS — ApexLocal v2
   All rules below are strictly mobile-only (max-width: 768px
   and max-width: 520px). Desktop styles are untouched.
   ============================================================ */

/* ============================================================
   HERO — mobile tightening
   ============================================================ */
@media (max-width: 768px) {
  /* Hide animated ticker rows on mobile — reduce visual noise */
  .apex-motion-track { display: none; }

  /* Keep device mockup but smaller */
  .apex-motion-scene { padding: 0; }

  /* Hero secondary ghost button — smaller on mobile */
  .hero__actions .btn--ghost {
    font-size: 13.5px;
    padding: 12px 20px;
    min-height: 44px;
    opacity: 0.85;
  }

  /* Trust bar tighter */
  .trust-bar { gap: 6px 12px; padding-top: 16px; }
  .trust-item { font-size: 11px; gap: 5px; }

  /* Hero padding tighter on mobile */
  .hero { padding-top: calc(68px + 44px); padding-bottom: 52px; }
}

@media (max-width: 520px) {
  /* On very small screens, hide the hero visual entirely if it exists */
  .hero__visual { display: none !important; }

  /* Hero heading tighter */
  .hero__h1 { font-size: clamp(28px, 9.5vw, 36px); line-height: 1.06; }

  /* Hero CTA block full width */
  .hero__actions { gap: 8px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Trust bar wraps comfortably */
  .trust-bar { flex-wrap: wrap; gap: 5px 10px; }
}

  /* Section title inside promo video smaller on mobile */
}

/* ============================================================
   PROBLEM SECTION — scannable cards
   ============================================================ */
@media (max-width: 768px) {
  .problem { padding-block: 52px; }

  /* Cards already stack to 1 col — refine spacing and text */
  .problem-card { padding: 18px 18px; }
  .problem-card__num { margin-bottom: 8px; }
  .problem-card h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
  }
  .problem-card p {
    font-size: 12.5px;
    line-height: 1.58;
    color: var(--text-3);
    margin: 0;
  }
}

@media (max-width: 520px) {
  .problem-card { padding: 16px 16px; }
  .problem-card h3 { font-size: 14.5px; }
  .problem-card p  { font-size: 12px; }
}

/* ============================================================
   SOLUTION / FREE MOCK-UP — tighter layout
   ============================================================ */
@media (max-width: 768px) {
  .solution { padding-block: 52px; }
  .solution__layout { gap: 28px; }

  /* Left column CTA button full width */
  .solution__left .btn { width: 100%; justify-content: center; }

  /* Feature item text */
  .sol-item__text h4 { font-size: 14px; margin-bottom: 3px; }
  .sol-item__text p  { font-size: 12.5px; line-height: 1.6; }

  /* Tighter item padding */
  .sol-item { padding: 16px 16px; gap: 12px; }
}

/* ============================================================
   SERVICES — scannable cards on mobile
   ============================================================ */
@media (max-width: 768px) {
  .services { padding-block: 52px; }

  .service-card { padding: 20px 18px; }
  .service-card__title { font-size: 16px; margin-bottom: 6px; }
  .service-card__desc  { font-size: 13px; line-height: 1.6; margin-bottom: 12px; }

  /* Hide third outcome li — already done via mob-hide in HTML */
  .service-card__outcomes { gap: 5px; margin-bottom: 14px; }
  .service-card__outcomes li { font-size: 12.5px; line-height: 1.48; }

  .service-card__link {
    font-size: 13px;
    min-height: 40px;
    padding: 10px 0;
  }
}

/* ============================================================
   TRANSFORMATION — callout cards mobile
   ============================================================ */
@media (max-width: 768px) {
  .concept { padding-block: 52px; }

  /* Callout cards already show 3 items (nth-child rule in existing CSS) */
  .tf2-callout { padding: 15px 16px 13px; }
  .tf2-callout__list li { font-size: 12.5px; line-height: 1.42; }

  /* Reduce top margin of callout cards */
  .tf2-callouts { margin-top: 12px; }
}

/* ============================================================
   PROCESS — horizontal card rows on mobile
   ============================================================ */
@media (max-width: 768px) {
  .process { padding-block: 52px; }

  .process-card__body h3 {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.26;
    margin-bottom: 4px;
  }
  .process-card__body p {
    font-size: 12.5px;
    line-height: 1.58;
    color: var(--text-3);
  }
  .process-card { padding: 17px 16px; gap: 13px; }
  .process-card__num { width: 34px; height: 34px; font-size: 12px; }
}

/* ============================================================
   MOCK-UP STEPS — clean stacked cards
   ============================================================ */
@media (max-width: 768px) {
  .mockup-steps { padding-block: 52px; }
  .mockup-steps__header { margin-bottom: 26px; }

  .mockup-step { padding: 22px 18px 20px; }
  .mockup-step__num   { margin-bottom: 10px; font-size: 9.5px; }
  .mockup-step__icon  { width: 34px; height: 34px; border-radius: 8px; margin-bottom: 14px; }
  .mockup-step__title { font-size: 15px; margin-bottom: 6px; font-weight: 700; }
  .mockup-step__body  { font-size: 13px; line-height: 1.62; margin-bottom: 12px; }
  .mockup-step__tag   { font-size: 10px; padding: 3px 10px; }

  /* CTA bar full width button */
  .mockup-steps__cta  { padding: 20px 18px; margin-top: 12px; gap: 14px; }
  .mockup-steps__cta-text { font-size: 14.5px; }
  .mockup-steps__cta-actions { width: 100%; flex-direction: column; gap: 8px; }
  .mockup-steps__cta-actions .btn { width: 100%; justify-content: center; min-height: 48px; font-size: 14.5px; }
}

/* ============================================================
   FINAL CTA BAND — ultra-clean on mobile
   ============================================================ */
@media (max-width: 768px) {
  .cta-band { padding-block: 52px; }
  .cta-box  { padding: 40px 20px; }
  .cta-box__title { font-size: clamp(24px, 7vw, 30px); line-height: 1.1; margin-bottom: 10px; }
  .cta-box__sub   { font-size: 13.5px; line-height: 1.68; margin-bottom: 22px; }
  .cta-box__actions { flex-direction: column; align-items: stretch; gap: 8px; margin-bottom: 14px; }
  .cta-box .btn--xl { width: 100%; padding: 15px 20px; font-size: 15px; justify-content: center; }
  .cta-box__reassurance { font-size: 11px; }
}

@media (max-width: 520px) {
  .cta-box { padding: 32px 16px; }
  .cta-box__title { font-size: clamp(22px, 8vw, 28px); }
}

/* ============================================================
   FOOTER — compact on mobile, hide domain text
   ============================================================ */
@media (max-width: 768px) {
  .footer { padding-top: 36px; }
  .footer__inner { flex-direction: column; gap: 20px; padding-bottom: 28px; }
  .footer__tagline { font-size: 12.5px; line-height: 1.6; margin-top: 8px; color: var(--text-3); max-width: 260px; }
  .footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px 18px;
  }
  .footer__legal a {
    font-size: 12px;
    opacity: 0.7;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }
  .footer__bottom p { font-size: 11px; line-height: 1.72; opacity: 0.5; }
}

/* ============================================================
   BOOKING PAGE — mobile hero and form
   ============================================================ */
@media (max-width: 768px) {
  .bk-hero { padding-top: calc(68px + 40px); padding-bottom: 40px; }
  .bk-hero__title { font-size: clamp(28px, 8.5vw, 38px); margin-bottom: 12px; }
  .bk-hero__sub { font-size: 14.5px; line-height: 1.68; margin-bottom: 20px; }

  /* Trust items — already reduced to shorter text in HTML */
  .bk-trust { gap: 6px 12px; }
  .bk-trust__sep { display: none; }
  .bk-trust__item { font-size: 12px; }

  /* Form section — tighten layout */
  .bk-section { padding-block: 40px; }
  .bk-layout  { grid-template-columns: 1fr; gap: 28px; }

  /* Cover list tighter */
  .bk-cover { margin-bottom: 0; }
  .bk-cover__title { font-size: 18px; margin-bottom: 14px; line-height: 1.28; }
  .bk-cover-list { gap: 10px; }
  .bk-cover-item { font-size: 13px; line-height: 1.55; gap: 10px; }

  /* Show form early — reorder on mobile */
  .bk-layout { display: flex; flex-direction: column; }
  .bk-calendly-wrap { order: -1; }
  .bk-left { order: 1; }

  /* Form card padding */
  .bk-calendly-card { padding: 18px 16px; }
  .bk-form-header { margin-bottom: 14px; }
  .bk-form-header__title { font-size: 16px; line-height: 1.3; }
  .bk-form-header__sub   { font-size: 13px; line-height: 1.58; }
  .bk-form-reassurance   { font-size: 11.5px; margin-top: 14px; line-height: 1.65; }

  /* Reassurance section */
  .bk-reassurance { padding-block: 40px; }
  .bk-reassurance__card { padding: 32px 20px; border-radius: var(--r-lg); }
  .bk-reassurance__title { font-size: 20px; margin-bottom: 10px; }
  .bk-reassurance__text  { font-size: 13.5px; line-height: 1.68; }
}

@media (max-width: 520px) {
  .bk-hero { padding-top: calc(68px + 32px); padding-bottom: 32px; }
  .bk-hero__title { font-size: clamp(26px, 9vw, 34px); }
  .bk-hero__sub   { font-size: 14px; }

  .bk-cover__title { font-size: 17px; }
  .bk-cover-item   { font-size: 12.5px; }

  .bk-calendly-card { padding: 14px 14px; }
  .bk-form-header__title { font-size: 15px; }
  .bk-form-header__sub   { font-size: 12.5px; }

  .bk-section { padding-block: 32px; }
  .bk-reassurance { padding-block: 32px; }
  .bk-reassurance__card { padding: 26px 16px; }
  .bk-reassurance__title { font-size: 18px; }
}

/* ============================================================
   GLOBAL SECTION PADDING — tighter on small mobile
   ============================================================ */
@media (max-width: 520px) {
  :root { --section-gap: 52px; }
  .section { padding-block: 52px; }
  .section-header { margin-bottom: 22px; }
  .section-title  { font-size: clamp(22px, 7.5vw, 28px); line-height: 1.13; }
  .section-intro  { font-size: 13.5px; line-height: 1.72; }
}

/* ============================================================
   PREVENT HORIZONTAL SCROLL — safety net
   ============================================================ */
@media (max-width: 768px) {
  body, html { max-width: 100%; overflow-x: hidden; }
  .apex-motion-scene { overflow: hidden; max-width: 100%; }
}


/* ============================================================
   FOOTER — simplified clean version
   Replaces all previous footer layout rules.
   Only the footer is affected.
============================================================ */

/* Reset old footer padding and restate cleanly */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

/* Hide any old footer columns or tagline if they exist in markup */
.footer__cols,
.footer__col,
.footer__tagline,
.footer__sub {
  display: none !important;
}

/* Top row: logo + domain left, legal links right */
.footer__inner--simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}

/* Brand block: logo stacked above domain */
.footer__brand--simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 0 0 auto;
}

/* Domain link styled with accent colour */
.footer__domain--link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.85;
  transition: opacity 0.2s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.footer__domain--link:hover { opacity: 1; }

/* Legal links: right-aligned column */
.footer__legal-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.footer__legal-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
  transition: color 0.2s;
  min-height: 30px;
  display: flex;
  align-items: center;
}
.footer__legal-links a:hover { color: var(--accent); }

/* Bottom bar: always centred */
.footer__bottom--centered {
  border-top: 1px solid var(--border);
  padding-block: 18px;
}

.footer__bottom--centered p {
  font-size: 12px;
  color: var(--text-3);
  opacity: 0.6;
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

.footer__bottom--centered a {
  color: var(--text-3);
  margin-inline: 2px;
  transition: color 0.18s;
}
.footer__bottom--centered a:hover { color: var(--accent); }

/* ---- Mobile: max-width 768px ---- */
@media (max-width: 768px) {
  .footer { padding-top: 32px; }

  .footer__inner--simple {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-bottom: 24px;
  }

  .footer__brand--simple {
    align-items: center;
  }

  .footer__legal-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px 20px;
    flex-wrap: wrap;
  }

  .footer__legal-links a {
    font-size: 12.5px;
    min-height: 36px;
  }

  .footer__domain--link { font-size: 12.5px; }

  .footer__bottom--centered { padding-block: 16px; }
  .footer__bottom--centered p { font-size: 11px; line-height: 1.72; opacity: 0.5; }
}

/* ---- Mobile: max-width 520px ---- */
@media (max-width: 520px) {
  .footer { padding-top: 28px; }

  .footer__inner--simple { gap: 14px; padding-bottom: 20px; }

  .footer__legal-links a { font-size: 12px; }
  .footer__domain--link  { font-size: 12px; }

  .footer__bottom--centered p { font-size: 10.5px; }
}

/* ============================================================
   MOBILE FINAL PASS — ApexLocal
   All rules below are strictly max-width guards.
   Desktop (min-width: 769px) is completely untouched.
   ============================================================ */

/* ============================================================
   HERO — homepage
   ============================================================ */
@media (max-width: 768px) {

  /* Tighter top padding now the visual is hidden */
  .hero {
    padding-top: calc(68px + 36px);
    padding-bottom: 48px;
  }

  /* Headline: large but not overwhelming */
  .hero__h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
    margin-bottom: 18px;
  }

  /* Subtext: short mobile copy already in HTML via mob-only */
  .hero__sub {
    font-size: 14.5px;
    line-height: 1.64;
    margin-bottom: 26px;
    max-width: 32ch;
  }

  /* CTA buttons: full width stack */
  .hero__actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
  }

  /* Trust bar: compact row */
  .trust-bar {
    padding-top: 18px;
    gap: 6px 14px;
  }
  .trust-item { font-size: 11.5px; gap: 5px; }

  /* Hide decorative animated scene entirely */
  .hero__visual,
  .apex-motion-scene { display: none !important; }
}

@media (max-width: 520px) {
  .hero {
    padding-top: calc(68px + 28px);
    padding-bottom: 40px;
  }
  .hero__h1 { font-size: clamp(30px, 10.5vw, 40px); }
  .hero__sub { font-size: 14px; max-width: 100%; }
  .trust-item { font-size: 11px; }
}


/* ============================================================
   SECTION RHYTHM — global mobile padding
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  .section { padding-block: 56px; }
  .section-header { margin-bottom: 28px; }
  .section-label,
  .eyebrow { margin-bottom: 14px; font-size: 10px; }
  .section-title {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.07;
    margin-bottom: 12px;
  }
  .section-intro {
    font-size: 14px;
    line-height: 1.66;
    max-width: 34ch;
  }
}

@media (max-width: 520px) {
  :root { --section-gap: 48px; }
  .section { padding-block: 48px; }
  .section-header { margin-bottom: 22px; }
  .section-title { font-size: clamp(24px, 9vw, 32px); }
  .section-intro { font-size: 13.5px; }
}


/* ============================================================
   PROBLEM SECTION — scannable single-column cards
   ============================================================ */
@media (max-width: 768px) {
  .problem { padding-block: 48px; }
  .problem-grid { grid-template-columns: 1fr; }

  .problem-card {
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  /* Number becomes inline with title on very small screens */
  .problem-card__num {
    font-size: 10px;
    margin-bottom: 6px;
    opacity: 0.65;
    flex-shrink: 0;
    min-width: 28px;
  }

  .problem-card h3 {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
  }

  /* Mobile short copy already wired via mob-only in index.html */
  .problem-card p {
    font-size: 12.5px;
    line-height: 1.52;
    color: var(--text-3);
    margin: 0;
  }
}

@media (max-width: 520px) {
  .problem-card { padding: 14px 16px; gap: 12px; }
  .problem-card h3 { font-size: 14px; }
  .problem-card p  { font-size: 12px; }
}


/* ============================================================
   SOLUTION / FREE MOCK-UP SECTION
   ============================================================ */
@media (max-width: 768px) {
  .solution { padding-block: 48px; }
  .solution__layout { gap: 24px; }

  /* Heading smaller on mobile */
  .solution__left .section-title { font-size: clamp(26px, 8vw, 34px); }

  /* Feature items: tight, icon + short text only */
  .sol-item {
    padding: 14px 16px;
    gap: 12px;
    align-items: center;
  }
  .sol-item__icon { width: 32px; height: 32px; flex-shrink: 0; }
  .sol-item__text h4 { font-size: 13.5px; margin-bottom: 2px; font-weight: 700; }

  /* Hide long paragraph copy on mobile — mob-only/mob-hide in HTML handles per-item copy */
  .sol-item__text p { font-size: 12px; line-height: 1.55; color: var(--text-3); }

  /* CTA full width */
  .solution__left .btn { width: 100%; justify-content: center; }
}

@media (max-width: 520px) {
  .sol-item { padding: 12px 14px; }
  .sol-item__text h4 { font-size: 13px; }
  .sol-item__text p  { font-size: 11.5px; }
}


/* ============================================================
   SERVICES — who we work with
   ============================================================ */
@media (max-width: 768px) {
  .services { padding-block: 48px; }
  .services-grid { grid-template-columns: 1fr; gap: 10px; }

  .service-card {
    padding: 18px 18px;
    border-radius: var(--r-lg);
  }

  .service-card__num { margin-bottom: 8px; font-size: 10px; opacity: 0.65; }
  .service-card__title { font-size: 15.5px; margin-bottom: 6px; line-height: 1.22; }

  /* Long description hidden on mobile via mob-hide in HTML */
  .service-card__desc { font-size: 12.5px; line-height: 1.58; margin-bottom: 10px; color: var(--text-3); }

  /* Show max 2 outcome bullet points — nth-child hide in HTML or CSS */
  .service-card__outcomes { gap: 5px; margin-bottom: 12px; }
  .service-card__outcomes li { font-size: 12.5px; line-height: 1.45; }
  .service-card__outcomes li:nth-child(n+3) { display: none; }

  .service-card__link { font-size: 13px; min-height: 40px; padding: 8px 0; }
}

@media (max-width: 520px) {
  .service-card { padding: 16px 16px; }
  .service-card__title { font-size: 15px; }
}


/* ============================================================
   TRANSFORMATION — before/after slider
   ============================================================ */
@media (max-width: 768px) {
  .concept { padding-block: 48px; }

  /* Slider full width, comfortable touch height */
  .tf2-stage {
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .tf2-slider { height: clamp(200px, 55vw, 260px); }

  /* Handle larger tap target */
  .tf2-handle__grip { width: 40px; height: 40px; }

  /* Labels smaller */
  .tf2-label { font-size: 9px; padding: 3px 9px; top: 12px; }

  /* Hint pill tighter */
  .tf2-hint { font-size: 9px; padding: 5px 11px; }

  /* Callout cards: show only 3 list items each side */
  .tf2-callouts { grid-template-columns: 1fr; gap: 10px; margin-top: 0; }
  .tf2-callout { padding: 14px 16px 12px; }
  .tf2-callout__header { margin-bottom: 14px; }
  .tf2-callout__list li { font-size: 12.5px; line-height: 1.42; }
  .tf2-callout__list li:nth-child(n+4) { display: none; }
}

@media (max-width: 520px) {
  .tf2-slider { height: clamp(185px, 58vw, 230px); }
  .tf2-stage  { border-radius: 10px; }
  .tf2-callout { padding: 12px 14px 10px; }
}


/* ============================================================
   PROCESS SECTION
   ============================================================ */
@media (max-width: 768px) {
  .process { padding-block: 48px; }

  /* Single column horizontal rows */
  .process-grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-lg);
  }
  .process-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .process-card:last-child { border-bottom: none; }
  .process-card:nth-child(3),
  .process-card:nth-child(4) { border-top: none; }

  .process-card__step {
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 1px;
  }
  .process-card__num { width: 32px; height: 32px; font-size: 11.5px; }
  .process-card__body { flex: 1; }
  .process-card__body h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.24;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
  }
  /* Mobile short copy wired via mob-only in HTML */
  .process-card__body p {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-3);
  }
}

@media (max-width: 520px) {
  .process-card { padding: 14px 14px; gap: 12px; }
  .process-card__num { width: 30px; height: 30px; font-size: 11px; }
  .process-card__body h3 { font-size: 13.5px; }
}


/* ============================================================
   MOCK-UP STEPS SECTION
   ============================================================ */
@media (max-width: 768px) {
  .mockup-steps { padding-block: 48px; }
  .mockup-steps__header { margin-bottom: 24px; }

  /* Heading smaller so it does not dominate */
  .mockup-steps__header .section-title {
    font-size: clamp(24px, 7.5vw, 32px);
    line-height: 1.08;
  }

  .mockup-steps__grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-lg);
  }
  .mockup-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 18px 16px 16px;
  }
  .mockup-step:last-child { border-bottom: none; }

  .mockup-step__num   { font-size: 9.5px; margin-bottom: 10px; }
  .mockup-step__icon  { width: 32px; height: 32px; border-radius: 8px; margin-bottom: 12px; }
  .mockup-step__title { font-size: 14.5px; font-weight: 700; margin-bottom: 5px; }
  .mockup-step__body  { font-size: 12.5px; line-height: 1.6; margin-bottom: 10px; color: var(--text-3); }
  .mockup-step__tag   { font-size: 9.5px; padding: 3px 10px; }

  /* CTA bar: stacked, full width button */
  .mockup-steps__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
    border-radius: var(--r-lg);
    margin-top: 10px;
  }
  .mockup-steps__cta-text { font-size: 14px; line-height: 1.42; }
  .mockup-steps__cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .mockup-steps__cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 14.5px;
  }
}

@media (max-width: 520px) {
  .mockup-step { padding: 16px 14px 14px; }
  .mockup-steps__cta { padding: 16px 14px; }
}


/* ============================================================
   FINAL CTA BAND
   ============================================================ */
@media (max-width: 768px) {
  .cta-band { padding-block: 48px; }
  .cta-box {
    padding: 36px 20px;
    border-radius: var(--r-lg);
  }
  .cta-box__title {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.07;
    margin-bottom: 12px;
  }
  .cta-box__sub {
    font-size: 13.5px;
    line-height: 1.62;
    margin-bottom: 22px;
  }
  .cta-box__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 12px;
  }
  .cta-box__actions .btn,
  .cta-box .btn--xl {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    font-size: 15px;
    padding: 14px 20px;
  }
  .cta-box__reassurance { font-size: 11px; }
}

@media (max-width: 520px) {
  .cta-box { padding: 30px 16px; }
  .cta-box__title { font-size: clamp(22px, 8.5vw, 28px); }
}


/* ============================================================
   BOOKING PAGE — hero and form
   ============================================================ */
@media (max-width: 768px) {
  /* Tighter hero — get user to form faster */
  .bk-hero {
    padding-top: calc(68px + 32px);
    padding-bottom: 36px;
  }

  .bk-badge { font-size: 10px; padding: 5px 11px; margin-bottom: 20px; }

  .bk-hero__title {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .bk-hero__sub {
    font-size: 14.5px;
    line-height: 1.64;
    margin-bottom: 18px;
  }

  /* Trust bar: no separator, tight */
  .bk-trust     { gap: 6px 14px; }
  .bk-trust__sep { display: none; }
  .bk-trust__item { font-size: 12px; }

  /* ---- Form section ---- */
  .bk-section { padding-block: 36px; }

  /* Stack: form first, info second */
  .bk-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .bk-calendly-wrap { order: -1; }
  .bk-left { order: 1; }

  /* Form card: full width, minimal padding */
  .bk-calendly-card {
    padding: 16px 14px;
    border-radius: var(--r-lg);
  }
  .bk-form-header { margin-bottom: 12px; }
  .bk-form-header__title { font-size: 15.5px; line-height: 1.28; }
  .bk-form-header__sub   { font-size: 12.5px; line-height: 1.55; }

  /* Iframe: let GHL fill the card naturally */
  .bk-calendly-card iframe {
    width: 100%;
    border-radius: 6px;
  }

  /* Reassurance line under form: short */
  .bk-form-reassurance {
    font-size: 11px;
    margin-top: 12px;
    line-height: 1.62;
    color: var(--text-3);
    opacity: 0.8;
  }

  /* What the mock-up covers: tight list */
  .bk-cover { margin-bottom: 0; }
  .bk-cover__title { font-size: 17px; margin-bottom: 12px; line-height: 1.26; }
  .bk-cover-list { gap: 9px; }
  .bk-cover-item { font-size: 12.5px; line-height: 1.5; gap: 10px; }

  /* ---- Reassurance section ---- */
  .bk-reassurance { padding-block: 36px; }
  .bk-reassurance__card {
    padding: 28px 18px;
    border-radius: var(--r-lg);
  }
  .bk-reassurance__icon { width: 40px; height: 40px; margin-bottom: 18px; }
  .bk-reassurance__title { font-size: 19px; margin-bottom: 8px; }
  .bk-reassurance__text  { font-size: 13px; line-height: 1.65; }
}

@media (max-width: 520px) {
  .bk-hero {
    padding-top: calc(68px + 24px);
    padding-bottom: 28px;
  }
  .bk-hero__title { font-size: clamp(24px, 9.5vw, 32px); }
  .bk-hero__sub   { font-size: 14px; }
  .bk-badge       { font-size: 9.5px; padding: 4px 10px; margin-bottom: 16px; }

  .bk-section     { padding-block: 28px; }
  .bk-calendly-card { padding: 12px 12px; }
  .bk-cover__title  { font-size: 16px; }
  .bk-cover-item    { font-size: 12px; }

  .bk-reassurance { padding-block: 28px; }
  .bk-reassurance__card { padding: 22px 14px; }
  .bk-reassurance__title { font-size: 17px; }
}


/* ============================================================
   FOOTER — simple clean mobile
   (Reinforces the simplified footer structure)
   ============================================================ */
@media (max-width: 768px) {
  .footer { padding-top: 28px; }

  .footer__inner--simple {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding-bottom: 20px;
  }
  .footer__brand--simple { align-items: center; }

  .footer__legal-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px 18px;
    flex-wrap: wrap;
  }
  .footer__legal-links a { font-size: 12.5px; min-height: 36px; }
  .footer__domain--link  { font-size: 12.5px; }

  .footer__bottom--centered { padding-block: 14px; }
  .footer__bottom--centered p {
    font-size: 10.5px;
    line-height: 1.7;
    opacity: 0.5;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .footer { padding-top: 24px; }
  .footer__inner--simple { gap: 12px; padding-bottom: 16px; }
  .footer__legal-links a { font-size: 12px; }
  .footer__domain--link  { font-size: 12px; }
  .footer__bottom--centered p { font-size: 10px; }
}


/* ============================================================
   GLOBAL SAFETY NET — no horizontal scroll
   ============================================================ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .section,
  .bk-hero,
  .bk-section,
  .bk-reassurance,
  .cta-band,
  .concept,
  .tf2-stage { overflow-x: hidden; }
}

/* ============================================================
   MOBILE POLISH OVERRIDES — ApexLocal
   Paste after the current mobile final pass
   ============================================================ */

/* Make mobile-only text behaviour reliable */
.mob-only {
  display: none;
}

@media (max-width: 768px) {
  .mob-hide {
    display: none !important;
  }

  .mob-only {
    display: inline !important;
  }
}

/* Fix problem cards so number sits left and title/text stack neatly */
@media (max-width: 768px) {
  .problem-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: start;
  }

  .problem-card__num {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 2px 0 0;
    min-width: 0;
  }

  .problem-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 3px;
  }

  .problem-card p {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Make hero microcopy less dense on mobile */
@media (max-width: 768px) {
  .hero__copy > p[style] {
    font-size: 11.5px !important;
    line-height: 1.55 !important;
    margin-top: 10px !important;
    max-width: 32ch;
  }

  .hero__actions {
    margin-bottom: 16px;
  }

  .trust-bar {
    margin-top: 12px;
  }
}

/* Make mobile trust bars easier to scan */
@media (max-width: 768px) {
  .trust-bar,
  .bk-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-top: 1px solid var(--border);
  }

  .bk-trust {
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .trust-item,
  .bk-trust__item {
    color: var(--text-2);
    line-height: 1.35;
  }
}

/* Booking page: bring form even closer and reduce reading load */
@media (max-width: 768px) {
  .bk-layout {
    gap: 18px;
  }

  .bk-left {
    margin-top: 0;
  }

  .bk-cover {
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: rgba(255,255,255,0.015);
  }

  .bk-cover .section-label {
    margin-bottom: 10px;
  }

  .bk-cover-list {
    gap: 8px;
  }

  .bk-form-reassurance {
    max-width: 34ch;
  }
}

/* GHL form mobile safety */
@media (max-width: 768px) {
  .bk-calendly-card iframe {
    display: block;
    min-height: 620px;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .bk-calendly-card iframe {
    min-height: 660px;
  }
}

/* Make service cards and solution cards feel less text-heavy */
@media (max-width: 768px) {
  .sol-item__text p,
  .service-card__desc,
  .service-card__outcomes li,
  .process-card__body p,
  .mockup-step__body {
    color: var(--text-3);
  }

  .service-card__outcomes {
    margin-top: 8px;
  }
}

/* Footer: cleaner mobile stacking */
@media (max-width: 768px) {
  .footer {
    padding-top: 24px;
  }

  .footer__inner--simple {
    padding-top: 0;
  }

  .footer__bottom--centered p {
    max-width: 34ch;
    margin-inline: auto;
  }
}

/* ============================================================
   AUDIT SECTION — Website Revenue Leak
   ============================================================ */
.audit { background: var(--bg-2); }

.audit-header { margin-bottom: 48px; }

/* Comparison panel */
.audit-panel {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: visible;
  margin-bottom: 36px;
  box-shadow: 0 0 100px rgba(0,229,176,0.08), 0 2px 24px rgba(0,0,0,0.3);
  position: relative;
}

.audit-panel__col {
  padding: 40px 44px;
  border-radius: 0;
}

.audit-panel__col--bad {
  background: linear-gradient(140deg, rgba(255,80,80,0.08) 0%, var(--surface) 50%);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}

.audit-panel__col--good {
  background: linear-gradient(140deg, var(--surface) 30%, rgba(0,229,176,0.1) 100%);
  border-left: none;
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  position: relative;
}

.audit-panel__col--good::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, transparent);
  border-radius: 0 var(--r-xl) 0 0;
  pointer-events: none;
}

.audit-panel__sep {
  background: var(--border);
  width: 1px;
  align-self: stretch;
  position: relative;
}


.audit-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6B6B;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,80,80,0.14);
}

.audit-panel__head--good {
  color: var(--accent);
  opacity: 1;
  border-bottom-color: rgba(0,229,176,0.18);
}

.audit-panel__dot {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.audit-panel__dot--bad  {
  background: #FF6B6B;
  box-shadow: 0 0 8px rgba(255,107,107,0.7);
}
.audit-panel__dot--good {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,229,176,0.7);
}

.audit-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.audit-panel__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.audit-panel__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.audit-panel__col--bad .audit-panel__list li {
  color: var(--text-2);
}

.audit-panel__mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-panel__mark svg {
  width: 10px; height: 10px;
}

.audit-panel__mark--bad {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.28);
  color: #FF7070;
}

.audit-panel__mark--good {
  background: rgba(0,229,176,0.12);
  border: 1px solid rgba(0,229,176,0.3);
  color: var(--accent);
}

.audit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.audit-cta__note {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-sans);
}

/* Audit responsive */
@media (max-width: 760px) {
  .audit-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    overflow: hidden;
  }

  .audit-panel__col--bad  { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .audit-panel__col--good { border-radius: 0 0 var(--r-xl) var(--r-xl); }

  .audit-panel__sep {
    width: auto;
    height: 1px;
    background: var(--border);
  }

  .audit-panel__sep::before { display: none; }

  .audit-panel__col { padding: 28px 24px; }
  .audit-panel__col--good { border-left: none; border-top: 1px solid rgba(0,229,176,0.12); }
  .audit-panel__head { padding-bottom: 16px; font-size: 10px; }
  .audit-panel__list li { font-size: 14px; padding: 13px 0; }
  .audit-panel__mark { width: 22px; height: 22px; }
  .audit-header { margin-bottom: 36px; }
}

@media (max-width: 520px) {
  .audit-panel__col { padding: 22px 18px; }
  .audit-panel__list li { font-size: 13.5px; gap: 11px; }
}


/* ============================================================
   EXAMPLES SECTION — 2x2 Business Type Grid
   ============================================================ */
.examples { background: var(--bg); }

.examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.example-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.example-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,176,0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.example-card:hover {
  border-color: rgba(0,229,176,0.14);
  transform: translateY(-2px);
}

.example-card:hover::before { opacity: 1; }

.example-card__industry {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 9px;
}

.example-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--text);
}

/* Before/after image preview */
.example-preview {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Header strip with Before / After labels */
.example-preview__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.example-preview__header-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  text-align: center;
}

.example-preview__header-label--before {
  color: #FF7070;
  background: rgba(255,80,80,0.04);
  border-right: 1px solid var(--border);
}

.example-preview__header-label--after {
  color: var(--accent);
  background: rgba(0,229,176,0.04);
}

.example-preview__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
}

.example-preview__pane {
  position: relative;
  overflow: hidden;
}

.example-preview__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.example-preview__pane--after {
  border-left: 2px solid var(--bg);
}

/* UI-preview cards (no image) */
.example-card--text .example-card__ui-preview {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 16px 14px;
  min-height: 128px;
}

.ex-ui-strip { display: flex; flex-direction: column; gap: 8px; }

.ex-ui-bar--emergency {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,229,176,0.07);
  border: 1px solid rgba(0,229,176,0.14);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.ex-ui-trust {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ex-ui-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.ex-ui-sections {
  display: flex;
  gap: 5px;
}

.ex-ui-sec {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--surface-3);
  border: 1px solid var(--border);
}

.ex-ui-sec--active {
  color: var(--accent);
  border-color: rgba(0,229,176,0.2);
  background: var(--accent-dim);
}

/* Barbers UI */
.ex-ui-booking-header { margin-bottom: 8px; }

.ex-ui-booking-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.ex-ui-booking-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--text-3);
}

.ex-ui-services {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.ex-ui-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-2);
}

.ex-ui-service-row--active {
  border-color: rgba(0,229,176,0.2);
  background: var(--accent-dim);
  color: var(--text);
}

.ex-ui-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

.ex-ui-book-btn {
  text-align: center;
  background: var(--accent);
  color: #080B10;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 5px;
  letter-spacing: 0.01em;
}

/* Points list */
.example-card__points {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.example-card__points li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}

.example-card__points li::before {
  content: '';
  flex-shrink: 0;
  width: 3.5px; height: 3.5px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  opacity: 0.7;
}

.examples-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.examples-cta__note {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-sans);
}

/* Examples responsive */
@media (max-width: 900px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .example-preview__split { height: 185px; }
  .example-preview__header-label { font-size: 9px; padding: 6px 10px; }
  .example-card { padding: 24px 20px; }
  .example-card__title { font-size: 15px; margin-bottom: 14px; }
  .example-card__points li { font-size: 12.5px; }
  .example-card--text .example-card__ui-preview { min-height: 110px; }
}

@media (max-width: 520px) {
  .example-preview__split { height: 150px; }
  .example-card { padding: 20px 16px; }
  .example-card__title { font-size: 14.5px; }
}

/* ============================================================
   AUDIT + EXAMPLES — mobile CTA full-width polish
   ============================================================ */
@media (max-width: 768px) {
  .audit-cta { gap: 8px; }
  .audit-cta .btn { width: 100%; justify-content: center; }
  .audit-cta__note { font-size: 11.5px; text-align: center; }

  .examples-cta .btn { width: 100%; justify-content: center; }
  .examples-cta__note { font-size: 11.5px; text-align: center; }

  .mockup-steps__cta-actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   HERO POSITIONING LINE
   ============================================================ */
.hero__positioning {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  line-height: 1.65;
  max-width: 420px;
  letter-spacing: 0.01em;
}


/* ============================================================
   PROCESS CTA
   ============================================================ */
.process__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .process__cta { flex-direction: column; }
  .process__cta .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }

.about__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.about__copy .section-title {
  font-size: clamp(26px, 3.4vw, 42px);
  max-width: 560px;
}

.about__body {
  font-size: clamp(15px, 1.45vw, 16.5px);
  color: var(--text-2);
  line-height: 1.86;
  margin-bottom: 18px;
  max-width: 540px;
}

.about__body:last-child { margin-bottom: 0; }

.about__card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,176,0.35) 40%, rgba(0,229,176,0.35) 60%, transparent 100%);
}

.about__card-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 280px;
  background: radial-gradient(circle, rgba(0,229,176,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.about__card-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(0,229,176,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 26px;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
}

.about__card-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.about__card-title {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 12px;
}

.about__card-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-3);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
}

.about__card-location svg { opacity: 0.6; }

.about__card-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.about__card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.about__card-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about__card-stat-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__card {
    max-width: 340px;
  }
}

@media (max-width: 640px) {
  .about__card { max-width: 100%; padding: 32px 24px; }
}


/* ============================================================
   TESTIMONIAL — verified badge + stars label
   ============================================================ */
.testimonial__stars-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-left: 6px;
  letter-spacing: -0.01em;
}

.testimonial__author-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.testimonial__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,176,0.18);
  padding: 2px 8px 2px 5px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .testimonial__author-name-row { justify-content: center; }
}


/* ============================================================
   FOOTER EMAIL
   ============================================================ */
.footer__email {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--accent);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.footer__email:hover { opacity: 0.75; }


/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  padding-top: calc(68px + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.legal-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 15%, transparent 80%);
  pointer-events: none;
}

.legal-hero__glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,176,0.035) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 50%;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.legal-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.legal-hero__intro {
  font-size: clamp(15px, 1.45vw, 17px);
  color: var(--text-2);
  line-height: 1.88;
  max-width: 640px;
  margin-bottom: 24px;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 20px;
}

.legal-content {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.legal-content__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.legal-card {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.legal-card:last-child { border-bottom: none; }

.legal-card--contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  margin-top: 24px;
}

.legal-card h2 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.84;
  margin-bottom: 14px;
}

.legal-card p:last-child { margin-bottom: 0; }

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
  padding-left: 4px;
}

.legal-list li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.72;
  padding-left: 20px;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

.legal-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.legal-link:hover { opacity: 0.8; }

.legal-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.legal-contact-item {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.legal-contact-label {
  font-weight: 600;
  color: var(--text-3);
  font-family: var(--font-sans);
  min-width: 130px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .legal-card--contact { padding: 28px 24px; }
  .legal-contact-block { padding: 18px 20px; }
  .legal-contact-item { flex-direction: column; gap: 4px; }
  .legal-contact-label { min-width: auto; }
}