/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --cream:        #F8F7F4;
  --cream-dark:   #F1EFE9;
  --ink:          #0D0C0A;
  --ink-surface:  #161513;
  --ink-raised:   #1C1A17;
  --accent:       #E8642B;
  --accent-hover: #CD5422;
  --text:         #1A1917;
  --muted:        #74736E;
  --border:       #E3E1DB;
  --border-dark:  #2A2826;
  --border-mid:   #1E1D1B;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.21, 0.47, 0.32, 0.98);

  --section-py:   6rem;
  --container-px: 1.5rem;
  --radius-lg:    1rem;
  --radius-xl:    1.25rem;
  --radius-full:  999px;
}

@media (min-width: 768px) {
  :root {
    --section-py:   9rem;
    --container-px: 2.5rem;
  }
}

@media (min-width: 1280px) {
  :root { --container-px: 3rem; }
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 0.875rem;
}


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

.section {
  padding: var(--section-py) 0;
}

.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); }

.text-white       { color: #fff; }
.text-white-muted { color: rgba(255,255,255,0.4); }
.text-white-faded { color: rgba(255,255,255,0.28); }
.text-accent      { color: var(--accent); }

.max-prose { max-width: 48ch; }

.two-col-layout {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .two-col-layout {
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }
  .sticky-col {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}


/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.section-headline.text-white { color: #fff; }

.section-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.section-sub.text-white-muted { color: rgba(255,255,255,0.4); }

.headline-faded { color: rgba(26,25,23,0.28); }
.headline-dim   { color: rgba(255,255,255,0.45); }

.section-intro {
  max-width: 40rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .section-intro { margin-bottom: 5rem; }
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn-sm  { font-size: 0.8125rem; padding: 0.5rem 1rem; }
.btn-lg  { font-size: 0.9375rem; padding: 1rem 1.75rem; }
.btn-full { width: 100%; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.625rem 1.375rem;
}
.btn-accent:hover { background: var(--accent-hover); transform: scale(1.015); }
.btn-accent:active { transform: scale(0.98); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9375rem;
  padding: 1rem 1.75rem;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
}

.link-underline {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.link-underline:hover { color: #fff; }

.link-accent {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}
.link-accent:hover { color: var(--accent-hover); }


/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  30%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero entrance animations */
.anim-hero-1 { animation: fadeUp 0.7s var(--ease) 0.10s both; }
.anim-hero-2 { animation: fadeUp 0.7s var(--ease) 0.22s both; }
.anim-hero-3 { animation: fadeUp 0.7s var(--ease) 0.34s both; }
.anim-hero-4 { animation: fadeUp 0.7s var(--ease) 0.46s both; }
.anim-hero-5 { animation: fadeUp 0.7s var(--ease) 0.58s both; }

/* Scroll-triggered fade-up */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate].is-visible { opacity: 1; transform: none; }

[data-animate][data-delay="1"] { transition-delay: 0.08s; }
[data-animate][data-delay="2"] { transition-delay: 0.16s; }
[data-animate][data-delay="3"] { transition-delay: 0.24s; }
[data-animate][data-delay="4"] { transition-delay: 0.32s; }


/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(13,12,10,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header-inner { height: 4.5rem; }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  display: none;
}

@media (min-width: 480px) {
  .logo-text { display: block; }
}

/* Desktop nav */
.desktop-nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
  }
}

.desktop-nav a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: #fff; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 0.75rem; }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* Mobile menu toggle */
.menu-toggle {
  color: rgba(255,255,255,0.65);
  padding: 0.375rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { color: #fff; }

@media (min-width: 768px) { .menu-toggle { display: none; } }

/* Mobile nav dropdown */
.mobile-nav {
  background: rgba(13,12,10,0.98);
  border-top: 1px solid var(--border-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.mobile-nav.open { max-height: 20rem; }

.mobile-nav .container {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-mid);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #fff; }

.mobile-nav-cta {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
}


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

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,100,43,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .hero .container {
    padding-top: 9rem;
    padding-bottom: 7rem;
  }
}

.hero-content { max-width: 56rem; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* Headline */
.hero-headline {
  font-size: clamp(2.2rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Sub */
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    gap: 1rem;
  }
}

.hero-ctas .btn-accent {
  box-shadow: 0 8px 30px rgba(232,100,43,0.2);
}

/* Strip */
.hero-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.strip-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.strip-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .strip-items {
    flex-direction: row;
    gap: 2rem;
  }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
}

.strip-item svg { color: var(--accent); flex-shrink: 0; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  pointer-events: none;
}

.scroll-cue-label {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  font-weight: 500;
}

.scroll-cue-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}


/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(4, 1fr); }
}

.problem-card {
  background: var(--cream);
  padding: 1.75rem 2rem;
  transition: background 0.25s;
}

.problem-card:hover { background: #fff; }

.problem-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.25s;
}

.problem-card:hover .problem-num { color: rgba(232,100,43,0.18); }

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.problem-card p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Callout banner */
.callout-banner {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .callout-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.callout-headline {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.callout-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
}

.callout-btn { flex-shrink: 0; }


/* ============================================================
   SOLUTIONS
============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 580px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(4, 1fr); }
}

.solution-card {
  position: relative;
  background: var(--ink-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  transition: background 0.25s, border-color 0.25s;
}

.solution-card:hover {
  background: var(--ink-raised);
  border-color: rgba(232,100,43,0.2);
}

.solution-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.38);
  transition: background 0.25s, color 0.25s;
}

.solution-card:hover .solution-icon {
  background: rgba(232,100,43,0.15);
  color: var(--accent);
}

.solution-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,100,43,0.12);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
}

.solution-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.solution-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.32);
}

.solutions-footer {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.22);
}


/* ============================================================
   TRANSFORMATIONS
============================================================ */
.transformation-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.25s;
}

.transformation-card:last-of-type { margin-bottom: 0; }
.transformation-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.06); }

.transformation-inner {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .transformation-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 2.5rem 3rem;
  }
}

