/* ── PreCure Global Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --teal:        #0D7A6E;
  --teal-dark:   #0A5E55;
  --teal-light:  #14998B;
  --teal-tint:   #E8F5F3;
  --teal-tint2:  #C8E8E4;
  --amber:       #F5A623;
  --amber-tint:  #FEF3DC;
  --bg:          #FFFFFF;
  --bg-alt:      #F4F7F6;
  --bg-dark:     #111827;
  --text:        #1A1A1A;
  --text-muted:  #6B7280;
  --border:      #D1DDD9;
  --border-light:#E8EFEC;
  --success:     #22C55E;
  --warning:     #F59E0B;
  --danger:      #EF4444;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(13,122,110,0.10);
  --shadow-lg:   0 12px 40px rgba(13,122,110,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 106px; /* announcement bar (38px) + nav (68px) */
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.2;
}

/* ── ANNOUNCEMENT BANNER ── */
#announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--teal);
  padding: 9px 16px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#announcement-bar a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#announcement-bar a:hover { color: #fff; }
#announcement-bar .close-bar {
  position: absolute; right: 16px;
  background: none; border: none; color: rgba(255,255,255,0.7);
  cursor: pointer; font-size: 1rem; line-height: 1; padding: 4px;
}

/* ── NAV ── */
#main-nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main-nav.bar-hidden { top: 0; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 36px; object-fit: contain; }
.nav-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--teal-dark); letter-spacing: -0.5px;
}

.nav-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.nav-lang {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-alt); border-radius: 8px;
  padding: 3px; border: 1px solid var(--border-light);
}
.lang-btn {
  padding: 4px 10px; border-radius: 6px; border: none;
  background: transparent; color: var(--text-muted);
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.15s;
}
.lang-btn.active { background: var(--teal); color: #fff; }

.nav-cta {
  background: var(--teal) !important; color: #fff !important;
  padding: 10px 20px; border-radius: 10px;
  font-weight: 700 !important; font-size: 0.85rem !important;
  text-decoration: none !important; white-space: nowrap;
  transition: background 0.2s !important; flex-shrink: 0;
}
.nav-cta:hover { background: var(--teal-dark) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.93rem; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,122,110,0.28); }
.btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--teal-tint); }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--teal-tint); }
.btn-dark { background: var(--bg-dark); color: #fff; }
.btn-dark:hover { background: #1f2937; }

/* ── SECTIONS ── */
.section { padding: 96px 5%; }
.section-white { background: var(--bg); }
.section-grey  { background: var(--bg-alt); }
.section-dark  { background: var(--bg-dark); color: #fff; }
.section-dark .text-muted { color: rgba(255,255,255,0.55); }

/* ── SECTION TAGS / LABELS ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--teal); background: var(--teal-tint);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-dark .section-tag {
  color: var(--teal-tint2); background: rgba(13,122,110,0.2);
}

/* ── HEADINGS ── */
.section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.8px; margin-bottom: 16px;
}
.section-dark h2 { color: #fff; }

.section-lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin-bottom: 52px; line-height: 1.7;
}
.section-dark .section-lead { color: rgba(255,255,255,0.6); }

/* ── CARDS ── */
.card {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--border); }

.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-tint); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text);
}
.feature-list .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-tint); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.feature-list .check svg { color: var(--teal); }

/* ── SCORE CIRCLE ── */
.score-circle-wrap { position: relative; width: 160px; height: 160px; margin: 0 auto 20px; }
.score-circle {
  width: 100%; height: 100%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.score-circle.amber {
  background: conic-gradient(var(--amber) 0% 78%, var(--amber-tint) 78% 100%);
}
.score-circle.green {
  background: conic-gradient(var(--success) 0% 81%, #DCFCE7 81% 100%);
}
.score-circle::before {
  content: ''; position: absolute; inset: 12px;
  border-radius: 50%; background: #fff;
}
.score-circle .score-val {
  position: relative; z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem; font-weight: 900; color: var(--amber); line-height: 1;
}
.score-circle.green .score-val { color: #16A34A; }
.score-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  text-align: center; box-shadow: var(--shadow);
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-tint) 0%, var(--teal-tint2) 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--teal); font-weight: 600; font-size: 0.85rem;
  text-align: center; padding: 20px; gap: 8px;
  border: 2px dashed var(--teal-tint2);
}
.img-placeholder .img-label { font-size: 0.75rem; color: var(--teal); opacity: 0.7; }

