/* ============================================================
   GREENSPAN — LANDING PAGE STYLES
   Font: Playfair Display (headlines) + Inter (body)
   ============================================================ */

/* ---- Google Fonts ----
   NOTE: @import removed for Unbounce compatibility.
   In Unbounce: paste the <link> tags into Page Properties > Head section.
   For local preview: fonts load via the <link> tag already in index.html.
   ---- */

/* ---- Design Tokens ---- */
:root {
  --dark:          #1C1C1E;
  --dark-alt:      #252528;
  --warm-white:    #F5F5F3;
  --white:         #FFFFFF;
  --accent:        #3EBA8C;
  --accent-hover:  #2EA07A;
  --text:          #1A1A1A;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --border:        #E5E3DF;
  --border-dark:   rgba(255, 255, 255, 0.1);

  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;

  --section-pad:        96px;
  --section-pad-mobile: 56px;
  --container:          1080px;
  --container-narrow:   720px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 28px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--serif);
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: 54px; line-height: 62px; }
h2 { font-size: 42px; line-height: 52px; }
h3 { font-size: 22px; line-height: 30px; font-weight: 600; }
p  { margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section-warm  { background: var(--warm-white); }
.section-white { background: var(--white); }
.section-dark  { background: var(--dark); color: var(--white); }
.section-accent { background: var(--accent); color: var(--dark); }
.text-center { text-align: center; }

/* ---- Dev Banner ---- */
.dev-banner {
  background: #1e3a5f;
  color: #93c5fd;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  text-align: center;
  letter-spacing: 0.02em;
}
.dev-placeholders {
  display: block;
  color: #fbbf24;
  margin-top: 2px;
  font-size: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

/* Dark button (on light backgrounds) */
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2a2f38; }

/* Accent/gold button (on dark or accent backgrounds) */
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: var(--accent-hover); }

/* Nav button — outlined, matches Greenspan brand */
.btn-nav {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 22px;
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  border-radius: 3px;
}
.btn-nav:hover { border-color: var(--accent); color: var(--accent); }

/* Sizes */
.btn-lg { font-size: 16px; padding: 18px 40px; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.2s ease;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ---- Hero ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 140px 0 100px;
  text-align: center;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: 19px;
  line-height: 30px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.friction-note {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  margin-bottom: 0;
}

/* ---- Guarantee Badge ---- */
.guarantee-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(62, 186, 140, 0.08);
  border: 1px solid rgba(62, 186, 140, 0.25);
  border-radius: 4px;
  padding: 12px 18px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255,255,255,0.7);
  text-align: left;
  max-width: 480px;
}
.guarantee-badge-centered {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin-top: 16px;
}
.guarantee-icon {
  color: var(--accent);
  font-size: 8px;
  margin-top: 7px;
  flex-shrink: 0;
}
.friction-note.dark { color: rgba(13,17,23,0.6); }
.friction-note a { color: var(--accent); text-decoration: none; }
.friction-note a:hover { text-decoration: underline; }

/* ---- Client Bar ---- */
.client-bar {
  background: var(--dark-alt);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.client-bar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 10px;
}
.client-names {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  line-height: 22px;
}
.dot { color: var(--accent); margin: 0 8px; }

/* ---- Numbers Bar ---- */
.numbers-bar {
  background: var(--dark);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  text-align: center;
}
.stat-divider {
  background: rgba(255,255,255,0.12);
  height: 60px;
  width: 1px;
}
.stat { padding: 0 24px; }
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 20px;
}

/* ---- Callout / Pull Quote ---- */
.callout {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 32px 0 0;
  font-size: 20px;
  line-height: 32px;
  font-style: italic;
  color: var(--text);
}

/* ---- Section Header Centered ---- */
.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 28px;
  margin-bottom: 0;
}
.section-intro.light { color: rgba(255,255,255,0.55); }

