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

:root {
  --sand:      #F5F0E8;
  --sand-2:    #EDE6D8;
  --ink:       #1A110A;
  --ink-2:     #2E1F12;
  --body:      #5C4A37;
  --muted:     #8C7A68;
  --accent:      #C4540A;
  --accent-dark: #A8430A;
  --accent-warm: #D4875A;
  --success: #5AE08A;
  --accent-lt:   rgba(196,84,10,0.10);
  --sand-a40: rgba(245,240,232,0.40);
  --sand-a30: rgba(245,240,232,0.30);
  --sand-a10: rgba(245,240,232,0.10);
  --sand-a05: rgba(245,240,232,0.05);
  --sand-a06: rgba(245,240,232,0.06);
  --sand-a14: rgba(245,240,232,0.14);
  --sand-a25: rgba(245,240,232,0.25);
  --sand-a35: rgba(245,240,232,0.35);
  --sand-a50: rgba(245,240,232,0.50);
  --sand-a60: rgba(245,240,232,0.60);
  --cream:     #FBF8F3;
  --border:    #DDD3C4;
  --border-md: #C9BDA8;
  --radius:    12px;
}

/* === Base === */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sand);
  color: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === Section Patterns === */
.section-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.75;
}

/* Sticky-header two-column layout used by Features, HiW, Problem */
.sticky-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.sticky-header { position: sticky; top: 88px; }

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--sand);
  padding: 13px 26px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  letter-spacing: 0.005em;
  text-decoration: none;
}
.btn-primary:hover { background: var(--ink-2); }

.btn-arrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,240,232,0.14);
  border-radius: 4px;
  width: 22px;
  height: 22px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  font-family: 'Inter', sans-serif;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--body);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-md);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}
.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.btn-block { display: block; text-align: center; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1.5px solid var(--ink);
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-bottom: 1px;
}

/* Center links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a,
.nav-dropdown-toggle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 5px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-links > a:hover,
.nav-dropdown-toggle:hover { color: var(--ink); background: rgba(26,17,10,0.05); }

/* CTA in nav (right side) */
.nav-right {
  display: flex;
  align-items: center;
}
.btn-nav {
  background: var(--accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-dark); }

.nav-links > a.btn-nav {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--accent);
  text-align: center;
}

/* Contact Us inside nav-links: visible only on mobile */
.nav-cta-mobile { display: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-arrow {
  transition: transform 0.2s;
  opacity: 0.6;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(26,17,10,0.12);
  flex-direction: column;
  min-width: 200px;
  padding: 6px;
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--sand-2); color: var(--ink); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* === Hero === */
.hero {
  padding: 128px 0 0;
  position: relative;
  overflow: hidden;
}

/* Hero eyebrow overrides section-kicker defaults */
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  width: 28px;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 680px;
  margin-bottom: 0;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px;
  align-items: start;
  margin-top: 44px;
  padding-bottom: 0;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  overflow: hidden;
}
.hero-stat {
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: 'Lora', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

/* Chat card */
.phone-mockup {
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,17,10,0.10), 0 2px 8px rgba(26,17,10,0.04);
  margin-top: -32px;
}
.phone-screen { display: flex; flex-direction: column; }

.chat-header {
  background: var(--ink);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.chat-name {
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sand);
  display: block;
}
.chat-subtitle {
  font-size: 0.6875rem;
  color: var(--sand-a40);
  font-family: 'Inter', sans-serif;
  display: block;
  margin-top: 1px;
}

.chat-messages {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  display: flex;
  gap: 8px;
}
.chat-bubble.chat-user { flex-direction: row-reverse; }

.chat-bubble-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-lt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: var(--accent);
  flex-shrink: 0; align-self: flex-end;
  font-family: 'Inter', sans-serif;
}

