/*
Theme Name: Growth Agency
Theme URI: https://growth-agency.de
Author: Carsten Berger
Author URI: https://growth-agency.de
Description: Official Growth Agency website theme. Clean, conversion-focused, built for SMB clients across DACH and EMEA.
Version: 1.1.4
License: GNU General Public License v2 or later
Text Domain: growth-agency
Tags: business, consulting, growth, clean, modern
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --teal:        #00AFBB;
  --teal-dark:   #008F99;
  --teal-light:  #00C8D7;
  --teal-xlight: #E6F9FA;
  --navy:        #1E1E2E;
  --navy-mid:    #2A2A3C;
  --charcoal:    #3A3A4A;
  --text:        #1E1E2E;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --off-white:   #F8FAFB;
  --white:       #FFFFFF;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --s-xs:   0.75rem;
  --s-sm:   0.875rem;
  --s-base: 1rem;
  --s-md:   1.125rem;
  --s-lg:   1.375rem;
  --s-xl:   1.75rem;
  --s-2xl:  2.25rem;
  --s-3xl:  3rem;
  --s-4xl:  3.75rem;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;
  --sp-4xl: 6.5rem;

  --radius:    6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --ease:      0.22s ease;
  --max-w:     1180px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--s-base);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* ============================================================
   TYPE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, var(--s-4xl)); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--s-3xl)); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--s-xl); font-weight: 700; }
h4 { font-size: var(--s-lg); font-weight: 600; }
p  { margin-bottom: var(--sp-sm); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-head);
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
  display: block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  font-family: var(--font-head);
  font-size: var(--s-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,175,187,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.site-header.scrolled {
  background: rgba(30,30,46,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
  padding: 0.75rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--teal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-text-grow { color: var(--white); }
.logo-text-agency { color: var(--teal); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}
.main-nav a {
  font-size: var(--s-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
  transition: color var(--ease);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px; width: 0;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.nav-cta { margin-left: var(--sp-sm); }

.mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 4px;
}
.mobile-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Teal glow orb */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(0,175,187,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal arrow grid — signature GA element */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.06;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 0 5rem;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,175,187,0.12);
  border: 1px solid rgba(0,175,187,0.3);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--sp-md);
}
.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-md);
}
.hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: var(--s-md);
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}

.hero-actions {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
}
.proof-number {
  font-family: var(--font-head);
  font-size: var(--s-2xl);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.proof-label {
  font-size: var(--s-xs);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 2px;
}
.proof-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero market entry sub-tag */
.hero-market-tag {
  font-family: var(--font-body);
  font-size: var(--s-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-top: -0.5rem;
  margin-bottom: var(--sp-md);
}

/* ============================================================
   FOUNDER / BIO SECTION
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-lg);
}

.founder-avatar {
  width: 140px; height: 140px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,175,187,0.3);
}

.founder-credentials {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--s-xs);
  color: var(--muted);
  line-height: 1.4;
}
.credential-item svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
  width: 14px; height: 14px;
}

.founder-text h2 { margin-bottom: 0.2rem; }

.founder-title {
  font-size: var(--s-sm);
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: var(--sp-lg);
}

.founder-text p {
  font-size: var(--s-base);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--sp-md);
}

@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-visual { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
  .founder-avatar { width: 80px; height: 80px; font-size: 1.75rem; }
  .founder-credentials { flex: 1; min-width: 200px; }
}

/* ============================================================
   CONTACT — LIGHT VERSION
   ============================================================ */
/* contact-section inherits section-dark background */
.contact-section { /* no background override — section-dark handles it */ }

.contact-info-light h2 { color: var(--navy); }
.contact-info-light p  { color: var(--muted); font-size: var(--s-md); margin-bottom: var(--sp-xl); }

.contact-info-light .contact-person {
  background: var(--white);
  border: 1px solid var(--border);
}
.contact-info-light .person-info strong { color: var(--navy); }
.contact-info-light .person-info span   { color: var(--muted); }

.contact-info-light .contact-link {
  color: var(--muted);
}
.contact-info-light .contact-link:hover { color: var(--teal-dark); }

/* ============================================================
   CONTACT — DARK VERSION (high contrast)
   ============================================================ */
.contact-info-dark h2 { color: var(--white); font-size: clamp(1.5rem,3vw,2.25rem); margin-bottom: var(--sp-md); }
.contact-info-dark p  { color: rgba(255,255,255,0.88); font-size: var(--s-md); margin-bottom: var(--sp-xl); }

.contact-info-dark .contact-person {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.contact-info-dark .person-info strong { color: var(--white); }
.contact-info-dark .person-info span   { color: rgba(255,255,255,0.6); }

.contact-info-dark .contact-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.contact-info-dark .contact-link svg { color: var(--teal-light); }
.contact-info-dark .contact-link:hover { color: var(--white); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--sp-4xl) 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--teal-light); }

.section-header { margin-bottom: var(--sp-2xl); }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: var(--sp-sm); }
.section-header p {
  font-size: var(--s-md);
  color: var(--muted);
  max-width: 580px;
}
.section-header.centered p { margin: 0 auto; }