/* ---- Component Cards (Growth System) ---- */
.comp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.comp-row-2 {
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 0;
}
.component-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: box-shadow 0.15s ease;
}
.component-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.comp-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.component-card h3 { margin-bottom: 10px; }
.component-card p { font-size: 16px; line-height: 26px; color: var(--text-muted); margin-bottom: 0; }
.system-close {
  text-align: center;
  margin-top: 48px;
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted);
}

/* ---- Case Studies (Proof) ---- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.case-card {
  background: var(--dark-alt);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 32px 28px;
}
.case-card h3 { color: var(--white); margin-bottom: 12px; font-size: 20px; }
.case-result {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  line-height: 26px;
  margin-bottom: 14px;
}
.case-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 24px; }
.case-quote {
  font-size: 14px;
  line-height: 23px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
  margin: 16px 0 8px;
}
.case-attribution {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0;
}
.proof-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
/* ---- Pinnacle Result Block ---- */
.pinnacle-result {
  border: 1px solid rgba(62, 186, 140, 0.3);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 32px 40px;
  margin: 0 auto 48px;
  max-width: 680px;
  background: rgba(62, 186, 140, 0.05);
}
.pinnacle-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.pinnacle-number {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
  margin-bottom: 0;
  flex-shrink: 0;
}
.pinnacle-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.pinnacle-client {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .pinnacle-inner { flex-direction: column; gap: 16px; text-align: center; }
  .pinnacle-number { font-size: 52px; }
  .pinnacle-result { padding: 24px; }
}

.notable-clients {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.notable-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}
.notable-names {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 24px;
  margin-bottom: 0;
}

/* ---- Placeholder Blocks (dev only) ---- */
.placeholder-block {
  background: #fffbeb;
  border: 2px dashed #f59e0b;
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 16px;
}
.placeholder-block p {
  font-size: 14px;
  color: #92400e;
  margin-bottom: 0;
  font-style: italic;
}
.placeholder-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b45309;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.placeholder-block-priority {
  border-color: #ef4444;
  background: #fff1f2;
  margin-top: 0;
}
.placeholder-block-priority .placeholder-label { color: #b91c1c; }
.placeholder-block-priority p { color: #7f1d1d; }
.placeholder-block-centered { max-width: 680px; margin: 0 auto 48px; }

/* ---- Steps (How It Works) ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.step { display: flex; flex-direction: column; align-items: flex-start; }
.step-num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: #ece9e3;
  margin-bottom: 16px;
  display: block;
}
.step-body h3 { margin-bottom: 10px; }
.step-body p { font-size: 16px; color: var(--text-muted); line-height: 26px; margin-bottom: 0; }

/* ---- Who It's For ---- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
}
.fit-yes-label { color: var(--text); margin-bottom: 20px; font-size: 18px; }
.fit-no-label  { color: var(--text-muted); margin-bottom: 20px; font-size: 18px; }
.fit-list { list-style: none; padding: 0; }
.fit-list li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.fit-list li:first-child { border-top: 1px solid var(--border); }
.fit-yes::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.fit-no::before  { content: "\2014"; position: absolute; left: 0; color: var(--text-light); }

/* ---- CTA Block ---- */
.cta-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-copy h2 { color: var(--white); margin-bottom: 20px; }
.cta-copy p  { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 28px; }
.deliverables {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
}
.deliverables li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 24px;
}
.deliverables li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.deliverables li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.working-call-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ---- Inline Form (CTA Block) ---- */
.cta-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 36px;
}
.form-panel h3 { font-size: 24px; margin-bottom: 8px; color: var(--text); }
.form-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 150, 63, 0.15);
}
.form-group input::placeholder { color: #c4c2bc; }
.field-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0;
  text-transform: none;
  margin-left: 6px;
}
.field-error {
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
  margin-bottom: 0;
  min-height: 16px;
}
.form-privacy {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.hidden { display: none !important; }

/* Thank-you state */
.thankyou-check {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.calendly-inline-wrap {
  min-height: 660px;
  margin-top: 20px;
}

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 40px 22px 0;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  line-height: 26px;
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 26px;
}

/* ---- Final CTA ---- */
.final-cta h2 { color: var(--white); margin-bottom: 20px; }
.final-cta p  { color: rgba(255,255,255,0.65); font-size: 18px; margin-bottom: 20px; }
.final-cta .btn { margin-top: 12px; }
.footer-link { color: var(--accent); text-decoration: none; }
.footer-link:hover { text-decoration: underline; }

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); margin-bottom: 0; }

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 44px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--text); }
.modal h2 { font-size: 30px; margin-bottom: 8px; }
.modal-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.step-dots { display: flex; gap: 6px; margin-bottom: 24px; }
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.step-dot.active { background: var(--accent); }

