/* === BASE RESET & TOKENS === */
:root {
  --bg: #F7F4EE;
  --bg-alt: #EDE9E1;
  --fg: #0D1B2A;
  --fg-muted: #6B7280;
  --accent: #00D4B1;
  --accent-dark: #00A88A;
  --navy: #0D1B2A;
  --teal: #00D4B1;
  --cream: #F7F4EE;
  --warm-dark: #1A2332;
  --border: rgba(13, 27, 42, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --section-pad: 100px 0;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', system-ui, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border: 1px solid var(--teal);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--navy);
}

/* === SECTION COMMON === */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}

/* === HERO === */
.hero {
  padding: 140px 40px 100px;
  background: var(--cream);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(42px, 5vw, 64px);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 100px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === PHONE FRAME === */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.phone-frame {
  width: 280px;
  background: var(--navy);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(13,27,42,0.25), 0 8px 24px rgba(13,27,42,0.15);
  position: relative;
}

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

.phone-screen {
  background: #1A2332;
  border-radius: 28px;
  padding: 20px 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-status-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.call-time {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.call-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.contact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D4B1, #0099FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.contact-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.contact-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 177, 0.15);
  border: 1px solid rgba(0, 212, 177, 0.3);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--teal);
  width: fit-content;
}

.ai-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

.transcript-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.transcript-line {
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 8px;
}

.transcript-line.user {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

.transcript-line.ai {
  background: rgba(0, 212, 177, 0.08);
  color: rgba(255,255,255,0.85);
}

.transcript-line.highlighted {
  background: rgba(0, 212, 177, 0.15);
  border: 1px solid rgba(0, 212, 177, 0.25);
  color: white;
}

.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 177, 0.2);
  border: 1px solid rgba(0, 212, 177, 0.35);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--teal);
  font-weight: 500;
}

.check-icon {
  font-size: 12px;
  color: var(--teal);
}

.hero-visual-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* === PROBLEM SECTION === */
.problem {
  background: var(--navy);
  padding: var(--section-pad);
  color: white;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.problem .section-label {
  color: var(--teal);
}

.problem-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  margin-bottom: 56px;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.problem-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}

.problem-quote {
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 700px;
}

.problem-attribution {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Mono', monospace;
}

/* === HOW IT WORKS === */
.how {
  background: var(--cream);
  padding: var(--section-pad);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.how-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 64px;
  max-width: 500px;
}

.how-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 64px;
}

.step {
  flex: 1;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
}

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 48px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='24' viewBox='0 0 48 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12H40M40 12L28 4M40 12L28 20' stroke='%2300D4B1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.capabilities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.capability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.cap-icon {
  font-size: 14px;
}

/* === INDUSTRIES === */
.industries {
  background: var(--bg-alt);
  padding: var(--section-pad);
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.industries-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.15;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.industry-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 212, 177, 0.1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
}

.industry-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.industry-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(0, 212, 177, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}

/* === PRICING === */
.pricing {
  background: var(--navy);
  padding: var(--section-pad);
  color: white;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing .section-label { color: var(--teal); }

.pricing-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: white;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.pricing-tier.featured {
  background: rgba(0, 212, 177, 0.06);
  border-color: rgba(0, 212, 177, 0.3);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: 8px;
}

.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.tier-period {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
}

.tier-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}

.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
}

.pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-family: 'DM Mono', monospace;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--cream);
  padding: 100px 40px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 24px;
}

.manifesto-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  background: var(--bg-alt);
  padding: var(--section-pad);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing-headline {
  font-size: clamp(36px, 5vw, 68px);
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}

.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
}

.closing-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}

.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.closing-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.closing-cta p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === CONTACT / LEAD FORM === */
.contact {
  background: var(--navy);
  padding: var(--section-pad);
  color: white;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.contact-headline {
  font-size: clamp(28px, 3vw, 44px);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-pitch {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

.vertical-pitch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vertical-pitch-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-left: 16px;
  position: relative;
}

.vertical-pitch-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 12px;
}

.lead-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-row + .form-group,
.form-group:last-child {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff44' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--navy);
  color: white;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}

.submit-btn:hover { background: var(--accent-dark); }
.submit-btn:active { transform: scale(0.98); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Success card after form submission */
.success-card {
  background: rgba(0, 212, 177, 0.08);
  border: 1px solid rgba(0, 212, 177, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 12px;
}

.success-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto;
}

/* Contact section social proof */
.contact-social-proof {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.social-proof-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sp-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--teal);
  line-height: 1;
}

.sp-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Pitch preview animation */
.pitch-preview {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(0, 212, 177, 0.08);
  border: 1px solid rgba(0, 212, 177, 0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pitch-preview-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.pitch-preview-text {
  color: rgba(255,255,255,0.8);
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}

.form-alert.success {
  background: rgba(0, 212, 177, 0.15);
  border: 1px solid rgba(0, 212, 177, 0.3);
  color: var(--teal);
  display: block;
}

.form-alert.error {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
  display: block;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: white;
  padding: 60px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Scroll offset for fixed nav on anchor links */
.contact { scroll-margin-top: 72px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { align-items: flex-start; }
  .hero-sub { max-width: 100%; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 24px 80px; }
  .hero-inner { padding: 0; }
  .problem-inner,
  .how-inner,
  .industries-inner,
  .pricing-inner,
  .closing-inner { padding: 0 24px; }
  .manifesto { padding: 80px 24px; }
  .site-footer { padding: 60px 24px 32px; }

  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 40px; height: 20px; background-size: contain; }

  .industries-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .closing-proof { flex-direction: column; gap: 24px; }
  .proof-divider { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .lead-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 80px 0; }
  .nav-cta { display: none; }
}