/* ===================================================
   AGP — Professional Websites for UK Tradespeople
   Design System: Deep Navy + Amber | Playfair + Outfit
   =================================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

/* === CSS VARIABLES === */
:root {
  --navy:          #1B2A4A;
  --navy-dark:     #111D35;
  --navy-mid:      #243559;
  --amber:         #E8920A;
  --amber-dark:    #C97C08;
  --amber-light:   #FEF3C7;
  --bg:            #FAFAF9;
  --bg-alt:        #F3F3F1;
  --text:          #18181A;
  --text-secondary:#5C5C6E;
  --text-light:    #9C9CAA;
  --border:        #E2E2E6;
  --border-dark:   #CACACE;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Outfit', system-ui, sans-serif;

  --shadow-sm:     0 1px 4px rgba(27,42,74,0.05);
  --shadow:        0 2px 16px rgba(27,42,74,0.08);
  --shadow-md:     0 4px 28px rgba(27,42,74,0.10);
  --shadow-lg:     0 8px 48px rgba(27,42,74,0.14);

  --radius:        8px;
  --radius-lg:     14px;
  --radius-full:   9999px;

  /* Custom easing — Emil Kowalski principles */
  --ease-out:      cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer:   cubic-bezier(0.32, 0.72, 0, 1);
  --transition:    0.18s cubic-bezier(0.23, 1, 0.32, 1);

  --container:     1200px;
  --nav-height:    72px;
}

/* === GRAIN TEXTURE OVERLAY === */
/* Fixed, pointer-events-none — never on scrolling containers (Emil: no GPU repaints) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 160px 160px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1280px) {
  .container { padding: 0 48px; }
}

/* === SECTIONS === */
.section {
  padding: 96px 0;
}

.section--white {
  background: var(--bg);
}

.section--grey {
  background: var(--bg-alt);
}

.section--navy {
  background: var(--navy);
}

@media (max-width: 767px) {
  .section { padding: 64px 0; }
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px; /* was 72px — tighter before content */
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 18px;
}

.section-label--light {
  color: rgba(232,146,10,0.9);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 60ch;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section-header { margin-bottom: 48px; }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
  text-wrap: balance;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  line-height: 1.72;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s var(--ease-out),
              border-color 0.18s var(--ease-out),
              color 0.18s var(--ease-out),
              box-shadow 0.18s var(--ease-out),
              transform 0.14s var(--ease-out);
  padding: 10px 22px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Physical press feedback — Emil: buttons must feel responsive */
.btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Primary — Amber fill */
.btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy-dark);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,146,10,0.35);
}
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* Amber alias */
.btn-amber {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy-dark);
  font-weight: 700;
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,146,10,0.35);
}
.btn-amber:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* Outline — Navy */
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #FAFAF9;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,42,74,0.2);
}
.btn-outline:active {
  transform: scale(0.97);
  box-shadow: none;
}

/* Outline on dark sections */
.section--navy .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.section--navy .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}

.nav-logo::after {
  content: '';
  display: block;
  width: 60%;
  height: 2.5px;
  background: var(--amber);
  border-radius: 2px;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 48px 32px;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.mobile-nav__close:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  width: 100%;
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 12px 0;
  transition: color var(--transition);
  text-decoration: none;
}

.mobile-nav__link:hover {
  color: var(--amber);
}

.mobile-nav__cta {
  margin-top: 24px;
  padding: 16px 40px;
  font-size: 1rem;
}