.tf-biz-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.tf-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.tf-industry {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.tf-location {
  font-size: 0.75rem;
  color: rgba(26,25,23,0.35);
  margin-bottom: 0.875rem;
}

.tf-problem-box, .tf-solution-box {
  background: var(--cream);
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
}

.tf-solution-box {
  border: 1px solid;
}

.tf-box-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.tf-problem-box p, .tf-solution-box p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
}

.tf-arrow {
  display: none;
  color: var(--border);
  padding: 0 2rem;
  transition: color 0.25s;
}

@media (min-width: 900px) {
  .tf-arrow { display: flex; align-items: center; }
}

.transformation-card:hover .tf-arrow { color: var(--accent); }

.tf-divider {
  display: none;
  width: 1px;
  height: 4rem;
  background: var(--border);
  margin: 0 2rem;
}

@media (min-width: 900px) { .tf-divider { display: block; } }

.tf-improvements p.tf-box-label { margin-bottom: 0.75rem; }

.tf-improvements ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tf-improvements li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.4;
}

.tf-improvements li svg { flex-shrink: 0; margin-top: 0.1rem; }

.transformations-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}


/* ============================================================
   WHY US
============================================================ */
.reasons-list {
  display: flex;
  flex-direction: column;
}

.reason-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-mid);
}

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

@media (min-width: 768px) {
  .reason-item { gap: 2.5rem; padding: 2.5rem 0; }
}

.reason-num {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--border-dark);
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: color 0.25s;
}

.reason-item:hover .reason-num { color: rgba(232,100,43,0.3); }

.reason-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .reason-item h3 { font-size: 1.5rem; }
}

.reason-item p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.38);
}


/* ============================================================
   PROCESS
============================================================ */
.process-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-list::before {
  content: '';
  position: absolute;
  left: 1.75rem;
  top: 3.5rem;
  bottom: 3.5rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent);
  pointer-events: none;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.process-step:last-child { padding-bottom: 0; }