.chat-text {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.chat-bubble.chat-ai .chat-text {
  background: var(--sand-2);
  color: var(--ink);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-bubble.chat-user .chat-text {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: var(--sand-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  margin-left: 32px;
}
.typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingBlink 1.3s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBlink { 0%,80%,100%{opacity:.25} 40%{opacity:1} }

/* Industry strip below hero */
.hero-strip {
  background: var(--ink);
  padding: 22px 0;
  margin-top: 56px;
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-strip-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--sand-a30);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.hero-strip-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-strip-pill {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sand-a60);
  background: var(--sand-a05);
  border: 1px solid var(--sand-a10);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
}

/* === Problem Section (dark) === */
.problem {
  background: var(--ink-2);
  padding: 88px 0;
}

.problem .section-kicker { color: var(--accent-warm); }
.problem .section-kicker::before { background: var(--accent-warm); }

.problem-section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.problem-section-desc {
  font-size: 1rem;
  color: var(--sand-a50);
  line-height: 1.7;
  max-width: 440px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

/* .problem-card class kept for JS animation observer */
.problem-card {
  background: var(--ink-2);
  padding: 40px 36px;
}

.problem-big-number {
  font-family: 'Lora', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}
.problem-big-number span { color: var(--accent); }

.problem-card h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(245,240,232,0.85);
  margin-bottom: 8px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.65;
}

/* === Features Section === */
.features {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-table {
  display: flex;
  flex-direction: column;
}
.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.features-row:first-child { border-top: 1px solid var(--border); }

/* .feature-card class kept for JS animation observer */
.feature-card {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.feature-card:last-child { border-right: none; }

.feature-card h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.65;
}

/* === Try It Section === */
.try-it {
  background: var(--accent);
  padding: 88px 0;
}
.try-it-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.try-it-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.try-it h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.try-it-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
}
.try-it-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.try-it-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
}

/* === How It Works === */
.how-it-works {
  background: var(--sand);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.hiw-steps { display: flex; flex-direction: column; }

/* .step class kept for JS animation observer */
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--border); }

.step-number {
  font-family: 'Lora', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 2px;
}
.step-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-content p {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.7;
}

/* === ROI Calculator === */
.roi {
  background: var(--ink);
  padding: 96px 0;
}

.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.roi .section-kicker { color: var(--accent-warm); }
.roi .section-kicker::before { background: var(--accent-warm); }

.roi-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.roi-desc {
  font-size: 1rem;
  color: var(--sand-a50);
  line-height: 1.7;
}

.roi-inputs { display: flex; flex-direction: column; gap: 24px; }

.roi-input-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(245,240,232,0.65);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.roi-input-group input[type=range] {
  width: 100%;
  accent-color: var(--accent);
  height: 3px;
  cursor: pointer;
}
.roi-input-value {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--sand);
  font-family: 'Inter', sans-serif;
}

.roi-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.roi-result-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.08);
  border-radius: 8px;
  padding: 16px 18px;
}
.roi-result-card:last-child { grid-column: span 2; }
.roi-result-label {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 4px;
  display: block;
  font-family: 'Inter', sans-serif;
}
.roi-result-number {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: -0.02em;
  display: block;
}
.roi-result-number.roi-result-big { font-size: 2rem; }
.roi-result-number.roi-result-green { color: var(--success); }

/* === Industries === */
.industries {
  background: var(--cream);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 52px;
}

/* .industry-card class kept for JS animation observer */
.industry-card {
  background: var(--cream);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
  text-decoration: none;
}
.industry-card:hover { background: var(--sand-2); }

.industry-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
  font-family: 'Inter', sans-serif;
}
.industry-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.industry-card p {
  font-size: 0.875rem;
  color: var(--body);
  line-height: 1.6;
  flex: 1;
}
.industry-more {
  display: block;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* === Testimonials === */
.social-proof {
  background: var(--sand);
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.proof-header { margin-bottom: 52px; }

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

/* .proof-card class kept for JS animation observer */
.proof-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-quote {
  font-family: 'Lora', serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.75;
  flex: 1;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-lt);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.proof-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  display: block;
  font-family: 'Inter', sans-serif;
}
.proof-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  display: block;
  font-family: 'Inter', sans-serif;
}

