/* ============================================================
   CHARIS MANAGEMENT SYSTEMS — MAIN STYLESHEET
   Brand: Red #C8102E | White + Light Grey | Dark footer
   Breakpoint: 900px
   ============================================================ */

:root {
  --red:        #C8102E;
  --red-dark:   #a30d24;
  --red-xlight: rgba(200, 16, 46, 0.05);
  --red-light:  rgba(200, 16, 46, 0.10);

  --bg:         #ffffff;
  --bg-alt:     #f7f8f9;
  --bg-dark:    #0e0e10;
  --bg-dark-2:  #1a1a1e;

  --text:       #0e0e10;
  --text-mid:   #374151;
  --muted:      #6b7280;
  --muted-light:#9ca3af;

  --border:     rgba(0, 0, 0, 0.08);
  --border-mid: rgba(0, 0, 0, 0.13);

  --gold:       #c9a227;
  --gold-light: rgba(201, 162, 39, 0.10);
  --accent:     #c9a227;
  --lime:       #22c55e;

  --radius:     8px;
  --radius-lg:  16px;
  --ease:       0.25s ease;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 24px rgba(200,16,46,0.25);

  --max-w:        1160px;
  --section-gap:  96px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--red); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--red-dark); }

ul { list-style: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--bg-alt); }

.section--dark {
  background: var(--bg-dark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #f3f4f6; }
.section--dark p   { color: var(--muted-light); }

.section-label {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}
.section--dark .section-label { color: rgba(200,16,46,0.75); }

.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 600px; }
.section--dark .section-header p { color: var(--muted-light); }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-accent { background: var(--gold); color: #fff; }
.btn-accent:hover {
  background: #b08e22;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.logo-text {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--ease);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--red);
  background: var(--red-xlight);
}

.nav-links .btn-nav {
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  font-weight: 600;
  margin-left: 8px;
}

.nav-links .btn-nav:hover {
  background: var(--red-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--ease);
}

.nav-mobile a:hover {
  color: var(--red);
  background: var(--red-xlight);
}

.nav-mobile .btn-nav {
  margin-top: 8px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.nav-mobile .btn-nav:hover {
  background: var(--red-dark);
  color: #fff;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-xlight);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 { max-width: 760px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
  letter-spacing: 0;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-trust::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 8px 16px; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label { font-size: 0.82rem; font-weight: 500; color: var(--muted); }

/* --- Cards --- */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-mid);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--red-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
  color: var(--red);
}

.card-icon--gold {
  color: var(--gold);
}

.card-icon.accent { background: var(--gold-light); color: var(--gold); }
.card h3 { margin-bottom: 12px; }
.card p  { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* Change cards */
.change-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--ease);
}

.change-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(200,16,46,0.2);
}

.section--dark .change-card {
  background: var(--bg-dark-2);
  border-color: rgba(255,255,255,0.07);
}

.section--dark .change-card:hover {
  border-color: rgba(200,16,46,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.change-card .card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.change-card h3 { margin-bottom: 12px; }
.change-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }

.section--dark .change-card h3 { color: #f3f4f6; }
.section--dark .change-card p  { color: var(--muted-light); }

.change-card.accent-card .card-tag { color: var(--gold); }
.change-card.accent-card {
  background: var(--bg-dark-2);
  border-color: rgba(255,255,255,0.07);
}
.change-card.accent-card:hover { border-color: rgba(201,162,39,0.3); }

/* Service cards */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(200,16,46,0.2);
}

.service-card .card-icon { margin-bottom: 24px; }
.service-card h3 { margin-bottom: 14px; }

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.service-card .service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
  text-decoration: none;
}

.service-card .service-link:hover { gap: 10px; color: var(--red-dark); }

/* --- Standard Cards --- */
.standard-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(200,16,46,0.2);
}

.standard-card .std-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.standard-card h3 { margin-bottom: 10px; font-size: 1.05rem; }

.standard-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.standard-card .service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
  text-decoration: none;
}

.standard-card .service-link:hover { gap: 10px; color: var(--red-dark); }

.standard-card--more { border-style: dashed; }
.standard-card--more .std-num { color: var(--muted-light); font-size: 2.4rem; }

