/* ============================================================
   NEVER GO TO VOICEMAIL — Main Stylesheet
   ============================================================
   HOW TO CUSTOMIZE:
   - Brand colors: Edit the CSS variables in :root below
   - Accent/teal color: --brand-teal, --brand-teal-hover
   - Navy color: --brand-navy, --brand-navy-dark
   - Font: Change --font-heading and --font-body
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  /* Core brand palette */
  --brand-navy:         hsl(216, 72%, 18%);
  --brand-navy-dark:    hsl(216, 72%, 12%);
  --brand-teal:         hsl(174, 72%, 30%);
  --brand-teal-hover:   hsl(174, 72%, 25%);
  --brand-teal-light:   hsl(174, 60%, 92%);

  /* Surfaces */
  --bg-white:           hsl(0, 0%, 100%);
  --bg-page:            hsl(210, 20%, 98%);
  --bg-alt:             hsl(216, 30%, 96%);
  --card:               hsl(0, 0%, 100%);

  /* Text */
  --text-heading:       hsl(216, 72%, 18%);
  --text-body:          hsl(222, 20%, 30%);
  --text-muted:         hsl(215, 16%, 50%);

  /* Borders */
  --border:             hsl(214, 30%, 88%);
  --border-soft:        hsl(214, 30%, 88%);

  /* Semantic */
  --destructive:        hsl(0, 84%, 60%);
  --success:            hsl(174, 72%, 30%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --section-py:  clamp(4rem, 8vw, 6rem);
  --container:   1200px;
  --radius:      0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.25rem;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-page);
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

/* ─── Layout Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

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

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand-navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-divider {
  width: 4rem;
  height: 4px;
  background: var(--brand-teal);
  border-radius: 9999px;
  margin-inline: auto;
}

.section-subtitle {
  max-width: 42rem;
  margin-inline: auto;
  margin-top: 1.25rem;
  color: var(--text-body);
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  line-height: 1.15;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-teal {
  background: var(--brand-teal);
  color: #fff;
}
.btn-teal:hover { background: var(--brand-teal-hover); }

.btn-navy {
  background: var(--brand-navy);
  color: #fff;
}
.btn-navy:hover { background: var(--brand-navy-dark); }

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--brand-navy);
}
.btn-outline:hover { background: var(--bg-alt); }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

.card:hover { box-shadow: 0 4px 20px hsla(216, 72%, 18%, 0.08); }

/* ─── Icon Badge ─────────────────────────────────────────── */
.icon-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge--navy { background: var(--brand-navy); color: #fff; }
.icon-badge--alt  { background: var(--bg-alt); color: var(--brand-teal); }

/* ─── Separator ─────────────────────────────────────────── */
hr.soft {
  border: none;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px hsla(0,0%,0%,0.05);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-navy);
  text-decoration: none;
}

.header-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  /* logo has dark background - add subtle treatment */
  border-radius: var(--radius);
  padding: 4px 8px;
  background: var(--brand-navy-dark);
}

/* Consent checkboxes */
.form-consent-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-consent-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-teal);
  cursor: pointer;
}

.form-consent-label span {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ─── Header Logo (original text logo rules - keep for fallback) ─ */

.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--brand-teal); }

.header-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 20px hsla(0,0%,0%,0.07);
}

#mobile-menu.open { display: block; }

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1rem;
}

#mobile-menu a {
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

#mobile-menu a:last-of-type { border-bottom: none; }
#mobile-menu a:hover { color: var(--brand-teal); }

#mobile-menu .btn { margin-top: 0.75rem; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-content { max-width: 38rem; position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 34rem;
}

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

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
}

