/* ============================================================
   Church Translation Live — Shared Stylesheet
   ============================================================ */

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

:root {
  --ctl-primary: #1E4D8C;
  --ctl-primary-light: #2563EB;
  --ctl-primary-dark: #163A6B;
  --ctl-accent: #B45309;
  --ctl-accent-light: #D97706;
  --ctl-bg: #FAFAF8;
  --ctl-surface: #FFFFFF;
  --ctl-surface-2: #F0F4F9;
  --ctl-text: #1A202C;
  --ctl-text-muted: #64748B;
  --ctl-border: #E2E8F0;
  --ctl-success: #15803D;
  --ctl-max: 1200px;
  --ctl-nav-h: 68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ctl-bg);
  color: var(--ctl-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- UTILITIES ---- */
.container { max-width: var(--ctl-max); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 7rem 0; }

.section-label {
  display: inline-block; padding: .3rem .9rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(30,77,140,.1); color: var(--ctl-primary);
  border: 1px solid rgba(30,77,140,.2);
  margin-bottom: 1rem;
}
.section-label-accent {
  background: rgba(180,83,9,.08); color: var(--ctl-accent);
  border-color: rgba(180,83,9,.2);
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.25; margin-bottom: .75rem; }
.section-head p { font-size: 1.1rem; color: var(--ctl-text-muted); }

.grad-text {
  background: linear-gradient(135deg, var(--ctl-primary), var(--ctl-primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: var(--ctl-accent); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: .5rem; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .2s; border: none; white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--ctl-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--ctl-primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(30,77,140,.25); }
.btn-accent {
  background: var(--ctl-accent);
  color: #fff;
}
.btn-accent:hover { background: #923F00; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(180,83,9,.3); }
.btn-ghost {
  background: transparent; border: 1.5px solid var(--ctl-border); color: var(--ctl-text);
}
.btn-ghost:hover { border-color: var(--ctl-primary); color: var(--ctl-primary); }
.btn-outline-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

/* ---- NAV ---- */
.ctl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ctl-border);
  height: var(--ctl-nav-h);
  transition: box-shadow .3s;
}
.ctl-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-inner {
  max-width: var(--ctl-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 100%;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700;
  color: var(--ctl-primary); flex-shrink: 0;
  display: flex; align-items: center; gap: .5rem;
}
.nav-logo-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--ctl-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { color: #fff; }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links > a {
  font-size: .9rem; font-weight: 500; color: var(--ctl-text-muted);
  padding: .5rem .8rem; border-radius: .375rem; transition: color .2s, background .2s;
}
.nav-links > a:hover { color: var(--ctl-primary); background: rgba(30,77,140,.05); }
.nav-links > a.active { color: var(--ctl-primary); }

/* Nav dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-drop-toggle {
  font-size: .9rem; font-weight: 500; color: var(--ctl-text-muted);
  padding: .5rem .8rem; border-radius: .375rem; transition: color .2s, background .2s;
  cursor: pointer; display: flex; align-items: center; gap: .35rem;
  background: none; border: none; font-family: inherit;
}
.nav-dropdown > .nav-drop-toggle:hover,
.nav-dropdown.open > .nav-drop-toggle { color: var(--ctl-primary); background: rgba(30,77,140,.05); }
.nav-drop-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown.open .nav-drop-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--ctl-surface);
  border: 1px solid var(--ctl-border);
  border-radius: .75rem; padding: .5rem;
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: flex-start; gap: .625rem; padding: .5rem .625rem;
  border-radius: .5rem; transition: background .15s; color: var(--ctl-text);
}
.dropdown-menu a:hover { background: var(--ctl-surface-2); }
.dm-icon {
  width: 32px; height: 32px; border-radius: .375rem;
  background: var(--ctl-surface-2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ctl-primary);
}
.dm-text { display: flex; flex-direction: column; }
.dm-label { font-size: .875rem; font-weight: 500; color: var(--ctl-text); }
.dm-desc { font-size: .75rem; color: var(--ctl-text-muted); }
.dropdown-divider { height: 1px; background: var(--ctl-border); margin: .375rem .625rem; }

.nav-actions { display: flex; align-items: center; gap: .625rem; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: .375rem; color: var(--ctl-text); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--ctl-nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ctl-surface); z-index: 99;
  overflow-y: auto; padding: 1rem 1.5rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .75rem 0; font-size: .95rem; font-weight: 500;
  border-bottom: 1px solid var(--ctl-border); color: var(--ctl-text);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-section-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ctl-text-muted); padding: 1.25rem 0 .375rem;
}
.mobile-actions {
  display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem;
}
.mobile-actions .btn { justify-content: center; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* ---- BODY PADDING FOR FIXED NAV ---- */
body { padding-top: var(--ctl-nav-h); }

/* ---- HERO ---- */
.ctl-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem;
  background: #0F1923;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('/churchtranslationlive/ctl-hero-congregation.jpg');
  background-size: cover; background-position: center 30%;
  opacity: .22;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,25,35,.95) 0%, rgba(15,25,35,.85) 45%, rgba(15,25,35,.5) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-block; padding: .3rem .9rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(37,99,235,.2); color: #93C5FD;
  border: 1px solid rgba(37,99,235,.35); margin-bottom: 1.25rem;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem;
  color: #F1F5F9;
}
.hero-copy p { font-size: 1.15rem; color: #94A3B8; margin-bottom: 2rem; line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-proof { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-proof-item { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: #64748B; }
.hero-proof-item svg { color: #22C55E; flex-shrink: 0; }

/* Hero: override ghost button for dark background */
.ctl-hero .btn-ghost {
  border-color: rgba(255,255,255,.25); color: #E2E8F0;
}
.ctl-hero .btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; align-items: flex-start; position: relative; }
.phone-mock {
  width: 260px; background: #0F1923; border-radius: 2.5rem;
  padding: 1.25rem .875rem; border: 2px solid #2A3545;
  box-shadow: 0 32px 64px rgba(0,0,0,.5), 0 0 0 8px rgba(37,99,235,.12);
  position: relative;
}
.phone-notch {
  width: 80px; height: 8px; background: #1A2530; border-radius: 999px;
  margin: 0 auto .875rem;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .75rem; padding: 0 .25rem;
}
.phone-live-pill {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(21,128,61,.15); color: #22C55E;
  padding: .25rem .625rem; border-radius: 999px; font-size: .7rem; font-weight: 700;
  border: 1px solid rgba(34,197,94,.2);
}
.phone-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22C55E;
  animation: pulse-live 1.5s ease-in-out infinite;
}
.phone-listeners { font-size: .7rem; color: #64748B; }
.phone-lang {
  background: #1A2530; border-radius: .5rem; padding: .5rem .625rem;
  font-size: .8rem; color: #94A3B8; margin-bottom: .75rem;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-lang strong { color: #E2E8F0; }
.phone-transcript { min-height: 160px; }
.phone-seg {
  padding: .375rem 0; border-bottom: 1px solid #1A2530;
  font-size: .78rem; line-height: 1.6; color: #CBD5E1;
}
.phone-seg:last-child { border-bottom: none; }
.phone-seg.final { color: #E2E8F0; }
.phone-seg.interim { color: #64748B; }
.phone-seg.typing { animation: fade-in .4s ease; }
.phone-font-ctrl {
  display: flex; justify-content: center; gap: 1rem; margin-top: .75rem;
  padding-top: .75rem; border-top: 1px solid #1A2530;
}
.phone-font-ctrl button {
  background: #1A2530; border: none; border-radius: .375rem;
  padding: .25rem .625rem; color: #94A3B8; font-size: .75rem; cursor: pointer;
}

/* Floating badge */
.hero-badge-float {
  position: absolute; bottom: -1rem; left: -2rem;
  background: #131E2A; border: 1px solid #2A3545;
  border-radius: .75rem; padding: .75rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  max-width: 210px;
}
.hero-badge-float-icon { color: #22C55E; flex-shrink: 0; }
.hero-badge-float-text { font-size: .75rem; color: #64748B; line-height: 1.4; }
.hero-badge-float-text strong { display: block; color: #E2E8F0; font-size: .8rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .phone-wrap { margin-top: 2rem; }
}
@media (max-width: 640px) {
  .ctl-hero { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--ctl-primary-dark); color: #fff;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.75rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: .35rem;
}
.stat-number span { color: #FCD34D; }
.stat-label { font-size: .825rem; color: rgba(255,255,255,.65); }
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.25rem 1rem; }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ---- IMAGE SECTIONS ---- */
.image-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px;
}
.image-section-photo {
  position: relative; overflow: hidden; min-height: 320px;
}
.image-section-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.image-section-content {
  padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) {
  .image-section { grid-template-columns: 1fr; }
  .image-section-content { padding: 2.5rem 1.5rem; }
}

/* ---- SCRIPTURE RIBBON ---- */
.scripture-ribbon {
  background: var(--ctl-surface-2);
  border-top: 1px solid var(--ctl-border); border-bottom: 1px solid var(--ctl-border);
  padding: 2rem 0; text-align: center;
}
.scripture-ribbon blockquote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic; font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ctl-text); max-width: 700px; margin: 0 auto;
  line-height: 1.7;
}
.scripture-ribbon cite {
  display: block; margin-top: .75rem; font-size: .85rem;
  font-style: normal; font-weight: 600; color: var(--ctl-text-muted);
}

/* ---- STEPS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
  background: var(--ctl-surface); border: 1px solid var(--ctl-border); border-radius: 1rem;
  padding: 2rem; position: relative;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ctl-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem;
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .625rem; }
.step-card p { color: var(--ctl-text-muted); font-size: .95rem; }
.step-connector {
  position: absolute; right: -1.125rem; top: 2.5rem;
  color: var(--ctl-border); font-size: 1.5rem; font-weight: 300; z-index: 1;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ---- FEATURE CARDS ---- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--ctl-surface); border: 1px solid var(--ctl-border); border-radius: 1rem;
  padding: 1.75rem; transition: box-shadow .2s, border-color .2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); border-color: rgba(30,77,140,.2); }
.feature-icon {
  width: 44px; height: 44px; border-radius: .625rem;
  background: rgba(30,77,140,.08); color: var(--ctl-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--ctl-text-muted); line-height: 1.6; }

/* ---- THEOLOGY DIFFERENTIATOR ---- */
.theol-section { background: var(--ctl-surface-2); }
.theol-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.theol-copy h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.theol-copy p { color: var(--ctl-text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.theol-list { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.theol-list li {
  display: flex; gap: .625rem; font-size: .9rem; color: var(--ctl-text-muted);
}
.theol-list li::before { content: '✓'; color: var(--ctl-success); font-weight: 700; flex-shrink: 0; }

.compare-card {
  background: var(--ctl-surface); border: 1px solid var(--ctl-border); border-radius: 1rem;
  overflow: hidden;
}
.compare-source {
  padding: 1rem 1.5rem; background: var(--ctl-surface-2);
  border-bottom: 1px solid var(--ctl-border);
}
.compare-source-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ctl-text-muted); margin-bottom: .375rem; }
.compare-source p { font-size: .95rem; font-style: italic; color: var(--ctl-text); line-height: 1.6; }
.compare-version {
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--ctl-border);
}
.compare-version:last-child { border-bottom: none; }
.compare-version-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .375rem;
}
.compare-version-label.bad { color: #DC2626; }
.compare-version-label.good { color: var(--ctl-success); }
.compare-version p { font-size: .9rem; color: var(--ctl-text); line-height: 1.6; }
.compare-version .note {
  font-size: .78rem; color: var(--ctl-text-muted); margin-top: .375rem; font-style: italic;
}

@media (max-width: 900px) {
  .theol-inner { grid-template-columns: 1fr; }
}

/* ---- USE CASE CARDS ---- */
.use-case-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.use-case-card {
  background: var(--ctl-surface); border: 1px solid var(--ctl-border); border-radius: 1rem;
  padding: 1.75rem; transition: box-shadow .2s, border-color .2s;
}
.use-case-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); border-color: rgba(30,77,140,.15); }
.use-case-icon {
  width: 44px; height: 44px; border-radius: .625rem;
  background: rgba(180,83,9,.08); color: var(--ctl-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.use-case-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.use-case-card p { font-size: .9rem; color: var(--ctl-text-muted); line-height: 1.6; }

/* ---- PRICING CARDS ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--ctl-surface); border: 1.5px solid var(--ctl-border); border-radius: 1.25rem;
  padding: 2rem; position: relative;
}
.pricing-card.featured {
  border-color: var(--ctl-primary);
  box-shadow: 0 0 0 4px rgba(30,77,140,.08);
}
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--ctl-primary); color: #fff;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .9rem; border-radius: 0 0 .625rem .625rem;
}
.pricing-tier { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ctl-text-muted); margin-bottom: .75rem; }
.pricing-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .5rem; }
.pricing-price .amount { font-size: 2.25rem; font-weight: 800; color: var(--ctl-text); }
.pricing-price .currency { font-size: 1.25rem; font-weight: 700; color: var(--ctl-text-muted); }
.pricing-price .period { font-size: .875rem; color: var(--ctl-text-muted); }
.pricing-desc { font-size: .875rem; color: var(--ctl-text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .625rem; }
.pricing-features li { display: flex; gap: .5rem; font-size: .875rem; color: var(--ctl-text-muted); }
.pricing-features li .check { color: var(--ctl-success); flex-shrink: 0; font-weight: 700; }
.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ---- LANGUAGES GRID ---- */
.lang-grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.lang-chip {
  display: flex; align-items: center; gap: .5rem;
  background: var(--ctl-surface); border: 1px solid var(--ctl-border);
  border-radius: .5rem; padding: .5rem .875rem; font-size: .85rem; color: var(--ctl-text);
  transition: border-color .2s, box-shadow .2s;
}
.lang-chip:hover { border-color: rgba(30,77,140,.3); box-shadow: 0 2px 8px rgba(30,77,140,.08); }
.lang-native { color: var(--ctl-text-muted); font-size: .8rem; }
.lang-flag { font-size: 1.1rem; }

/* ---- TESTIMONIALS ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--ctl-surface); border: 1px solid var(--ctl-border); border-radius: 1rem;
  padding: 2rem;
}
.testimonial-quote { font-size: .95rem; color: var(--ctl-text); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ctl-surface-2); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; color: var(--ctl-primary); flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--ctl-text); }
.testimonial-role { font-size: .8rem; color: var(--ctl-text-muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--ctl-primary-dark) 0%, var(--ctl-primary) 60%, #1E3A8A 100%);
  color: #fff; text-align: center; padding: 5rem 0;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: .875rem; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.cta-banner-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--ctl-surface); border: 1px solid var(--ctl-border); border-radius: .75rem; overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.125rem 1.375rem; background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: var(--ctl-text); text-align: left;
  gap: 1rem; font-family: inherit;
}
.faq-q-icon { flex-shrink: 0; color: var(--ctl-text-muted); transition: transform .2s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 1.375rem 1.125rem; font-size: .9rem; color: var(--ctl-text-muted); line-height: 1.7;
}

/* ---- FOOTER ---- */
.ctl-footer {
  background: #0F1923; color: #94A3B8;
  padding: 3.5rem 0 0;
}
.footer-inner { max-width: var(--ctl-max); margin: 0 auto; padding: 0 1.5rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem;
}
.footer-brand p { font-size: .875rem; line-height: 1.7; color: #64748B; margin-top: .875rem; max-width: 280px; }
.footer-brand .nav-logo { color: #E2E8F0; margin-bottom: .25rem; }
.footer-col h4 { font-size: .875rem; font-weight: 700; color: #E2E8F0; margin-bottom: .875rem; }
.footer-col a { display: block; font-size: .85rem; color: #64748B; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: #CBD5E1; }
.footer-bottom {
  border-top: 1px solid #1E2A3A; padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .825rem; color: #475569; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: .825rem; color: #475569; transition: color .2s; }
.footer-bottom-links a:hover { color: #94A3B8; }
.footer-attribution { font-size: .825rem; color: #475569; }
.footer-attribution a { color: #64748B; transition: color .2s; }
.footer-attribution a:hover { color: #94A3B8; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(160deg, #EEF4FC 0%, #F9F6F0 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--ctl-border);
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: .875rem; }
.page-hero p { font-size: 1.1rem; color: var(--ctl-text-muted); max-width: 560px; line-height: 1.7; }

/* ---- COMPARISON TABLE ---- */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: .9rem; }
.compare-table th, .compare-table td { padding: .875rem 1rem; text-align: center; border-bottom: 1px solid var(--ctl-border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th { font-weight: 700; font-size: .9rem; color: var(--ctl-text); background: var(--ctl-surface-2); }
.compare-table thead th:nth-child(3) { color: var(--ctl-primary); background: rgba(30,77,140,.05); }
.compare-table tbody tr:hover { background: var(--ctl-surface-2); }
.compare-table .check { color: var(--ctl-success); font-weight: 700; }
.compare-table .cross { color: #DC2626; }
.compare-table .val { color: var(--ctl-text); font-weight: 500; }
.table-wrap { overflow-x: auto; }

/* ---- ANIMATIONS ---- */
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typing-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- MISC ---- */
.section-link { display: inline-flex; align-items: center; gap: .375rem; color: var(--ctl-primary); font-weight: 600; font-size: .9rem; transition: gap .2s; }
.section-link:hover { gap: .625rem; }

.prose { max-width: 720px; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .75rem; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.prose p { color: var(--ctl-text-muted); line-height: 1.75; margin-bottom: 1rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose ul li { color: var(--ctl-text-muted); line-height: 1.7; margin-bottom: .375rem; }
.prose a { color: var(--ctl-primary); text-decoration: underline; }

/* ---- RESPONSIVE SECTION INTROS (image + text grid) ---- */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---- SOCIAL SHARING ---- */
.ctl-share-bar {
  display: flex; align-items: center; gap: .625rem; flex-wrap: wrap;
  padding: 1.25rem 0; border-top: 1px solid var(--ctl-border); margin-top: 2rem;
}
.ctl-share-label {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ctl-text-muted); flex-shrink: 0;
}
.ctl-share-btn {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .45rem 1rem; border-radius: .5rem; font-size: .8rem; font-weight: 600;
  cursor: pointer; text-decoration: none; border: 1.5px solid var(--ctl-border);
  transition: all .15s; color: var(--ctl-text); background: var(--ctl-surface);
  white-space: nowrap;
}
.ctl-share-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.ctl-share-btn.whatsapp { border-color: #25D366; color: #128C7E; }
.ctl-share-btn.whatsapp:hover { background: #25D366; color: #fff; }
.ctl-share-btn.twitter { border-color: #1DA1F2; color: #1DA1F2; }
.ctl-share-btn.twitter:hover { background: #1DA1F2; color: #fff; }
.ctl-share-btn.facebook { border-color: #1877F2; color: #1877F2; }
.ctl-share-btn.facebook:hover { background: #1877F2; color: #fff; }
.ctl-share-btn.linkedin { border-color: #0A66C2; color: #0A66C2; }
.ctl-share-btn.linkedin:hover { background: #0A66C2; color: #fff; }
.ctl-share-btn.copy { border-color: var(--ctl-border); }
.ctl-share-btn.copy.copied { border-color: var(--ctl-success); color: var(--ctl-success); }

/* ---- INVITE PASTOR FORM ---- */
.ctl-invite-section {
  background: linear-gradient(135deg, #0B1929 0%, #1E4D8C 100%);
  color: #fff; border-radius: 1.25rem; padding: 2.5rem; margin: 3rem 0;
}
.ctl-invite-section h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; color: #fff; }
.ctl-invite-section .native-subtext { font-size: 1.1rem; color: rgba(255,255,255,.7); margin-bottom: .375rem; }
.ctl-invite-section p { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.ctl-invite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.ctl-invite-group { display: flex; flex-direction: column; gap: .35rem; }
.ctl-invite-group label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); }
.ctl-invite-group .native-label { font-size: .75rem; color: rgba(255,255,255,.45); }
.ctl-invite-group input {
  padding: .65rem .875rem; border-radius: .5rem; font-size: .9rem;
  border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: #fff; font-family: inherit; transition: border-color .2s;
}
.ctl-invite-group input::placeholder { color: rgba(255,255,255,.35); }
.ctl-invite-group input:focus { outline: none; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.ctl-invite-submit {
  background: #FCD34D; color: #1A1A1A; border: none; border-radius: .5rem;
  padding: .8rem 2rem; font-size: .95rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all .2s; width: 100%; margin-top: .5rem;
}
.ctl-invite-submit:hover { background: #FBBF24; transform: translateY(-1px); }
.ctl-invite-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.ctl-invite-message { margin-top: .875rem; font-size: .875rem; border-radius: .5rem; padding: .75rem 1rem; display: none; }
.ctl-invite-message.success { background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3); color: #86EFAC; display: block; }
.ctl-invite-message.error { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.3); color: #FCA5A5; display: block; }
.ctl-invite-note { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .625rem; }

@media (max-width: 600px) {
  .ctl-invite-grid { grid-template-columns: 1fr; }
}

/* ---- NATIVE SPEAKER SECTION ---- */
.ctl-native-section {
  background: var(--ctl-surface-2); border: 1px solid var(--ctl-border);
  border-radius: 1.25rem; padding: 2rem; margin: 2rem 0;
}
.ctl-native-section .native-headline {
  font-size: 1.35rem; font-weight: 700; margin-bottom: .5rem; color: var(--ctl-text);
  line-height: 1.3;
}
.ctl-native-section .english-below {
  font-size: .875rem; color: var(--ctl-text-muted); margin-bottom: 1rem; font-style: italic;
}
.ctl-native-section p { color: var(--ctl-text-muted); font-size: .9rem; line-height: 1.7; }

/* ---- LANGUAGE GRID (hub page) ---- */
.lang-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}
.lang-hub-card {
  display: flex; align-items: center; gap: .875rem; padding: 1.25rem;
  background: var(--ctl-surface); border: 1px solid var(--ctl-border);
  border-radius: .875rem; text-decoration: none; color: var(--ctl-text);
  transition: all .2s;
}
.lang-hub-card:hover { border-color: var(--ctl-primary); box-shadow: 0 4px 16px rgba(30,77,140,.1); transform: translateY(-1px); }
.lang-hub-flag { font-size: 2rem; flex-shrink: 0; }
.lang-hub-names .english { font-weight: 600; font-size: .95rem; }
.lang-hub-names .native { font-size: .85rem; color: var(--ctl-text-muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