/* ── VITAL CHIPS ── */
.vitals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.vital-chip {
  background: var(--teal-tint); border: 1px solid var(--teal-tint2);
  border-radius: 8px; padding: 8px 4px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--teal); text-align: center; line-height: 1.4;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--teal); padding: 14px 5%;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.9); white-space: nowrap;
}
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }

/* ── PARTNER STRIP ── */
.partner-strip {
  padding: 36px 5%; text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}
.partner-label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 20px;
}
.partner-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-name { font-size: 1rem; font-weight: 700; color: var(--text-muted); opacity: 0.6; }

/* ── STEP CARDS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: steps; }
.step {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; counter-increment: steps;
  transition: box-shadow 0.2s;
}
.step:hover { box-shadow: var(--shadow); }
.step::before {
  content: "0" counter(steps);
  position: absolute; top: 20px; right: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: var(--teal-tint2); line-height: 1;
}
.step-icon { font-size: 2rem; margin-bottom: 20px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 1rem; font-weight: 600;
  color: var(--text); cursor: pointer; text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif; gap: 16px;
}
.faq-q .icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding-bottom: 20px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-input, .form-textarea, .form-select {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  color: var(--text); font-size: 0.9rem;
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--teal); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.form-checkbox input { margin-top: 3px; accent-color: var(--teal); }
.form-consent a { color: var(--teal); }

/* ── LEGAL DISCLAIMER ── */
.legal-box {
  background: #FFF8E6; border: 1px solid #F5D78B;
  border-left: 4px solid var(--amber);
  border-radius: 10px; padding: 16px 20px;
  font-size: 0.82rem; color: #7A5200; line-height: 1.6;
}
.legal-box strong { color: #5A3800; }

/* ── WHATSAPP FLOAT ── */
#wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
#wa-float svg { width: 28px; height: 28px; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998; background: var(--bg-dark); color: #fff;
  padding: 16px 5%; display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  font-size: 0.85rem;
}
#cookie-banner p { max-width: 640px; color: rgba(255,255,255,0.75); line-height: 1.5; }
#cookie-banner a { color: var(--teal-tint2); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--teal); color: #fff; border: none;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 16px; border-radius: 8px;
  font-size: 0.85rem; cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* ── FOOTER ── */
#site-footer {
  background: #0A1A14; padding: 60px 5% 36px; color: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-logo span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; font-weight: 800; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.footer-powered { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-powered strong { color: rgba(255,255,255,0.6); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: 0.7rem; color: rgba(255,255,255,0.25); max-width: 600px; line-height: 1.6; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); white-space: nowrap; }