.hero-bullets li svg { color: var(--brand-teal); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-phone-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-phone-note a {
  color: var(--brand-teal);
  font-weight: 500;
}
.hero-phone-note a:hover { text-decoration: underline; }

/* Hero side panel */
.hero-panel {
  display: none;
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 34%;
  background: var(--bg-alt);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.hero-panel-card {
  background: var(--brand-navy);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  box-shadow: 0 8px 32px hsla(216, 72%, 18%, 0.3);
}

.hero-panel-card p:first-child {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.hero-panel-card p:nth-child(2) {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-panel-tag {
  background: var(--brand-teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-panel-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
#social-proof {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding-block: 3rem 4rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

.trust-badge svg { color: var(--brand-teal); }

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.testimonials-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars { display: flex; gap: 0.2rem; }

.stars svg { color: hsl(45, 96%, 50%); fill: hsl(45, 96%, 50%); }

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-body);
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--brand-navy);
  filter: blur(3px);
  user-select: none;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 60rem;
  margin-inline: auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px hsla(216, 72%, 18%, 0.25);
}

.step-icon-wrap svg { color: #fff; }

.step-number {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand-teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.step p { font-size: 0.9rem; color: var(--text-body); max-width: 24rem; }

.step-note {
  max-width: 38rem;
  margin-inline: auto;
  margin-top: 3rem;
  text-align: center;
  background: var(--brand-teal-light);
  border: 1px solid hsla(174, 72%, 30%, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-navy);
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
#who-its-for {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

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

.industry-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.2s;
}

.industry-card:hover {
  box-shadow: 0 6px 24px hsla(216, 72%, 18%, 0.1);
}

.industry-card h3 {
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.detail-label.muted { color: var(--text-muted); }
.detail-label.teal  { color: var(--brand-teal); }

.detail-text { font-size: 0.85rem; color: var(--text-body); }
.detail-text.navy { color: var(--brand-navy); font-weight: 600; }

/* ============================================================
   FEATURES
   ============================================================ */
#features {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: 0 4px 16px hsla(216, 72%, 18%, 0.07); }

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }

.not-a-bot {
  max-width: 42rem;
  margin-inline: auto;
  border: 2px solid var(--brand-teal);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  background: var(--card);
}

.not-a-bot strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.not-a-bot p { font-size: 0.9rem; color: var(--text-body); }

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  border: 2px solid var(--brand-teal);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  background: var(--card);
  box-shadow: 0 8px 32px hsla(174, 72%, 30%, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.pricing-amount .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.pricing-setup {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

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

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.includes-list li svg { color: var(--brand-teal); flex-shrink: 0; margin-top: 2px; }

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-fine {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* What it replaces */
.replaces-col { display: flex; flex-direction: column; gap: 0.85rem; }

.replaces-col h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.replaces-item {
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
}

.replaces-item-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.replaces-item-header svg { color: hsl(0, 70%, 55%); margin-top: 2px; flex-shrink: 0; }

.replaces-item-header strong {
  font-size: 0.875rem;
  color: var(--brand-navy);
}

.replaces-item-header .cost {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(0, 70%, 55%);
}

.replaces-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
}

.replaces-winner {
  background: hsla(174, 72%, 30%, 0.08);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  margin-top: 0.25rem;
}

.replaces-winner-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.replaces-winner-header svg { color: var(--brand-teal); }

.replaces-winner-header strong { font-size: 0.875rem; color: var(--brand-navy); }

.replaces-winner p { font-size: 0.75rem; color: var(--brand-teal); padding-left: 1.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: background 0.15s;
}

.faq-question:hover { background: var(--bg-alt); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--brand-teal);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

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

.faq-answer-inner {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 62rem;
  margin-inline: auto;
}

.contact-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-detail { display: flex; align-items: center; gap: 0.85rem; }

.contact-detail-text .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.contact-detail-text strong {
  font-size: 0.95rem;
  color: var(--brand-navy);
  display: block;
  transition: text-decoration 0.2s;
}

a.contact-detail:hover .contact-detail-text strong { text-decoration: underline; }

.contact-demo-box {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.contact-demo-box p:first-child {
  font-weight: 700;
  color: var(--brand-navy);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-demo-box p:last-of-type {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

/* Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; gap: 1rem; }

.form-field { display: flex; flex-direction: column; gap: 0.35rem; }

.form-field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-navy);
}

.form-field label .optional { font-weight: 400; text-transform: none; color: var(--text-muted); }

.form-field label .req { color: var(--destructive); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-body);
  background: var(--bg-page);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px hsla(174, 72%, 30%, 0.15);
}

.form-field textarea { resize: vertical; min-height: 6rem; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-consent input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-teal);
  cursor: pointer;
}

.form-consent span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-body);
}

.form-error {
  font-size: 0.85rem;
  background: hsla(0, 84%, 60%, 0.08);
  border: 1px solid hsla(0, 84%, 60%, 0.3);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  color: var(--destructive);
  display: none;
}

.form-success {
  display: none;
  border: 2px solid var(--brand-teal);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--brand-teal-light);
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success svg { color: var(--brand-teal); }

.form-success h3 {
  font-size: 1.1rem;
  color: var(--brand-navy);
}

.form-success p { font-size: 0.875rem; color: var(--text-body); max-width: 28rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--brand-navy);
  border-top: 1px solid var(--brand-navy-dark);
  padding-block: 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo svg { opacity: 0.6; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  text-align: center;
}

.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links button {
  font-size: 0.75rem;
  font-family: var(--font-body);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links button:hover { color: #fff; text-decoration: underline; }

.footer-fine { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal-box {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 36rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px hsla(0,0%,0%,0.3);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--brand-navy); }

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
}

.modal-body p { font-size: 0.875rem; line-height: 1.7; color: var(--text-body); margin-bottom: 0.75rem; }
.modal-body h3 { font-size: 0.95rem; color: var(--brand-navy); margin-top: 1.25rem; margin-bottom: 0.4rem; }
.modal-fine { font-size: 0.75rem; color: var(--text-muted); margin-top: 1.25rem; }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
#mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--brand-navy);
  border-top: 1px solid var(--brand-navy-dark);
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

#mobile-cta-bar p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.mobile-cta-spacer { height: 4rem; }

/* ─── Hero Stat Bar ─────────────────────────────────────── */
.hero-stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-stat {
  flex: 1;
  min-width: 140px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-teal);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

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

/* ─── Demo Strip ─────────────────────────────────────────── */
.demo-strip {
  margin-top: 2.5rem;
  background: var(--brand-navy);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
}

.demo-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.demo-strip-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.demo-strip-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 40rem;
}

.demo-strip-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

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

/* ============================================================
   RESPONSIVE — Tablet (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }
}

/* ============================================================
   RESPONSIVE — Desktop (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .header-cta { display: flex; }
  .header-logo .full { display: inline; }
  .header-logo .short { display: none; }
  .hamburger { display: none; }
  #mobile-menu { display: none !important; }
  #mobile-cta-bar { display: none; }
  .mobile-cta-spacer { display: none; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .pricing-actions { flex-direction: row; }
}

/* ============================================================
   RESPONSIVE — Large Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-panel { display: flex; }
  .hero-content { max-width: 52%; }
  .pricing-grid { grid-template-columns: 3fr 2fr; align-items: start; }
}

/* ============================================================
   RESPONSIVE — Mobile only (< 640px)
   ============================================================ */
@media (max-width: 639px) {
  .header-logo .full { display: none; }
  .header-logo .short { display: inline; }
}
