/* ============================================
   SAM AI v3 — Industrial Confidence
   FieldStack · Austin, TX
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --bg:          #0d0d0d;
  --bg-alt:      #141414;
  --bg-card:     #1a1a1a;
  --border:      #2a2a2a;
  --border-sub:  #1f1f1f;
  --rule:        #222220;

  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --red:         #ef4444;

  --cream:       #f0ebe0;
  --muted:       #888880;
  --subtle:      #444440;

  --section-py:  7rem;
  --container:   1200px;

  --r-sm:   4px;
  --r-md:   8px;
}

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

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

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  mix-blend-mode: overlay;
}

/* Headlines — Barlow Condensed, uppercase */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }

p { color: var(--muted); line-height: 1.7; }

img { max-width: 100%; height: auto; display: block; }
video { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   UTILITIES
   ============================================ */
.text-orange { color: var(--orange); }
.text-red    { color: var(--red); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; position: relative; z-index: 1; }
.section-alt { background-color: var(--bg-alt); }

/* ============================================
   SECTION LABEL — stencil stamp style
   ============================================ */
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-header { margin-bottom: 3.5rem; }

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header p {
  max-width: 540px;
  margin-top: 1rem;
  font-size: 1rem;
}

/* ============================================
   BUTTONS — flat, stamp style
   ============================================ */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #000;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg  { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-xl  { padding: 1.1rem 2.5rem; font-size: 1.15rem; }

.btn-subtext {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.65;
  margin-top: 0.2rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--orange);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.83rem;
  color: var(--muted);
  position: relative;
  z-index: 100;
  text-align: center;
}

.announcement-bar strong { color: var(--cream); }

.announcement-bar a {
  color: var(--orange);
  font-weight: 600;
  margin-left: 0.5rem;
  transition: color 0.2s;
}

.announcement-bar a:hover { color: var(--cream); }

.announcement-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--subtle);
  display: flex;
  align-items: center;
  padding: 0.25rem;
  transition: color 0.2s;
  position: absolute;
  right: 1.5rem;
}

.announcement-dismiss svg { width: 15px; height: 15px; }
.announcement-dismiss:hover { color: var(--cream); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.9rem 0;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border-sub);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo { height: 36px; width: auto; }

.nav-brand-divider {
  color: var(--subtle);
  font-size: 1rem;
  line-height: 1;
}

.nav-product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-phone:hover { color: var(--cream); }

/* Hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 40;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--cream); }

/* ============================================
   HERO — Hard Split
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.hero-left {
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 5rem 0 5rem 0;
}

.hero-left-inner {
  padding: 0 4rem 0 0;
  max-width: 560px;
  margin-left: auto;
  width: 100%;
}

.hero-left-inner .section-label {
  margin-bottom: 1.25rem;
}

.hero-left-inner h1 {
  color: var(--cream);
  margin-bottom: 1.75rem;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.bullet-dash {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.hero-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.hero-link:hover { color: var(--cream); }

/* Hero trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--subtle);
  line-height: 1;
}

.hero-trust-item svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.hero-trust-sep {
  color: var(--subtle);
  font-size: 0.7rem;
  opacity: 0.5;
}

/* Nav demo link highlight */
.nav-link-demo {
  color: var(--orange) !important;
}

.nav-link-demo:hover {
  color: var(--cream) !important;
}

/* Hero right: SMS mockup panel */
.hero-right {
  position: relative;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.hero-phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-phone-wrap .phone-mockup {
  width: 280px;
}

.hero-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-sm);
}

.hero-phone-badge svg {
  width: 13px;
  height: 13px;
}

.hero-phone-caption {
  font-size: 0.72rem;
  color: var(--subtle);
  text-align: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  max-width: 240px;
  line-height: 1.5;
}

/* ============================================
   STATS BAR — Spec sheet
   ============================================ */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}

.stats-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 3rem;
  flex: 1;
  max-width: 340px;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  max-width: 200px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

/* ============================================
   TRADE STRIP
   ============================================ */