/* ============================================================
   WHY SECTION — full width stacked layout
   ============================================================ */
.why-text-block {
  max-width: 720px;
  margin-bottom: var(--sp-lg);
}
.why-text-block h2 { margin-bottom: var(--sp-md); }
.why-text-block p  { color: var(--muted); margin-bottom: var(--sp-md); font-size: var(--s-md); }

.differentiator-box {
  background: var(--teal-xlight);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: var(--sp-xl);
  max-width: 720px;
}
.differentiator-box p {
  font-size: var(--s-md);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
}
.differentiator-box p span { color: var(--teal-dark); }

/* Full-width table card */
.why-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-xl);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

@media (max-width: 768px) {
  .why-card-full { padding: var(--sp-md); }
}

/* ============================================================
   SERVICES / FRAMEWORK
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-sm);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--teal);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-xlight);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
  color: var(--teal);
  transition: background var(--ease);
}
.service-card:hover .service-icon { background: var(--teal); color: var(--white); }
.service-card h4 {
  font-size: var(--s-base);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.service-card p {
  font-size: var(--s-xs);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   12-WEEK ROADMAP
   ============================================================ */
.roadmap-container { position: relative; }
.roadmap-line {
  position: absolute;
  left: 22px; top: 24px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, transparent 100%);
}

.roadmap-steps { position: relative; z-index: 1; }
.roadmap-step {
  display: flex;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
}
.roadmap-step:last-child { padding-bottom: 0; }

.step-marker {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: var(--s-sm);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.step-content { padding-top: 0.6rem; }
.step-week {
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.step-content h4 { margin-bottom: 0.4rem; color: var(--white); }
.step-content p { font-size: var(--s-sm); color: rgba(255,255,255,0.55); margin: 0; }

/* ============================================================
   COMPARE TABLE — HTML table, auto layout, no wrapping
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  min-width: 500px; /* ensures it never squishes */
}
.compare-table thead th {
  padding: 0.5rem 1rem 0.75rem;
  font-family: var(--font-head);
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.ct-col-label { text-align: left; color: var(--muted); }
.ct-col-bad   { text-align: center; color: #EF4444; }
.ct-col-good  { text-align: center; color: var(--teal-dark); }

.compare-table tbody tr   { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody td   { padding: 0.75rem 1rem; font-size: var(--s-sm); vertical-align: middle; white-space: nowrap; }

.ct-label { font-weight: 500; color: var(--charcoal); text-align: left; }
.ct-bad   { text-align: center; font-weight: 600; color: #EF4444; white-space: nowrap; }
.ct-good  { text-align: center; font-weight: 600; color: var(--teal-dark); white-space: nowrap; }

.ct-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  vertical-align: middle; margin-right: 4px; flex-shrink: 0;
}
.ct-icon-bad  { background: rgba(239,68,68,0.1); }
.ct-icon-good { background: rgba(0,143,153,0.1); }

/* ============================================================
   REFERENCES — horizontal marquee strip
   ============================================================ */
/* references-section uses standard .section padding — no override */

.marquee-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* subtle fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 56px;
  padding: 0 var(--sp-md);
}
.marquee-logo img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55) brightness(1.2);
  transition: filter var(--ease);
}
.marquee-logo:hover img { filter: grayscale(0%) opacity(1) brightness(1); }

/* Constantin Film: now uses SVG with transparent bg — standard light tile */
.marquee-logo[title="Constantin Film"] {
  background: var(--white);
  border-color: var(--border);
}
.marquee-logo[title="Constantin Film"] img {
  filter: grayscale(100%) opacity(0.6);
  height: 28px; /* SVG is wide/short — constrain height tighter */
  max-width: 140px;
}
.marquee-logo[title="Constantin Film"]:hover {
  background: var(--white);
  border-color: var(--teal);
}
.marquee-logo[title="Constantin Film"]:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   FOUNDER / BIO SECTION
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

/* Photo block */
.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

.founder-photo-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(0,175,187,0.25), 0 0 0 4px var(--teal-xlight), 0 0 0 6px rgba(0,175,187,0.2);
}
.founder-photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-name-card {
  text-align: center;
}
.founder-name-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: var(--s-lg);
  font-weight: 700;
  color: var(--navy);
}
.founder-name-card span {
  font-size: var(--s-sm);
  color: var(--teal-dark);
  font-weight: 600;
}