@media (min-width: 768px) {
  .process-step { gap: 2.5rem; padding-bottom: 3.5rem; }
}

.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
  transition: border-color 0.25s;
}

.process-step:hover .step-circle { border-color: var(--accent); }

.step-circle span {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.25s;
}

.process-step:hover .step-circle span { color: var(--accent); }

.step-body { padding-top: 0.875rem; }

.step-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.6rem;
}

.step-title-row h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

@media (min-width: 768px) {
  .step-title-row h3 { font-size: 1.5rem; }
}

.step-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream-dark);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
}

.step-body > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
}


/* ============================================================
   FREE AUDIT
============================================================ */
.audit-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,100,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}

#audit { position: relative; }

.audit-layout {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .audit-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

/* Audit info */
.audit-includes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.audit-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.audit-includes li svg { flex-shrink: 0; margin-top: 0.05rem; }

.audit-no-pitch {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-mid);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.18);
  line-height: 1.65;
}

/* Form */
.audit-form-wrap { position: relative; z-index: 1; }

.audit-form {
  background: var(--ink-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.label-optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: rgba(255,255,255,0.22);
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--border-dark);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.18); }

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(232,100,43,0.5);
}

.form-group input.error,
.form-group select.error {
  border-color: rgba(220,50,50,0.5);
}

.form-group select { cursor: pointer; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.3);
  pointer-events: none;
}

.form-error {
  font-size: 0.75rem;
  color: #f87171;
  min-height: 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
  margin-top: -0.25rem;
}

/* Form error banner */
.form-error-banner {
  background: rgba(220, 50, 50, 0.1);
  border: 1px solid rgba(220, 50, 50, 0.3);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
}

.form-error-banner p {
  font-size: 0.875rem;
  color: #f87171;
  line-height: 1.5;
}

.form-error-banner a {
  color: #f87171;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form success */
.form-success {
  background: var(--ink-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(232,100,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.form-success strong { color: rgba(255,255,255,0.6); }


/* ============================================================
   FAQ
============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  padding: 1.375rem 0;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-trigger > span:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(26,25,23,0.65);
  line-height: 1.45;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .faq-trigger > span:first-child { font-size: 1.0625rem; }
}

.faq-trigger:hover > span:first-child,
.faq-trigger[aria-expanded="true"] > span:first-child {
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-top: 0.125rem;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}

.faq-body.open { max-height: 20rem; }

.faq-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 1.375rem;
  max-width: 56ch;
}

.faq-email-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}
.faq-email-link:hover { color: var(--accent-hover); }


/* ============================================================
   FINAL CTA
============================================================ */
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,100,43,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-line-top,
.final-cta-line-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07), transparent);
}

.final-cta-line-top  { top: 0; }
.final-cta-line-bottom { bottom: 0; }

.final-cta-inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta-headline { font-size: clamp(1.875rem, 4.5vw, 3.75rem); }

.final-cta-sub {
  max-width: 38ch;
  margin: 0 auto 2.5rem;
}

.final-cta-email {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.2);
}

.final-cta-email a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.final-cta-email a:hover { color: rgba(255,255,255,0.6); }


/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border-mid);
}

.footer .container { padding-top: 3rem; padding-bottom: 3rem; }

@media (min-width: 768px) {
  .footer .container { padding-top: 4rem; padding-bottom: 4rem; }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.22);
  margin-top: 0.625rem;
  line-height: 1.55;
  max-width: 26ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.32);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 580px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.18);
}

.footer-email {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}

.footer-email:hover { color: rgba(255,255,255,0.5); }


/* ============================================================
   RESPONSIVE OVERRIDES
============================================================ */
@media (max-width: 479px) {
  .hero-headline { font-size: 2rem; }
  .section-headline { font-size: 1.75rem; }
  .callout-banner { padding: 1.5rem; }
  .transformation-inner { padding: 1.5rem; }
  .audit-form { padding: 1.5rem; }
  .hero-strip { gap: 1rem; }
  .strip-rule { display: none; }
}
