/* ============================================================
   ClinicFlow — Main Stylesheet
   Light/Cream Mode · Premium Confident Aesthetic
   Brand: Blue #0071bc · Green #87c71f
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

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

:root {
  /* Brand */
  --blue:        #0071bc;
  --blue-dark:   #005a96;
  --blue-light:  #e8f3fb;
  --blue-mid:    #c5dff2;
  --green:       #87c71f;
  --green-dark:  #6fa318;
  --green-light: #f0f9e0;

  /* Surfaces */
  --bg:          #faf9f7;
  --bg-alt:      #f4f2ee;
  --bg-card:     #ffffff;
  --bg-dark:     #0e1520;

  /* Text */
  --text:        #1a1f2e;
  --text-2:      #3d4455;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;

  /* Borders */
  --border:      #e5e2dc;
  --border-dark: #d1cdc6;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10);
  --shadow-blue: 0 4px 20px rgba(0,113,188,0.18);

  /* Misc */
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  0.2s ease;
}

html { scroll-behavior: smooth; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
h4 {
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
em {
  font-style: italic;
  color: var(--blue);
}
p { color: var(--text-muted); line-height: 1.7; }
strong { color: var(--text-2); font-weight: 600; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-nav {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
}
.btn-full { width: 100%; justify-content: center; }
.btn-full-sm { width: 100%; justify-content: center; padding: 11px 20px; font-size: 13px; }

/* ---- SECTION TAGS ---- */
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
}
.nav-logo-divider {
  width: 1px;
  height: 22px;
  background: var(--border-dark);
}
.nav-product {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-right: auto;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 148px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,113,188,0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, black 40%, transparent 80%);
}
.hero-accent-1 {
  position: absolute;
  width: 500px; height: 500px;
  top: -180px; right: -100px;
  background: radial-gradient(circle, rgba(0,113,188,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-accent-2 {
  position: absolute;
  width: 300px; height: 300px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(135,199,31,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { text-align: center; position: relative; }
.hero-eyebrow {
  display: inline-block;
  background: var(--green-light);
  border: 1px solid rgba(135,199,31,0.3);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 48px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}
.stat-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: inherit;
  transition: opacity var(--transition);
}
.stat-link:hover { opacity: 0.75; }
.stat-link .stat-num { color: var(--blue); }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.proof-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin: 0;
}
.proof-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--border-dark);
  flex-shrink: 0;
}
.proof-item {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ============================================================
   ORIGIN
   ============================================================ */
.origin {
  padding: 100px 0;
  background: var(--bg-card);
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.origin-text .section-title { font-size: clamp(30px, 3.5vw, 46px); }
.origin-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.origin-sig {
  font-style: italic;
  color: var(--blue) !important;
  font-weight: 500;
  margin-top: 24px !important;
}
.origin-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.origin-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.origin-before {
  background: #fdf5f5;
  border-color: #f0d4d4;
}
.origin-after {
  background: var(--green-light);
  border-color: rgba(135,199,31,0.3);
}
.origin-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.origin-tag-bad { color: #c0392b; }
.origin-tag-good { color: var(--green-dark); }
.origin-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.origin-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.origin-list li span { flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.origin-list li.bad { color: var(--text-muted); }
.origin-list li.bad span { color: #c0392b; }
.origin-list li.good { color: var(--text-2); }
.origin-list li.good span { color: var(--green-dark); }

/* ============================================================
   TIERS OVERVIEW
   ============================================================ */
.tiers {
  padding: 100px 0;
  background: var(--bg);
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tier-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.tier-featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.tier-featured:hover {
  box-shadow: 0 16px 48px rgba(0,113,188,0.18);
}
.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.tier-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding-left: 0;
}
.tier-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.tier-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border-dark);
  font-size: 12px;
}
.tier-featured .tier-list li::before { color: var(--blue-mid); }
.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.tier-per {
  font-size: 15px;
  color: var(--text-muted);
}
.tiers-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 100px 0;
  background: var(--bg-alt);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-card-accent {
  border-color: rgba(135,199,31,0.25);
  background: linear-gradient(145deg, var(--green-light) 0%, var(--bg-card) 50%);
}
.feature-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.feature-tag {
  display: inline-block;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.feature-tag-green {
  background: var(--green-light);
  border-color: rgba(135,199,31,0.3);
  color: var(--green-dark);
}

/* ============================================================
   CIM SECTION
   ============================================================ */
.cim {
  padding: 100px 0;
  background: var(--bg-card);
}
.cim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cim-text .section-title { font-size: clamp(30px, 3.5vw, 46px); }
.cim-text > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.cim-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.cim-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.check { color: var(--blue); font-weight: 600; flex-shrink: 0; }
.check-green { color: var(--green-dark); font-weight: 600; flex-shrink: 0; }
.cim-tier-note {
  display: inline-block;
  background: rgba(0,113,188,0.07);
  border: 1px solid var(--blue-mid);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* CIM Screen mockup */
.cim-screen {
  background: #0e1520;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.08);
}
.cim-bar {
  background: #151e2e;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cim-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cim-dot.red    { background: #ff5f57; }
.cim-dot.yellow { background: #ffbd2e; }
.cim-dot.green-dot { background: var(--green); }
.cim-title {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
}
.cim-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cim-msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.user-msg {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  border-radius: 12px 12px 2px 12px;
}
.ai-msg {
  align-self: flex-start;
  background: #1a2540;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px 12px 12px 2px;
}
.ai-msg strong { color: #fff; }
.cim-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 100px 0;
  background: var(--bg-alt);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 190px;
  max-width: 240px;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step p { font-size: 13px; line-height: 1.65; color: var(--text-muted); }
.step-arrow {
  flex-shrink: 0;
  color: var(--border-dark);
  font-size: 20px;
  padding-top: 14px;
  align-self: flex-start;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-card);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.t-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial p {
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.t-author span { display: block; font-size: 12px; color: var(--text-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 80px 0; background: var(--bg-alt); }
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}
.cta-box h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-box p {
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cta-note {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo {
  height: 160px;
  width: auto;
  margin-bottom: 16px;
  /* Filter for dark bg — if logo is dark on transparent, invert it.
     Remove this filter if you supply a light/white version of the logo. */
  filter: brightness(0) invert(1);
}
.footer-logo-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin: 0;
}
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .origin-grid, .cim-grid { grid-template-columns: 1fr; gap: 48px; }
  .tiers-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .steps { gap: 0; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .cta-box { padding: 48px 32px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }
  .hero { padding: 120px 0 72px; }
  .hero-stats { padding: 20px 28px; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .cta-box { padding: 40px 20px; }
}
/* Mobile nav open */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
}
.nav-open .btn-nav { display: inline-flex; }

/* ── High-Ticket Copy Improvements ──────────────────────── */

/* Hero buyer identity sentence */
.hero-ident {
  font-size: 1rem;
  font-weight: 500;
  border-left: 3px solid var(--blue, #0071bc);
  padding-left: 14px;
  margin-bottom: 16px;
  color: #334155;
  line-height: 1.6;
}

/* Origin differentiator block */
.origin-differentiator {
  background: var(--dark, #0d1117);
  color: #e2e8f0;
  border-radius: 8px;
  padding: 18px 22px;
  margin-top: 20px;
  font-size: 0.93rem;
  line-height: 1.65;
}
.origin-differentiator strong {
  color: #87c71f;
}

/* Testimonial role/title lines */
.t-role {
  font-size: 0.78rem;
  color: var(--blue, #0071bc);
  font-weight: 500;
  display: block;
}
.t-location {
  font-size: 0.75rem;
  color: #6b7a8d;
  display: block;
}

/* Single testimonial centered layout */
.testimonials-single {
  display: flex;
  justify-content: center;
}
.testimonials-single .testimonial {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* CTA scarcity signal */
.cta-capacity {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  margin: 16px auto 12px;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.cta-capacity-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}