/* Fact pills */
.founder-facts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: var(--sp-md);
}
.fact-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem var(--sp-sm);
}
.fact-number {
  font-family: var(--font-head);
  font-size: var(--s-lg);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  min-width: 48px;
}
.fact-label {
  font-size: var(--s-xs);
  color: var(--muted);
  font-weight: 500;
}

/* Industry tags */
.founder-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--sp-sm);
  justify-content: center;
}
.industry-tag {
  font-size: var(--s-xs);
  font-weight: 600;
  background: var(--teal-xlight);
  color: var(--teal-dark);
  border: 1px solid rgba(0,175,187,0.2);
  border-radius: 100px;
  padding: 0.25rem 0.65rem;
  white-space: nowrap;
}

/* Bio text column */
.founder-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--sp-sm);
}
.founder-title {
  font-size: var(--s-sm); font-weight: 600;
  color: var(--teal-dark); margin-bottom: var(--sp-lg);
}
.founder-text > p {
  font-size: var(--s-base); color: var(--muted);
  line-height: 1.75; margin-bottom: var(--sp-md);
}

/* Inline contact strip */
.founder-contact-strip {
  display: flex; gap: var(--sp-lg); flex-wrap: wrap;
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
}
.founder-contact-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: var(--s-sm); font-weight: 500; color: var(--muted);
  transition: color var(--ease);
}
.founder-contact-link svg { color: var(--teal); flex-shrink: 0; }
.founder-contact-link:hover { color: var(--teal-dark); }

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { flex-direction: row; flex-wrap: wrap; gap: var(--sp-md); align-items: flex-start; }
  .founder-photo-circle { width: 100px; height: 100px; }
  .founder-facts { flex-direction: row; flex-wrap: wrap; }
  .fact-pill { flex: 1 1 120px; }
  .founder-industries { justify-content: flex-start; }
}

/* ============================================================
   SERVICES / FRAMEWORK
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-sm);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--teal);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-xlight);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
  color: var(--teal);
  transition: background var(--ease);
}
.service-card:hover .service-icon { background: var(--teal); color: var(--white); }
.service-card h4 {
  font-size: var(--s-base);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.service-card p {
  font-size: var(--s-xs);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   12-WEEK ROADMAP
   ============================================================ */
.roadmap-container { position: relative; }
.roadmap-line {
  position: absolute;
  left: 22px; top: 24px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, transparent 100%);
}

.roadmap-steps { position: relative; z-index: 1; }
.roadmap-step {
  display: flex;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
}
.roadmap-step:last-child { padding-bottom: 0; }