/* Main content offset for fixed nav */
main {
  padding-top: var(--nav-height);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  background: var(--bg);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Ambient gradient — amber top-right, navy bottom-left */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(232,146,10,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(27,42,74,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 24px;
}

/* Subtle amber dot before the badge text */
.section-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

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

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.trust-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* ===================================================
   PHONE MOCKUP
   =================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-wrapper {
  position: relative;
  width: 260px;
  will-change: transform;
  transform-style: preserve-3d;
}

.phone-frame {
  width: 260px;
  height: 520px;
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(27,42,74,0.22), 0 4px 16px rgba(27,42,74,0.12);
}

.phone-notch {
  width: 90px;
  height: 22px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  flex: 1;
  overflow: hidden;
  height: calc(100% - 46px);
}

.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  opacity: 0.3;
}

/* Mock site inside phone */
.mock-site {
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.mock-header {
  background: var(--navy);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.mock-logo-bar {
  width: 36px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  opacity: 0.9;
}

.mock-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-hamburger span {
  display: block;
  width: 14px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
}

.mock-hero-block {
  background: linear-gradient(160deg, #1B2A4A 0%, #243559 100%);
  padding: 16px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-line {
  height: 7px;
  background: rgba(255,255,255,0.85);
  border-radius: 3px;
}
.mock-line.long   { width: 100%; }
.mock-line.medium { width: 78%; }
.mock-line.short  { width: 55%; background: rgba(255,255,255,0.5); height: 5px; }

.mock-cta-btn {
  width: 72px;
  height: 20px;
  background: var(--amber);
  border-radius: 4px;
  margin-top: 4px;
}

.mock-stats-row {
  display: flex;
  gap: 6px;
  padding: 10px 12px 6px;
  background: var(--bg-alt);
}

.mock-stat-pill {
  flex: 1;
  height: 28px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.mock-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px 12px;
}

.mock-card-sm {
  height: 48px;
  background: var(--bg-alt);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.mock-card-sm.accent-card {
  background: var(--amber-light);
  border-color: rgba(245,158,11,0.3);
}

.mock-review-bar {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-stars {
  display: flex;
  gap: 3px;
}

.mock-stars span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.mock-review-text {
  width: 80%;
  height: 5px;
  background: var(--border-dark);
  border-radius: 3px;
}

/* Floating notification cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(27,42,74,0.18);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0; /* hidden until JS entry stagger fires */
}

.float-card--lead {
  bottom: 80px;
  right: -32px;
}

.float-card--review {
  top: 80px;
  left: -40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* Entry + bob combined — CSS handles sequencing, no WAAPI onfinish needed.
   float-bob listed FIRST so it wins the transform property after entry ends.
   card-entry delay = 0ms; float-bob delay = 420ms (= entry duration).
   Result: entry runs, then bob takes over automatically. */
.float-card--lead.is-entering {
  animation:
    float-bob-a 5.2s ease-in-out 420ms infinite,
    card-entry  420ms cubic-bezier(0.23, 1, 0.32, 1) 0ms both;
}

.float-card--review.is-entering {
  animation:
    float-bob-b 3.4s ease-in-out 420ms infinite,
    card-entry  420ms cubic-bezier(0.23, 1, 0.32, 1) 0ms both;
}

.float-card__icon {
  width: 32px;
  height: 32px;
  background: var(--amber-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  flex-shrink: 0;
}

.float-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-card__body strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.float-card__body span {
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

.float-card__stars-row {
  display: flex;
  gap: 2px;
  color: var(--amber);
}

.float-card--review span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Entry keyframe: from hidden/nudged to natural position */
@keyframes card-entry {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Parallax bob — different ranges + periods for depth */
@keyframes float-bob-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

@keyframes float-bob-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* Reduced-motion: reveal instantly, strip all animation */
@media (prefers-reduced-motion: reduce) {
  .float-card               { opacity: 1 !important; }
  .float-card.is-entering   { animation: none; }
  .phone-wrapper            { will-change: auto; }
}

/* ===================================================
   STATS STRIP
   =================================================== */
.stats-strip {
  background: var(--navy);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-pct {
  font-size: 0.55em;
  font-weight: 700;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  max-width: 120px;
  text-align: center;
}

/* ===================================================
   PROBLEM SECTION — Editorial numbered row list
   Each problem is a full-width row: number | body | icon
   =================================================== */
.problem-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.problem-row {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.problem-row__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.38;
}

.problem-row__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.problem-row__body p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 62ch;
  margin: 0;
}

.problem-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-dark);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ===================================================
   FEATURES / SOLUTION SECTION
   =================================================== */
/* ===================================================
   FEATURES — Editorial numbered grid (replaces card grid)
   No card boxes. Lines create structure. Numbers anchor each item.
   =================================================== */
.features-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feat {
  display: flex;
  gap: 20px;
  padding: 40px 36px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.22s var(--ease-out);
}

.feat:hover {
  background: var(--bg);
}

.feat__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  width: 28px;
  padding-top: 3px;
  letter-spacing: -0.01em;
}

.feat__content h3 {
  font-family: var(--font-display);
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feat__content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
}

/* Full-width cells */
.feat--wide,
.feat--wide-alt {
  grid-column: 1 / -1;
}

/* Navy anchor cell — the "7 days" promise */
.feat--wide {
  background: var(--navy);
  border-color: var(--navy);
}

/* Light-background full-width cell */
.feat--wide-alt {
  background: var(--bg);
}

.feat--wide-alt:hover {
  background: var(--bg-alt);
}

.feat--wide .feat__num {
  color: var(--amber);
}

.feat--wide .feat__content h3 {
  color: #FAFAF9;
}

.feat--wide .feat__content p {
  color: rgba(250,250,249,0.65);
  max-width: 68ch;
}

.feat--wide:hover {
  background: var(--navy-mid);
}

/* Legacy class kept for JS references — maps to new system */
.features-grid { display: contents; }
.feature-card  { display: contents; }
.feature-card__icon { display: none; }

/* ===================================================
   HOW IT WORKS — editorial 3-col with ghost numbers
   Ghost large number sets the visual anchor for each step.
   Left-aligned, column separators replace the old dashed line.
   =================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--border);
}

.step {
  text-align: left;
  position: relative;
  padding: 52px 48px 52px 0;
  border-right: 1px solid var(--border);
}

.step:first-child { padding-left: 0; }
.step:not(:first-child) { padding-left: 48px; }
.step:last-child { border-right: none; padding-right: 0; }

.step__number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.06em;
  display: block;
  margin-bottom: 28px;
  /* reset circle styles */
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  flex-shrink: unset;
  position: static;
  z-index: auto;
}

.step__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Icon boxes removed — number alone is the visual anchor */
.step__icon {
  display: none;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.step__duration {
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 5px 13px;
  border-radius: var(--radius-full);
}

/* ===================================================
   PRICING
   =================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--navy);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.pricing-card--featured:hover {
  transform: translateY(-11px);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  background: var(--amber);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 0;
}

.pricing-card__header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__header h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin-bottom: 6px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.price-cadence {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
  align-self: flex-end;
  padding-bottom: 6px;
  margin-left: 2px;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

.pricing-card__footnote {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 12px 0 16px;
  line-height: 1.4;
  text-align: center;
}

/* Anchor card — de-emphasised, not the primary offer */
.pricing-card--anchor {
  border-style: dashed;
  border-color: var(--border-dark);
  background: var(--bg-alt);
}

.pricing-card--anchor:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.pricing-card__anchor-label {
  background: var(--bg-alt);
  border-bottom: 1px dashed var(--border-dark);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 8px 0;
}

.pricing-card--anchor .price-amount {
  color: var(--text-secondary);
}

.pricing-card--anchor .price-currency {
  color: var(--text-secondary);
}

.pricing-feature--muted {
  opacity: 0.45;
}

.pricing-feature--muted svg {
  color: var(--text-light) !important;
  stroke: var(--text-light) !important;
}

.pricing-features {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.pricing-features li svg {
  color: var(--amber-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  margin: 4px 28px 28px;
  width: calc(100% - 56px);
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-note a:hover {
  color: var(--amber-dark);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Amber top-cap accent — clean alternative to the banned side-stripe */
.testimonial-card::before {
  content: '';
  position: absolute;
  left: 32px;
  right: 32px;
  top: 0;
  height: 2px;
  background: var(--amber-light);
  border-radius: 0 0 2px 2px;
}

.quote-mark {
  color: var(--amber-light);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-info strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ===================================================
   FAQ
   =================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.9875rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question[aria-expanded="true"] {
  color: var(--amber-dark);
  background: var(--amber-light);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--amber-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer.is-open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ===================================================
   CONTACT FORM
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.contact-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.contact-promises li svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Lead Form */
.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 20px;
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.required {
  color: #dc2626;
  margin-left: 2px;
}

.optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8em;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
  min-height: 44px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}

input.has-error,
select.has-error,
textarea.has-error {
  border-color: #dc2626;
}

input.has-error:focus,
select.has-error:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 88px;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

.field-error {
  font-size: 0.8125rem;
  color: #dc2626;
  font-weight: 500;
  min-height: 18px;
}

.btn-submit {
  margin-top: 4px;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Form success state */
.form-success {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success svg {
  color: var(--amber);
}

.form-success h3 {
  font-size: 1.375rem;
  color: var(--navy);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-logo::after {
  background: var(--amber);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber);
}

.footer-contact span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

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

  .nav-links,
  .nav-cta,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .trust-strip {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .problem-row {
    grid-template-columns: 60px 1fr 40px;
    gap: 28px;
  }

  .features-editorial {
    grid-template-columns: 1fr;
  }

  .feat--wide {
    grid-column: 1;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
    border-top: none;
  }

  .step,
  .step:first-child,
  .step:not(:first-child),
  .step:last-child {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .step:last-child {
    border-bottom: none;
  }

  .step__number {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  .pricing-card--featured {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  :root {
    --nav-height: 64px;
  }

  .hero {
    padding: 56px 0 64px;
  }

  .phone-wrapper {
    width: 220px;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .float-card--lead {
    right: -16px;
    bottom: 60px;
  }

  .float-card--review {
    left: -16px;
    top: 60px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .problem-row {
    grid-template-columns: 48px 1fr;
    gap: 20px 24px;
    padding: 32px 0;
  }

  .problem-row__icon {
    display: none;
  }

  .feat {
    padding: 28px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .float-card {
    display: none;
  }
}

/* ===================================================
   PRINT / REDUCED MOTION
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===================================================
   FOUNDING CLIENTS SECTION
   =================================================== */
.founding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founding-pitch .section-label {
  margin-bottom: 16px;
}

.founding-pitch h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.founding-pitch > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.founding-pitch .btn {
  margin-bottom: 16px;
  display: inline-flex;
}

.founding-spots {
  display: flex !important;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: var(--amber-dark) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.founding-spots svg {
  flex-shrink: 0;
  color: var(--amber-dark);
}

.founding-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founding-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.founding-benefit:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.founding-benefit__num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
  min-width: 28px;
}

.founding-benefit__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.founding-benefit__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1023px) {
  .founding-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===================================================
   MONTHLY DELIVERABLES
   =================================================== */
#deliverables {
  background: #F8F9FA;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.deliverables-card {
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #1B2A4A;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27,42,74,0.08);
  transition: box-shadow 0.18s cubic-bezier(0.23,1,0.32,1), transform 0.18s cubic-bezier(0.23,1,0.32,1);
  position: relative;
}

.deliverables-card:hover {
  box-shadow: 0 4px 28px rgba(27,42,74,0.13);
  transform: translateY(-3px);
}

.deliverables-card--growth {
  border-color: #F59E0B;
  border-width: 3px;
}

.deliverables-card__badge {
  background: #F59E0B;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 0;
  font-family: 'Outfit', system-ui, sans-serif;
}

.deliverables-card__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid #E2E2E6;
}

.deliverables-card__header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #1B2A4A;
  margin: 0 0 6px;
}

.deliverables-card__price {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5C5C6E;
  margin: 0;
}

.deliverables-card__plus {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5C5C6E;
  font-style: italic;
  padding: 16px 28px 0;
  margin: 0;
}

.deliverables-list {
  list-style: none;
  padding: 16px 28px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9rem;
  color: #18181A;
  line-height: 1.5;
}

.deliverables-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #F59E0B;
  stroke: #F59E0B;
}

.founding-footnote {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.8rem;
  color: #9C9CAA;
  text-align: center;
  margin: 24px 0 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: color var(--transition);
}

.cookie-banner__link:hover {
  color: rgba(255,255,255,0.9);
}

.cookie-banner__accept {
  padding: 9px 20px;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* On mobile, push banner above mobile CTA bar */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 68px;
    padding: 12px 16px;
    gap: 12px;
  }
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
   =================================================== */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-btn:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 3px;
}

.whatsapp-btn__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.whatsapp-btn__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-dark);
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
}

/* On mobile: float above mobile CTA bar */
@media (max-width: 767px) {
  .whatsapp-btn {
    bottom: 80px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn__tooltip { display: none; }
}

/* ===================================================
   BACK TO TOP BUTTON
   =================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px; /* above WhatsApp button */
  z-index: 150;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border-dark);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease,
              background var(--transition), box-shadow var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* Hide on mobile — mobile CTA bar covers this need */
@media (max-width: 767px) {
  .back-to-top { display: none; }
}

/* ===================================================
   MOBILE STICKY CTA BAR
   =================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 60px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 16px rgba(27,42,74,0.1);
}

.mobile-cta-bar__call,
.mobile-cta-bar__audit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
  height: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.mobile-cta-bar__call {
  color: var(--navy);
  border-right: 1px solid var(--border);
}

.mobile-cta-bar__call:hover,
.mobile-cta-bar__call:active {
  background: var(--bg-alt);
}

.mobile-cta-bar__audit {
  background: var(--amber);
  color: var(--navy);
}

.mobile-cta-bar__audit:hover,
.mobile-cta-bar__audit:active {
  background: var(--amber-dark);
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
  }
  /* Push page content above the bar so footer isn't obscured */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}

/* ===================================================
   HONEYPOT — invisible to humans
   =================================================== */
.trap-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
  tab-index: -1;
}

/* ===================================================
   NAV PHONE — desktop phone number in navbar
   =================================================== */
.nav-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.nav-phone svg {
  flex-shrink: 0;
  color: var(--amber-dark);
}

.nav-phone:hover {
  color: var(--amber-dark);
}

@media (min-width: 1024px) {
  .nav-phone {
    display: flex;
  }
}

/* ===================================================
   SCROLL REVEAL — data-reveal attribute system
   Emil: ease-out for entering elements, specific properties only
   =================================================== */

/* Pre-reveal: invisible + shifted — Emil: never from scale(0), never ease-in */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.52s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.52s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Section headers: fade + gentle rise, same as other reveal elements.
   Clip-path was removed — it held layout space while invisible,
   creating ~300px of white before the observer fired.             */
[data-reveal].section-header,
[data-reveal].founding-pitch {
  transform: translateY(16px); /* subtler shift — larger block */
}

/* Revealed state */
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].section-header,
  [data-reveal].founding-pitch {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================================
   SECTION RHYTHM — varied padding creates visual breathing
   Uniform padding is monotony; variation creates pace.
   =================================================== */
#problem      { padding: 80px 0; }
#solution     { padding: 104px 0; }
#how-it-works { padding: 88px 0; }
#pricing      { padding: 104px 0; }
#founding     { padding: 76px 0; }
#faq          { padding: 80px 0; }

@media (max-width: 767px) {
  #problem, #solution, #how-it-works,
  #pricing, #founding, #faq {
    padding: 64px 0;
  }
}

/* ===================================================
   STATS STRIP — refined to left-aligned editorial feel
   =================================================== */
.stats-strip {
  position: relative;
  overflow: hidden;
}

.stats-grid {
  text-align: left; /* override: editorial, not centered */
}

.stat-item {
  text-align: left;
  align-items: flex-start;
  padding: 28px 36px;
}

.stat-label {
  text-align: left;
  max-width: none;
}

.stat-item + .stat-item::before {
  top: 22%;
  height: 56%;
}

@media (max-width: 1023px) {
  .stat-item { padding: 24px 28px; }
}

@media (max-width: 767px) {
  .stat-item {
    text-align: center;
    align-items: center;
    padding: 24px 16px;
  }
  .stat-label { text-align: center; }
}

/* ===================================================
   TRADES TICKER — continuous horizontal marquee
   Emil: animate only transform, no layout properties.
   =================================================== */
.trades-ticker {
  overflow: hidden;
  border-top: 1px solid oklch(0.9 0.008 245);
  border-bottom: 1px solid oklch(0.9 0.008 245);
  background: oklch(0.975 0.006 245);
  padding: 13px 0;
  user-select: none;
}

.trades-ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.trades-ticker__track span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(0.48 0.025 245);
  white-space: nowrap;
  padding: 0 18px;
}

.trades-ticker__track .ticker-dot {
  color: var(--amber);
  opacity: 0.55;
  padding: 0;
  font-size: 10px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* 50% = one full set of items */
}

.trades-ticker:hover .trades-ticker__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .trades-ticker__track { animation: none; }
}

/* ===================================================
   MID-PAGE CTA BRIDGE — intercept users before pricing
   =================================================== */
.cta-bridge {
  padding: 56px 0;
}

.cta-bridge__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cta-bridge__hook {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: oklch(0.97 0.01 245);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-bridge__note {
  font-size: 0.9rem;
  color: oklch(0.72 0.04 245);
  margin: 0;
  max-width: 480px;
}

@media (max-width: 767px) {
  .cta-bridge { padding: 48px 0; }
  .cta-bridge__hook { font-size: 1.3rem; }
}