/* === Pricing === */
.pricing {
  background: var(--cream);
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-header { max-width: 500px; margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* .pricing-card class kept for JS animation observer */
.pricing-card {
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card-popular {
  background: var(--ink);
  position: relative;
}

.pricing-popular-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  width: fit-content;
  font-family: 'Inter', sans-serif;
}

.pricing-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.pricing-card-popular .pricing-name { color: var(--sand-a40); }

.pricing-price {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.pricing-card-popular .pricing-price { color: var(--sand); }
.pricing-card-popular .pricing-price span { color: var(--sand-a40); }

.pricing-desc {
  font-size: 0.875rem;
  color: var(--body);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}
.pricing-card-popular .pricing-desc {
  color: var(--sand-a50);
  border-color: var(--sand-a10);
}

.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--body);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.pricing-card-popular .pricing-features li { color: var(--sand-a60); }
.pricing-features li::before {
  content: "—";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn-outline {
  display: block;
  text-align: center;
  padding: 12px 24px;
}
.pricing-card .btn-accent {
  display: block;
  text-align: center;
  padding: 12px 24px;
}

/* === CTA / Contact Form === */
.cta {
  background: var(--ink-2);
  padding: 96px 0;
}
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta .section-kicker { color: var(--accent-warm); }
.cta .section-kicker::before { background: var(--accent-warm); }

.cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--sand-a50);
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form input,
.cta-form select {
  background: var(--sand-a06);
  border: 1px solid var(--sand-a14);
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--sand);
  font-family: 'Inter', sans-serif;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s;
}
.cta-form input::placeholder { color: var(--sand-a30); }
.cta-form input:focus,
.cta-form select:focus { border-color: var(--accent); }
.cta-form select { color: var(--sand-a40); }
.cta-form select option { color: var(--ink); background: var(--cream); }

.cta-form button[type=submit] {
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  width: 100%;
  transition: background 0.15s;
}
.cta-form button[type=submit]:hover { background: var(--accent-dark); }

.cta-disclaimer {
  font-size: 0.8125rem;
  color: var(--sand-a35);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* === Contact Info === */
.contact-us {
  background: var(--sand);
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.contact-us-header { margin-bottom: 52px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-card {
  background: var(--cream);
  padding: 36px 32px;
}
.contact-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
  font-family: 'Inter', sans-serif;
}
.contact-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-card a,
.contact-card p {
  font-size: 0.9375rem;
  color: var(--body);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.contact-card a:hover { color: var(--accent); }

/* === Footer === */
.footer {
  background: var(--ink);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--sand-a10);
}
.footer-logo {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sand);
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--sand-a40);
  line-height: 1.65;
  font-family: 'Inter', sans-serif;
}
.footer-links h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--sand-a30);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: var(--sand-a60);
  text-decoration: none;
  margin-bottom: 9px;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--sand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--sand-a25);
  font-family: 'Inter', sans-serif;
}

/* === Tablet Breakpoint (1024px) === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-mockup { margin-top: 0; max-width: 480px; }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* === Mobile Breakpoint === */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    border-bottom: 1.5px solid var(--ink);
    padding: 16px 20px 20px;
    flex-direction: column;
    gap: 4px;
  }
  .nav-links.active { display: flex; }
  .nav-links > a {
    padding: 10px 12px;
    font-size: 0.9375rem;
    border-radius: 8px;
    width: 100%;
  }

  .nav-cta-mobile { display: block !important; margin-top: 8px; text-align: center; }

  .sticky-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sticky-header {
    position: static;
  }

  .roi-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    background: transparent;
    gap: 16px;
    border: none;
    border-radius: 0;
  }
  .pricing-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  /* CTA */
  .cta-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Container */
  .container { padding: 0 24px; }

  /* Section padding */
  .hero, .problem, .features, .try-it, .how-it-works, .roi, .industries, .social-proof, .pricing, .cta, .contact-us { padding: 64px 0; }
  .try-it { padding: 72px 0; }

  /* Hero */
  .hero { padding: 96px 0 0; }
  .hero h1 { font-size: clamp(2.25rem, 7vw, 3rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-strip-inner { gap: 16px; }
  .hero-strip-label { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Features */
  .features-row { grid-template-columns: 1fr; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-card:last-child { border-bottom: none; }

  /* Try it */
  .try-it-buttons { flex-direction: column; align-items: center; }

  /* How it works */
  .step { grid-template-columns: 40px 1fr; gap: 16px; }

  /* ROI */
  .roi-results { grid-template-columns: 1fr; }
  .roi-result-card:last-child { grid-column: span 1; }

  /* CTA form */
  .cta-form-row { grid-template-columns: 1fr; }
}

/* === Small Mobile (480px) === */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .problem-big-number { font-size: 3rem; }
}