.step-marker {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: var(--s-sm);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.step-content { padding-top: 0.6rem; }
.step-week {
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.step-content h4 { margin-bottom: 0.4rem; color: var(--white); }
.step-content p { font-size: var(--s-sm); color: rgba(255,255,255,0.55); margin: 0; }

/* ============================================================
   COMPARE TABLE — proper HTML table
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.compare-table thead th {
  padding: 0.4rem 0.5rem 0.6rem;
  font-family: var(--font-head);
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.ct-col-label { text-align: left; }
.ct-col-bad   { text-align: center; color: #EF4444; }
.ct-col-good  { text-align: center; color: var(--teal-dark); }

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody td {
  padding: 0.6rem 0.5rem;
  font-size: var(--s-sm);
  vertical-align: middle;
  white-space: nowrap;
}

.ct-label {
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  white-space: nowrap;
  padding-right: 0.75rem;
}
.ct-bad,
.ct-good {
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.ct-bad  { color: #EF4444; }
.ct-good { color: var(--teal-dark); }

.ct-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 3px;
  flex-shrink: 0;
}
.ct-icon-bad  { background: rgba(239,68,68,0.1); }
.ct-icon-good { background: rgba(0,143,153,0.1); }

/* stale ref-logo rules removed */

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-header {
  background: var(--teal);
  padding: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-logo-text {
  font-family: var(--font-head);
  font-size: var(--s-xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.case-result {
  font-family: var(--font-head);
  font-size: var(--s-3xl);
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.case-body { padding: var(--sp-lg); }
.case-metric {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: var(--sp-sm);
}
.case-metric-number {
  font-family: var(--font-head);
  font-size: var(--s-2xl);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.case-metric-label {
  font-size: var(--s-sm);
  color: var(--muted);
  font-weight: 500;
}
.case-body p {
  font-size: var(--s-sm);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card.featured {
  border: 2px solid var(--teal);
  background: var(--teal-xlight);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: var(--s-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-name {
  font-family: var(--font-head);
  font-size: var(--s-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--sp-sm);
}
.price-amount {
  font-family: var(--font-head);
  font-size: var(--s-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-amount sup { font-size: var(--s-lg); vertical-align: top; margin-top: 0.3rem; }
.price-period {
  font-size: var(--s-xs);
  color: var(--muted);
  margin-bottom: var(--sp-md);
}
.price-desc {
  font-size: var(--s-sm);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  flex-grow: 1;
}
.price-hours {
  font-size: var(--s-xs);
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: var(--sp-md);
}
.price-commitment {
  font-size: var(--s-xs);
  color: var(--muted);
  margin-top: auto;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: var(--sp-md); }
.contact-info p { color: rgba(255,255,255,0.6); font-size: var(--s-md); margin-bottom: var(--sp-xl); }

.contact-person {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.person-avatar {
  width: 56px; height: 56px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: var(--s-xl);
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.person-info strong {
  display: block;
  color: var(--white);
  font-size: var(--s-base);
  font-weight: 700;
}
.person-info span {
  font-size: var(--s-sm);
  color: rgba(255,255,255,0.5);
}

.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--s-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.contact-link:hover { color: var(--teal-light); }
.contact-link svg { color: var(--teal); flex-shrink: 0; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-head);
  font-size: var(--s-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-md);
}
.form-group { margin-bottom: var(--sp-md); }
.form-group label {
  display: block;
  font-size: var(--s-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem var(--sp-sm);
  font-family: var(--font-body);
  font-size: var(--s-sm);
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,175,187,0.14);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: var(--s-base); }
.form-feedback {
  font-size: var(--s-sm);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-lg) 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.footer-copy { font-size: var(--s-xs); color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: var(--sp-md); }
.footer-links a {
  font-size: var(--s-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--teal-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .why-grid      { grid-template-columns: 1fr; }
  .cases-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .main-nav { display: none; }
  .mobile-btn { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; }
  .hero-proof    { gap: var(--sp-md); }
  .form-row      { grid-template-columns: 1fr; }
  .container     { padding: 0 var(--sp-sm); }
  .contact-form-wrap { padding: var(--sp-lg); }
  .roadmap-line  { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