/* ── HERO GENERIC ── */
.page-hero {
  padding: 80px 5% 80px; text-align: left;
  background: linear-gradient(150deg, #fff 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,122,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900; letter-spacing: -1.5px; color: var(--text);
  max-width: 700px; margin-bottom: 20px;
}
.page-hero .hero-lead {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 560px; margin-bottom: 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { padding-top: 106px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 5%; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border-light);
    padding: 20px 5%; gap: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .hamburger { display: flex; }
  .vitals-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar { gap: 14px; }
  .partner-logos { gap: 24px; }
  #cookie-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
}

/* ── SUBAGENT-PAGE COMPAT CLASSES ── */
/* These fix missing classes used by subagent-built pages */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text { max-width: 560px; }
.hero-text h1 { font-size: clamp(2rem,4.5vw,3.5rem); letter-spacing:-1.5px; font-weight:900; margin-bottom:16px; }
.hero-image img { width:100%; border-radius:20px; display:block; object-fit:cover; }

.lead { font-size:1.1rem; color:var(--text-muted); line-height:1.7; margin-bottom:28px; }

/* Fix feature-list when li has class="check" directly (subagent pattern) */
.feature-list li.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.feature-list li.check::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--teal-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D7A6E' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Split layout generic */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* PRI dashboard mock styles */
.pri-dashboard {
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.pri-dashboard-header {
  background:var(--teal);
  padding:14px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.pri-logo { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; color:#fff; font-size:0.95rem; }
.pri-title { font-size:0.78rem; color:rgba(255,255,255,0.8); font-weight:600; }
.pri-dashboard-body { padding:20px; }
.pri-bar { display:flex; border-radius:8px; overflow:hidden; height:28px; margin:10px 0 8px; }
.pri-bar-green { background:#22C55E; display:flex; align-items:center; justify-content:center; }
.pri-bar-amber { background:var(--amber); display:flex; align-items:center; justify-content:center; }
.pri-bar-red   { background:var(--danger); display:flex; align-items:center; justify-content:center; }
.pri-bar span  { font-size:0.72rem; font-weight:700; color:#fff; }
.pri-bar-legend { display:flex; gap:16px; font-size:0.75rem; margin-bottom:16px; }
.legend-green { color:#15803D; font-weight:600; }
.legend-amber { color:#92400E; font-weight:600; }
.legend-red   { color:#991B1B; font-weight:600; }
.pri-table { width:100%; border-collapse:collapse; font-size:0.8rem; }
.pri-table th { text-align:left; font-weight:600; color:var(--text-muted); padding:6px 8px; border-bottom:1px solid var(--border-light); font-size:0.75rem; }
.pri-table td { padding:8px; border-bottom:1px solid var(--border-light); }
.pri-table tr:last-child td { border-bottom:none; }
.risk-badge { display:inline-block; padding:2px 10px; border-radius:100px; font-size:0.72rem; font-weight:700; }
.risk-green { background:#DCFCE7; color:#15803D; }
.risk-amber { background:#FEF3DC; color:#92400E; }
.risk-red   { background:#FEE2E2; color:#991B1B; }

/* Tech card grid used by how-it-works and insurers */
.tech-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
.tech-card {
  background:#fff; border:1px solid var(--border-light);
  border-radius:16px; padding:28px;
  transition:box-shadow 0.2s;
}
.tech-card:hover { box-shadow:var(--shadow); }
.tech-card .tc-icon { font-size:1.8rem; margin-bottom:14px; }
.tech-card h3 { font-size:0.95rem; font-weight:700; margin-bottom:8px; }
.tech-card p  { font-size:0.85rem; color:var(--text-muted); line-height:1.6; }

/* Score ranges used in how-it-works */
.score-ranges { display:flex; flex-direction:column; gap:12px; margin:24px 0; }
.score-range {
  display:flex; gap:16px; align-items:flex-start;
  background:#fff; border:1px solid var(--border-light);
  border-radius:12px; padding:16px 20px;
  border-left-width:4px;
}
.score-range.green  { border-left-color:#22C55E; }
.score-range.teal   { border-left-color:var(--teal); }
.score-range.amber  { border-left-color:var(--amber); }
.score-range.red    { border-left-color:var(--danger); }
.sr-band { font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:0.95rem; min-width:80px; flex-shrink:0; }
.sr-text { font-size:0.875rem; color:var(--text-muted); line-height:1.5; }

/* Form styles for subagent pages */
.waitlist-form, .quote-form, .contact-form { display:flex; flex-direction:column; gap:0; }
.form-check { margin:4px 0 12px; }

/* Pricing cards for subagent pages */
.pricing-card { position:relative; }
.pricing-featured {
  border-color:var(--teal) !important;
  box-shadow:var(--shadow) !important;
}
.pricing-tier { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--teal); margin-bottom:8px; }
.pricing-price { font-family:'Plus Jakarta Sans',sans-serif; font-size:2rem; font-weight:900; color:var(--text); line-height:1.1; margin-bottom:8px; }
.pricing-desc  { font-size:0.875rem; color:var(--text-muted); margin-bottom:16px; line-height:1.5; }
.pricing-headline { font-family:'Plus Jakarta Sans',sans-serif; font-size:1.6rem; font-weight:900; color:var(--text); line-height:1.1; margin:8px 0; }

/* Option label for 1/2/3 cards */
.option-label { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--teal); margin-bottom:8px; }

@media(max-width:768px){
  .hero-inner, .split-layout { grid-template-columns:1fr !important; }
  .hero-text { max-width:100%; }
  .container { padding:0 20px; }
}