.trade-strip {
  background: var(--bg);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.trade-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trade-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.trade-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trade-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.trade-sep {
  color: var(--subtle);
  font-weight: 300;
}

/* ============================================
   GEO DEFINITION SECTION
   ============================================ */
.geo-section {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}

.geo-definition {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.geo-def-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.geo-def-text strong {
  color: var(--cream);
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-section { background: var(--bg-alt); }

.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pain-content .section-label { margin-bottom: 0.75rem; }
.pain-content h2 { margin-bottom: 1.75rem; }

.pain-body p {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.pain-punch {
  font-size: 1.05rem !important;
  color: var(--cream) !important;
}

.pain-punch strong { color: var(--orange); }

.pain-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pain-stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pain-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.01em;
}

.pain-stat-rule {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.pain-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 4rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

.step-card:hover { background: #1f1f1f; }

.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  display: block;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

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

.step-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.5rem;
  color: var(--subtle);
  font-size: 1.25rem;
  font-weight: 400;
}

.step-sms-preview {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.step-sms-preview img {
  border-radius: var(--r-md);
  border: 2px solid var(--border);
  width: 100%;
}

.step-sms-caption {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-top: 0.85rem;
  text-align: center;
}

/* ============================================
   TRY SAM SECTION
   ============================================ */
.try-section { background: var(--bg); }

.try-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.try-content .section-label { margin-bottom: 0.75rem; }
.try-content h2 { margin-bottom: 1.25rem; }

.try-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.try-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.try-chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1.4;
}

.try-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.try-widget-col {
  display: flex;
  justify-content: center;
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison-section { background: var(--bg); }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.comparison-divider {
  background: var(--border);
  align-self: stretch;
  margin: 0 2.5rem;
}

.comparison-col { padding: 0 1rem; }

.comparison-col-header {
  margin-bottom: 1rem;
}

.comparison-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comparison-col h3 {
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  color: var(--cream);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.comparison-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.icon-red    { color: var(--red); }
.icon-orange { color: var(--orange); }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-section {}

/* ── Bento Grid ── */
.bento-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

/* ── Hero card (spans 2 rows) ── */
.bento-hero {
  grid-row: span 2;
  background: var(--bg-card);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.bento-hero:hover { background: #1c1c1c; }

.bento-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.bento-hero-text { flex: 1; min-width: 0; position: relative; z-index: 1; }

/* ── Standard card ── */
.feature-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.feature-card:hover {
  background: #1f1f1f;
  border-left-color: var(--orange);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1rem;
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.feature-card h3,
.bento-hero h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.feature-card p,
.bento-hero p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Phone mockup ── */
.phone-mockup {
  width: 230px;
  flex-shrink: 0;
  background: #0a0a0a;
  border-radius: 24px;
  border: 2px solid #333;
  padding: 1.25rem 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.phone-notch {
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 1rem;
}

.sms-bubble {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--cream);
}

.sms-bubble-sam {
  background: rgba(249, 115, 22, 0.12);
  border-left: 2px solid var(--orange);
  margin-right: 1rem;
}

.sms-bubble-lead {
  background: rgba(255,255,255,0.05);
  border-left: 2px solid #555;
  margin-left: 1rem;
}

.sms-time {
  font-size: 0.58rem;
  color: #666;
  margin-top: 0.2rem;
}

/* ── Call mockup ── */
.call-mockup {
  width: 230px;
  flex-shrink: 0;
  background: #0a0a0a;
  border-radius: 24px;
  border: 2px solid #333;
  padding: 2rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.call-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #e85d04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.call-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.call-status {
  font-size: 0.72rem;
  color: #4ade80;
  margin-bottom: 1.25rem;
}

.call-timer {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.call-steps {
  text-align: left;
  padding: 0 0.5rem;
}

.call-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.call-step-check {
  color: #4ade80;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Use-cases bento variant — 3 columns */
.use-cases-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

/* Keep old .features-grid (unused but kept for safety) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

/* ============================================
   PROOF SECTION
   ============================================ */
.proof-section { background: var(--bg-alt); }

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

.proof-block {
  background: var(--bg-card);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}

.proof-block:hover { background: #1f1f1f; }

.proof-block-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}

.proof-block blockquote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.proof-block cite {
  display: block;
  font-size: 0.78rem;
  color: var(--subtle);
  font-style: normal;
  margin-bottom: 1rem;
}

.proof-block p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.proof-video-wrapper {
  border-radius: var(--r-sm);
  overflow: hidden;
  margin: 0.75rem 0;
  border: 2px solid var(--border);
}

.proof-sms-img {
  border-radius: var(--r-sm);
  width: 100%;
  margin: 0.75rem 0;
  border: 1px solid var(--border);
}

.proof-timestamp {
  font-size: 0.78rem !important;
  color: var(--subtle) !important;
  font-style: italic;
}

/* ============================================
   GUARANTEE — Left-aligned, signed contract feel
   ============================================ */
.guarantee-section {
  background: var(--bg-alt);
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: flex-start;
  max-width: 880px;
}

.guarantee-icon-col {
  flex-shrink: 0;
  color: var(--orange);
  padding-top: 0.5rem;
}

.guarantee-icon-col svg {
  width: 56px;
  height: 56px;
}

.guarantee-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.guarantee-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.guarantee-body p {
  font-size: 1rem;
  color: var(--muted);
}

.guarantee-sig-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guarantee-rule {
  height: 1px;
  width: 180px;
  background: var(--border);
}

.guarantee-signature {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--subtle);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section { background: var(--bg); }

.pricing-card-single {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.pricing-card-header {
  padding: 2.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: var(--bg-alt);
}

.pricing-plan-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}

.pricing-currency {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--muted);
  margin-top: 0.75rem;
}

.pricing-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.pricing-period {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-card-body { padding: 2.5rem; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.pricing-arrow {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.pricing-highlight-row {
  color: var(--cream) !important;
  font-weight: 600;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pricing-cta .btn { width: 100%; }

.pricing-cta-note {
  font-size: 0.78rem;
  color: var(--subtle);
}

.pricing-below {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--subtle);
  font-style: italic;
}

/* ============================================
   PRICING VS COMPARISON
   ============================================ */
.pricing-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.pricing-vs-col {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-vs-sam { background: var(--bg-card); }
.pricing-vs-receptionist { background: var(--bg-alt); }

.pricing-vs-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-vs-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.pricing-vs-price-muted { color: var(--subtle); }

.pricing-vs-mo {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  color: var(--subtle);
  margin-left: 0.15rem;
}

.pricing-vs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}

.pricing-vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-vs-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-vs-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pricing-vs-vs {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--subtle);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg-alt); }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--rule);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}

.faq-item.open .faq-question h3,
.faq-question:hover h3 { color: var(--cream); }

.faq-indicator {
  color: var(--orange);
  flex-shrink: 0;
  display: flex;
}

.faq-indicator svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-indicator svg { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-cta {
  max-width: 740px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-cta a { color: var(--orange); text-decoration: none; }
.faq-cta a:hover { text-decoration: underline; }

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup.active { opacity: 1; pointer-events: all; }
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.exit-popup-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: calc(100% - 2rem);
  text-align: center;
}
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.exit-popup-close:hover { color: var(--cream); }
.exit-popup-card h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0.75rem 0 0.5rem;
}
.exit-popup-sub { color: var(--muted); margin-bottom: 1.5rem; }
.exit-popup-guarantee {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.exit-popup-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream);
  padding: 0.35rem 0;
}
.exit-popup-check { color: var(--orange); font-weight: 700; }
.exit-popup-scarcity { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-sub);
}

.final-cta-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.final-cta-content p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.final-cta-meta {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--subtle);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER IMAGE STRIP
   ============================================ */
.footer-image-strip {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  z-index: 1;
}

.footer-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.5);
}

.footer-image-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo img { height: 38px; width: auto; margin-bottom: 0.85rem; }

.footer-tagline {
  font-size: 0.83rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.footer-copyright,
.footer-disclaimer {
  font-size: 0.77rem;
  color: var(--subtle);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAV DROPDOWNS
   ============================================ */
.nav-dropdown-item {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-item:hover .nav-dropdown-trigger {
  color: var(--cream);
}

.nav-chevron {
  width: 12px !important;
  height: 12px !important;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-dropdown-item.open .nav-chevron,
.nav-dropdown-item:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nav-dropdown-item:hover .nav-dropdown,
.nav-dropdown-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.15s;
}

.nav-dropdown-link:hover {
  background: var(--bg-alt);
}

.nav-dropdown-link > svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.nav-dropdown-link span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown-link strong {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.nav-dropdown-link span > *:not(strong) {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Mobile nav group */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  margin: 0.25rem 0;
}

.mobile-nav-group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
}

.mobile-nav-group a {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  color: var(--muted);
}

/* ============================================
   FOUNDER PHOTO — Guarantee signature
   ============================================ */
.guarantee-sig-with-photo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.founder-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.integrations-section { background: var(--bg); }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

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

.integration-icon {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.integration-icon svg {
  width: 36px;
  height: 36px;
}

.integration-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.integration-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.integration-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}

.integrations-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--subtle);
}

/* ============================================
   ROI CALCULATOR
   ============================================ */
.roi-section { background: var(--bg-alt); }

.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.roi-input-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.roi-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}

.roi-input::-webkit-outer-spin-button,
.roi-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.roi-input:focus {
  outline: none;
  border-color: var(--orange);
}

.roi-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.roi-output-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.roi-output-highlight {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.05);
}

.roi-output-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.roi-output-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
  transition: opacity 0.15s ease;
}

.roi-output-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.15rem;
}

.roi-output-note {
  font-size: 0.77rem;
  color: var(--subtle);
  line-height: 1.4;
}

.roi-flash {
  animation: roi-num-flash 0.25s ease;
}

@keyframes roi-num-flash {
  0%   { opacity: 0.3; }
  100% { opacity: 1; }
}

.roi-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.roi-cta-note {
  font-size: 0.77rem;
  color: var(--subtle);
  max-width: 520px;
}

/* ============================================
   HERO — LEAD SOURCE STRIP
   ============================================ */
.hero-sources {
  margin-top: 1.5rem;
}

.hero-sources-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero-sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-sources-list span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
}

/* ============================================
   SCARCITY NOTE
   ============================================ */
.scarcity-note {
  font-size: 0.8rem;
  color: var(--orange);
  opacity: 0.85;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   FOOTER — MADE IN USA
   ============================================ */
.footer-usa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.77rem;
  color: var(--subtle);
}

.footer-usa svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 1rem;
  align-items: center;
}