/* --- Gap Analysis Teaser --- */
.gap-teaser {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.gap-teaser .section-label { color: rgba(255,255,255,0.6); }
.gap-teaser h2 { color: #fff; margin-bottom: 16px; }
.gap-teaser p  { color: rgba(255,255,255,0.72); max-width: 520px; }

.gap-teaser .cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.gap-teaser .cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.gap-teaser .btn-primary {
  background: #fff;
  color: var(--red);
}
.gap-teaser .btn-primary:hover {
  background: #f2f2f2;
  color: var(--red-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* --- Gap Analysis Tool (full page) --- */
.gap-tool { max-width: 720px; margin: 0 auto; }

.gap-tool-hero { text-align: center; padding: 72px 0 48px; }
.gap-tool-hero h1 { margin-bottom: 16px; }
.gap-tool-hero p { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

.gate-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.gate-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.gate-card .gate-sub { color: var(--muted); margin-bottom: 32px; font-size: 0.95rem; }

/* Form fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted-light); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-xlight);
}

.form-field select option { background: var(--bg); color: var(--text); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.full { grid-column: 1 / -1; }

.privacy-note { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.privacy-note a { color: var(--red); }
.honeypot { display: none !important; }

/* Progress */
.progress-wrap { margin-bottom: 32px; }
.progress-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.progress-label { font-size: 0.82rem; color: var(--muted); }
.progress-count { font-size: 0.82rem; color: var(--red); font-weight: 600; }
.progress-bar { height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--red); border-radius: 100px; transition: width 0.4s ease; }

/* Question card */
.question-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  animation: slideIn 0.35s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.q-clause {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-xlight);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(200,16,46,0.15);
}

.q-text  { font-size: 1.1rem; font-weight: 500; color: var(--text); line-height: 1.6; margin-bottom: 8px; }
.q-hint  { font-size: 0.8rem; color: var(--muted); margin-bottom: 32px; }

.q-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.q-btn {
  padding: 16px 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-mid);
  background: var(--bg);
  color: var(--text-mid);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
}

.q-btn:hover { transform: translateY(-2px); }
.q-btn.yes:hover      { border-color: #22c55e; background: rgba(34,197,94,0.06); color: #15803d; }
.q-btn.partial:hover  { border-color: var(--gold); background: var(--gold-light); color: #92711a; }
.q-btn.no:hover       { border-color: var(--red); background: var(--red-xlight); color: var(--red); }
.q-btn.selected-yes     { border-color: #22c55e; background: rgba(34,197,94,0.08); color: #15803d; }
.q-btn.selected-partial { border-color: var(--gold); background: var(--gold-light); color: #92711a; }
.q-btn.selected-no      { border-color: var(--red); background: var(--red-xlight); color: var(--red); }

/* Results */
.results-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  animation: slideIn 0.4s ease;
}

.results-score-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 4px solid;
  text-align: center;
}

.results-score-ring .score-num { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.results-score-ring .score-out { font-size: 0.75rem; color: var(--muted); }
.results-band { text-align: center; margin-bottom: 36px; }
.results-band-label { font-size: 1.7rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
.results-band-desc  { color: var(--muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto; }

.results-gaps {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.results-gaps h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.gap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

.gap-item:last-child { border-bottom: none; }
.gap-item .gap-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.gap-dot.no      { background: var(--red); }
.gap-dot.partial { background: var(--gold); }

.results-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--red-xlight);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
}

.badge.gold {
  background: var(--gold-light);
  border-color: rgba(201,162,39,0.25);
  color: var(--gold);
}

.about-visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--red-xlight) 0%, transparent 70%);
}

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.about-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.about-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.about-stat .lbl { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }

.contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; }

.contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,16,46,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--red);
}

.section--dark .contact-item .ci-text { color: rgba(255,255,255,0.45); }
.section--dark .contact-item .ci-text a { color: rgba(230,80,100,0.9); font-weight: 500; }
.section--dark .contact-item .ci-text a:hover { color: #f9a8b4; }
.contact-item .ci-text { color: var(--muted); }
.contact-item .ci-text a { color: var(--red); font-weight: 500; }
.contact-item .ci-text a:hover { color: var(--red-dark); }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h3 { color: var(--red); margin-bottom: 12px; }
.form-success p  { color: var(--muted); }

/* --- Timeline --- */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), rgba(200,16,46,0.1));
}

.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--red);
}

.timeline-item.future::before {
  background: var(--bg);
  box-shadow: 0 0 0 2px rgba(200,16,46,0.4);
}

.timeline-date { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.timeline-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.timeline-desc  { font-size: 0.9rem; color: var(--muted); }

/* --- FAQ --- */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-family: inherit;
  font-size: 1.0rem;
  font-weight: 500;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--ease);
}

.section--dark .faq-question { color: #f3f4f6; }
.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--muted);
  transition: all var(--ease);
}

.faq-item.open .faq-icon { border-color: var(--red); color: var(--red); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 0.94rem; color: var(--muted); line-height: 1.75; }
.section--dark .faq-answer { color: var(--muted-light); }
.faq-answer-inner { padding-bottom: 22px; }

/* --- Clause Table --- */
.clause-list { display: flex; flex-direction: column; gap: 4px; }

.clause-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--ease);
}

.clause-item:hover { border-color: rgba(200,16,46,0.2); background: var(--red-xlight); }

.clause-num { font-size: 1.4rem; font-weight: 800; color: var(--red); opacity: 0.55; line-height: 1; padding-top: 2px; }

.clause-content h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.clause-content p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p  { color: var(--muted); max-width: 520px; margin: 0 auto 36px; }
.cta-banner .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 80px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-xlight);
  border: 1px solid rgba(200,16,46,0.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.page-hero-tag.gold { color: var(--gold); background: var(--gold-light); border-color: rgba(201,162,39,0.2); }

.page-hero h1 { margin-bottom: 20px; max-width: 760px; }
.page-hero .hero-sub { max-width: 600px; }

.page-hero .meta-bar { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 36px;
}

.footer .logo-text { color: #f3f4f6; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }

.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.7; margin: 20px 0; }

.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--ease); }
.footer-links a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Utilities --- */
.text-red    { color: var(--red); }
.text-lime   { color: var(--red); }
.text-gold   { color: var(--gold); }
.text-accent { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mb-sm { margin-bottom: 24px; }
.mb-md { margin-bottom: 40px; }
.mb-lg { margin-bottom: 64px; }
.hidden { display: none !important; }

/* --- Responsive 900px --- */
@media (max-width: 900px) {
  :root { --section-gap: 64px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 72px 0 64px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

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

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .gap-teaser { grid-template-columns: 1fr; padding: 40px 32px; }
  .gap-teaser .cta-group { align-items: flex-start; }

  .gate-card { padding: 32px 24px; }
  .question-card { padding: 28px 24px; }
  .results-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .q-options { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding: 48px 28px; }
  .timeline { padding-left: 24px; }
  .page-hero { padding: 56px 0 48px; }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .clause-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .results-ctas { flex-direction: column; }
}