/* Modal success */
.success-content { text-align: center; padding: 16px 0; }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
}
.success-content h2 { margin-bottom: 10px; }
.success-content .modal-sub { margin-bottom: 28px; }

/* ---- Sticky Mobile Bar ---- */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 2px solid var(--accent);
  padding: 12px 16px;
  z-index: 900;
}
.sticky-bar.visible { display: block; }

/* Mid CTA section typography */
.section-accent h2 { font-size: 34px; margin-bottom: 28px; color: #FFFFFF; }
.section-accent .friction-note.dark { color: rgba(255,255,255,0.7); }

/* Footer logo image */
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  opacity: 0.85;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  h1 { font-size: 44px; line-height: 54px; }
  h2 { font-size: 36px; line-height: 46px; }
  .cta-block-grid { gap: 48px; }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; line-height: 44px; }
  h2 { font-size: 28px; line-height: 38px; }
  h3 { font-size: 20px; line-height: 28px; }
  body { font-size: 17px; line-height: 27px; }

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

  /* Nav */
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 19px; }
  .btn-nav { font-size: 13px; padding: 9px 16px; }

  /* Hero */
  .hero { padding: 110px 0 72px; }
  .hero-sub { font-size: 17px; line-height: 27px; }
  .btn-lg { font-size: 15px; padding: 16px 28px; }

  /* Client bar */
  .client-names { font-size: 12px; line-height: 26px; }
  .dot { margin: 0 5px; }

  /* Numbers bar */
  .numbers-bar { padding: 40px 0; }
  .numbers-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-divider { display: none; }
  .stat { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:last-child { border-bottom: none; }
  .stat-number { font-size: 40px; }

  /* Components */
  .comp-row { grid-template-columns: 1fr; }
  .comp-row-2 { grid-template-columns: 1fr; max-width: 100%; margin-top: 24px; }
  .component-card { padding: 24px 20px; }

  /* Case studies */
  .case-grid { grid-template-columns: 1fr; gap: 20px; }

  .case-card { padding: 24px 20px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-num { font-size: 56px; margin-bottom: 10px; }

  /* Fit grid */
  .fit-grid { grid-template-columns: 1fr; gap: 40px; }

  /* CTA block */
  .cta-block-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-form-wrap { padding: 28px 24px; }

  /* FAQ */
  .faq-q { font-size: 16px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

  /* Modal */
  .modal { padding: 36px 24px; }
  .modal h2 { font-size: 24px; }

  /* Sticky bar — show on mobile */
  .sticky-bar { display: none; } /* JS controls .visible class */

  /* Buttons full width on mobile */
  .btn-lg { width: 100%; text-align: center; }

  /* Section header */
  .section-header-centered { margin-bottom: 40px; }

  /* Mid CTA */
  .section-accent h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 16px; }
  h1 { font-size: 30px; line-height: 40px; }
  h2 { font-size: 26px; line-height: 34px; }
  .hero { padding: 96px 0 64px; }
  .callout { font-size: 18px; line-height: 28px; }
}
