/* =====================================================
   STRUCTTECH — MAIN SITE DESIGN SYSTEM
   Consistent with Revenue Leak Scan funnel
   ===================================================== */

/* ── 1. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 2. CSS VARIABLES ── */
:root {
  --bg:           #080c18;
  --bg-card:      #0d1326;
  --bg-card-2:    #0a0f1f;
  --bg-input:     #111827;
  --orange:       #f97316;
  --orange-hl:    #fb923c;
  --orange-dim:   rgba(249,115,22,0.12);
  --orange-glow:  rgba(249,115,22,0.07);
  --blue:         #2563eb;
  --blue-hl:      #3b82f6;
  --green:        #22c55e;
  --red:          #ef4444;
  --yellow:       #eab308;
  --white:        #f8fafc;
  --gray:         #94a3b8;
  --muted:        #64748b;
  --border:       #1a2744;
  --border-hl:    #2a3a5c;

  --font-head:    'Bebas Neue', Impact, sans-serif;
  --font-body:    'DM Sans', 'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --nav-h:        68px;
  --max-w:        1100px;
  --max-w-text:   680px;
  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    16px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  line-height: 1.05;
}
p { line-height: 1.7; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}
.eyebrow-orange { color: var(--orange); }
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue-hl); }
.text-muted  { color: var(--muted); }
.text-gray   { color: var(--gray); }
.text-green  { color: var(--green); }

/* ── 4. LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-text {
  width: 100%;
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.flush { padding: 0; }

/* ── 5. NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 12, 24, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), backdrop-filter 0.3s;
}
.site-nav.scrolled {
  background: rgba(8, 12, 24, 0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-pill {
  background: #fff;
  border-radius: 7px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  height: 42px;
}
.nav-logo-pill img {
  height: 30px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--orange-hl);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8, 12, 24, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  backdrop-filter: blur(16px);
}
body.nav-open .nav-mobile { display: flex; }
.nav-mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-cta {
  margin-top: 12px;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.nav-spacer { height: var(--nav-h); }

/* ── 6. HERO ── */
.hero {
  position: relative;
  padding: 100px 0 88px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #1a2744 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse at center, var(--orange-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 660px;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.hero-trust-item .check { color: var(--green); }

/* ── Inner page hero (smaller) ── */
.hero-inner {
  padding: 72px 0 60px;
}
.hero-inner h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 16px;
  max-width: 620px;
}

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
}
.btn-md {
  font-size: 14px;
  padding: 13px 26px;
}
.btn-sm {
  font-size: 13px;
  padding: 9px 20px;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-hl);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.35);
}
.btn-orange:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border-hl);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gray);
}

/* ── 8. STATS BAR ── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

/* ── 9. SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-header-left {
  text-align: left;
  margin-bottom: 48px;
}
.section-header-left h2 {
  font-size: clamp(34px, 4.5vw, 50px);
  margin-bottom: 14px;
}
.section-header-left p {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.65;
}

/* ── 10. PROBLEM CARDS ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover {
  border-color: var(--border-hl);
  transform: translateY(-2px);
}
.problem-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.problem-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.3;
}
.problem-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── 11. HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--border-hl), var(--border));
  pointer-events: none;
}
.step-card {
  text-align: center;
  padding: 0 8px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-hl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--orange);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.3;
}
.step-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── 12. CTA BANNER ── */
.cta-banner {
  background: var(--bg-card-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(249,115,22,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.cta-banner .trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cta-banner .trust-item {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-banner .trust-item .ck { color: var(--green); }

/* ── 13. PHASE CARDS (Services page) ── */
.phase-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  transition: border-color 0.2s;
}
.phase-card:hover { border-color: var(--border-hl); }
.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.phase-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 4px 10px;
  border-radius: 20px;
}
.phase-title {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.phase-subtitle {
  font-size: 13px;
  color: var(--orange);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.phase-left { padding-right: 0; }
.phase-right {}
.phase-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.phase-what {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.phase-what-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.phase-what-body {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

/* ── 14. PRICING SECTION ── */
.pricing-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--orange-dim) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.pricing-section p {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ── 15. WHO WE WORK WITH ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.audience-card.good { border-top: 3px solid var(--green); }
.audience-card.bad  { border-top: 3px solid var(--border); }
.audience-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.audience-card h3 .indicator { font-size: 14px; }
.audience-card ul { display: flex; flex-direction: column; gap: 8px; }
.audience-card ul li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.audience-card ul li::before {
  content: '→';
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── 16. ABOUT SECTION ── */
.mission-block {
  max-width: 720px;
}
.mission-block h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 24px;
  line-height: 1.02;
}
.mission-block .lead {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.mission-block .body-copy {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}
.mission-block .body-copy + .body-copy { margin-top: 16px; }

/* ── 17. BOOKING / OPERATIONAL AUDIT PAGE ── */
.booking-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 20px;
  max-width: 600px;
}
.booking-hero .lead {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}
.check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.booking-guarantee {
  background: var(--bg-card);
  border: 1px solid var(--border-hl);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
  max-width: 600px;
}
.booking-guarantee strong { color: var(--orange); }
.calendly-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-hl);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 640px;
}
.calendly-placeholder h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}
.calendly-placeholder p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
}
/* Replace .calendly-placeholder with:
   <div class="calendly-inline-widget" data-url="YOUR_CALENDLY_URL" style="min-width:320px;height:700px;"></div>
   <script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script> */

/* ── 18. FOOTER ── */
.site-footer {
  background: #040710;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-pill {
  background: #fff;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-pill img {
  height: 28px;
  width: auto;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.footer-contact a { transition: color 0.15s; }
.footer-contact a:hover { color: var(--gray); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.15s, color 0.15s;
}
.social-link:hover {
  border-color: var(--border-hl);
  color: var(--white);
}
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-cta-col {}
.footer-cta-col p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--gray); }

/* ── 19. REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── 20. RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .phase-card  { grid-template-columns: 1fr; gap: 24px; padding: 28px 30px; }
  .phase-left  { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  section { padding: 60px 0; }
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }
  .hero       { padding: 72px 0 60px; }
  .hero h1    { font-size: clamp(40px, 10vw, 56px); }
  .hero-glow  { display: none; }
  .problem-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .audience-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stats-bar .container { flex-direction: column; gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 24px; width: 100%; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 540px) {
  .problem-grid  { grid-template-columns: 1fr; }
  .phase-card    { padding: 24px; }
  .pricing-section { padding: 32px 24px; }
  .booking-guarantee { padding: 20px; }
  .calendly-placeholder { padding: 40px 24px; }
}