.mobile-sticky-cta .btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
}

.mobile-sticky-phone {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-sticky-phone:hover {
  color: var(--cream);
}

/* ============================================
   AUTHOR BLOCK
   ============================================ */
.author-block {
  border-top: 1px solid var(--rule);
  padding: 2rem 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.author-block .author-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.author-block p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.author-block a {
  color: var(--cream);
  text-decoration: none;
}

.author-block a:hover {
  color: var(--orange);
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-py: 5rem; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left { padding: 5rem 0 0; }
  .hero-left-inner { padding: 0; max-width: 100%; margin: 0; }

  .hero-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem;
  }

  .hero-phone-wrap .phone-mockup {
    width: 260px;
  }

  .pain-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pain-stats {
    flex-direction: row;
    gap: 1.5rem;
  }

  .try-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-connector { display: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-hero { grid-row: span 1; flex-direction: column; padding: 2rem; }
  .phone-mockup, .call-mockup { width: 100%; max-width: 280px; }

  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .use-cases-grid .bento-hero { grid-row: span 2; flex-direction: row; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-divider { display: none; }
  .comparison-col { padding: 0; margin-bottom: 2.5rem; }

  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  .roi-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  :root { --section-py: 4rem; }

  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: flex; }

  .hero-left-inner h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }

  .stats-bar-inner { flex-direction: column; gap: 2rem; padding: 0 1rem; }
  .stat-divider { width: 48px; height: 1px; align-self: auto; }
  .stat-item { padding: 0; align-items: center; text-align: center; max-width: none; }

  .trade-strip-inner { flex-direction: column; gap: 0.75rem; }

  .pain-stats { flex-direction: column; }
  .nav-phone { display: none; }

  .phone-mockup, .call-mockup { display: none; }
  .bento-hero { padding: 1.75rem; }

  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .use-cases-grid .bento-hero { grid-row: span 2; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .proof-grid { grid-template-columns: 1fr; }

  .integrations-grid { grid-template-columns: 1fr 1fr; }

  .roi-outputs { grid-template-columns: 1fr 1fr; }

  .guarantee-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guarantee-icon-col { padding-top: 0; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .mobile-sticky-cta { display: flex; }

  /* Add bottom padding so sticky bar doesn't cover content */
  body { padding-bottom: 4rem; }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .use-cases-grid .bento-hero { grid-row: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: 1fr; }
  .roi-outputs { grid-template-columns: 1fr; }
  .guarantee-sig-with-photo { flex-wrap: wrap; }
  .pricing-card-body { padding: 1.5rem 1.25rem; }
  .pricing-card-header { padding: 2rem 1.25rem; }

  .pricing-vs {
    grid-template-columns: 1fr;
  }

  .pricing-vs-divider {
    width: 100%;
    height: 1px;
    flex-direction: row;
  }
}
