:root {
  --navy: #08213f;
  --navy-2: #12365c;
  --ink: #182230;
  --muted: #5b6778;
  --line: #d9e1ea;
  --gold: #c9a34a;
  --gold-2: #f1d891;
  --paper: #fbfcfd;
  --white: #ffffff;
  --sage: #4f6f63;
  --rosewood: #7f4145;
  --cream: #fff7e6;
  --mist: #eef3f6;
  --shadow: 0 18px 55px rgba(8, 33, 63, 0.14);
  --shadow-soft: 0 12px 34px rgba(8, 33, 63, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(201, 163, 74, 0.75);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 234, 0.85);
  backdrop-filter: blur(14px);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.brand-kicker {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  min-width: 58px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-primary,
.button-dark {
  position: relative;
  overflow: hidden;
}

.button-primary::after,
.button-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button-primary:hover::after,
.button-dark:hover::after {
  transform: translateX(120%);
}

.button,
.program-card,
.path-card,
.day-card,
.panel {
  -webkit-tap-highlight-color: transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #10213a;
  box-shadow: 0 10px 28px rgba(201, 163, 74, 0.25);
}

.button-primary:hover {
  background: #d8b75e;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-2);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.editorial-note {
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 163, 74, 0.38);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fff9e8;
  color: #354154;
  font-size: 15px;
}

.editorial-note strong {
  color: var(--navy);
}

.editorial-note a {
  color: var(--navy);
  font-weight: 750;
}

.trust-table,
.comparison-table,
.evidence-grid {
  display: grid;
  gap: 14px;
  margin: 22px 0 34px;
}

.trust-table {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.trust-table div,
.comparison-table div,
.evidence-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 33, 63, 0.06);
}

.trust-table strong,
.comparison-table strong,
.evidence-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.25;
}

.trust-table span,
.comparison-table span,
.evidence-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.96) 0%, rgba(8, 33, 63, 0.86) 44%, rgba(8, 33, 63, 0.42) 100%),
    url("assets/hero-ministry-leaders.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(8, 33, 63, 0.74));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 52px;
  align-items: end;
  position: relative;
  z-index: 1;
  padding: 86px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

.hero h1 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  color: var(--ink);
}

.hero-card h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-card-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.hero-card-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #2e3b4d;
  font-weight: 700;
  line-height: 1.35;
}

.hero-card-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold), #e7c66b);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.45);
}

.mini-fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 20px;
}

.mini-fee-grid div {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.mini-fee-grid strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.mini-fee-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card .button {
  width: 100%;
}

.trust-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.14);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.78);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

section {
  padding: 82px 0;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--rosewood);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  max-width: 840px;
  font-size: clamp(32px, 4.4vw, 52px);
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 52px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.conversion-panel {
  border-top: 4px solid var(--gold);
  background:
    linear-gradient(180deg, #ffffff, #fbfcfd);
}

.conversion-panel .button {
  width: 100%;
  margin-top: 12px;
}

.conversion-panel ul {
  margin: 18px 0;
  padding-left: 18px;
  color: var(--muted);
}

.conversion-panel li {
  margin: 8px 0;
}

.panel-pad {
  padding: 30px;
}

.path-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.path-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #eef4f2;
  color: var(--sage);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.path-card h3 {
  font-size: 24px;
}

.path-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.program-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.program-card,
.panel,
.path-card,
.day-card,
.proof-card {
  overflow-wrap: anywhere;
}

.day-hero {
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.97), rgba(8, 33, 63, 0.76)),
    url("assets/abide-journal-bible.png") center / cover no-repeat;
}

.pillar-hero {
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.98), rgba(8, 33, 63, 0.72)),
    url("assets/readiness-assessment.png") center / cover no-repeat;
}

.image-feature {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pillar-body h2 {
  margin-top: 48px;
}

.pillar-body .button {
  margin-top: 12px;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.comparison-table div {
  padding: 18px;
  background: #f3f6f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-table strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.comparison-table span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.tool-checklist {
  list-style: none;
  padding-left: 0;
}

.tool-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0;
  color: var(--muted);
}

.check-box {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  background: var(--white);
}

.assessment-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.assessment-question {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assessment-question h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.assessment-question label {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.assessment-result {
  margin-top: 26px;
  padding: 26px;
  background: #eef4f2;
  border: 1px solid rgba(79, 111, 99, 0.35);
  border-radius: 8px;
}

.assessment-result h3 {
  font-size: 30px;
}

.trust-panel {
  border-top: 4px solid var(--gold);
}

.trust-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.trust-link-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.trust-link-card h3 {
  font-size: 23px;
}

.trust-link-card p {
  color: var(--muted);
}

.days-section {
  background: #f7f9fb;
}

.month-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.month-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.month-jump a:hover {
  border-color: var(--gold);
}

.month-page-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.month-card {
  min-height: 280px;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.day-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.day-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.day-number {
  color: var(--rosewood);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.day-month {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.day-card h3 {
  font-size: 24px;
  line-height: 1.22;
}

.day-card p {
  color: var(--muted);
}

.day-prompts {
  margin: 14px 0;
  padding-left: 20px;
}

.day-prompts li {
  margin: 8px 0;
  color: var(--muted);
}

.day-card strong {
  color: var(--ink);
}

.day-scripture {
  color: var(--navy) !important;
  font-weight: 800;
}

.day-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.day-cta:hover {
  color: var(--rosewood);
}

.program-card:hover {
  border-color: rgba(201, 163, 74, 0.75);
  box-shadow: 0 14px 35px rgba(8, 33, 63, 0.1);
  transform: translateY(-3px);
}

.program-card h3 {
  font-size: 25px;
}

.program-card p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.program-link {
  color: var(--navy);
  font-weight: 800;
}

.navy-section {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
}

.navy-section h2,
.navy-section h3 {
  color: var(--white);
}

.navy-section .section-kicker {
  color: var(--gold-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.proof-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.proof-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 28px;
  font-family: Georgia, serif;
}

.quote {
  padding: 30px;
  background: #f3f6f8;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.quote p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-family: Georgia, serif;
}

.quote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.topic-faq {
  margin-top: 22px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
}

.faq-answer {
  display: none;
  max-width: 790px;
  padding: 0 0 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  padding: 56px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), #17466d);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
}

.cta-inner p {
  max-width: 670px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #06182e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-title {
  color: var(--white);
  font-weight: 800;
}

.page-hero {
  padding: 86px 0 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.97), rgba(8, 33, 63, 0.8)),
    url("https://www.abide.edu.kg/content/abide-campus.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 70px);
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.content-body {
  max-width: 820px;
}

.content-body h2 {
  margin-top: 42px;
  font-size: 34px;
}

.content-body p,
.content-body li {
  color: var(--muted);
  font-size: 18px;
}

.content-body ul {
  padding-left: 22px;
}

.aside-cta {
  position: sticky;
  top: 102px;
}

.aside-cta h3 {
  font-size: 28px;
}

.aside-cta p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .trust-grid,
  .trust-links,
  .program-grid,
  .proof-grid,
  .day-grid,
  .trust-table,
  .evidence-grid,
  .comparison-table,
  .footer-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .aside-cta {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-kicker {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    padding: 58px 0 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 18px;
  }

  .mini-fee-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-card h2 {
    font-size: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 50px;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
  }

  .section-title {
    font-size: 34px;
  }

  section {
    padding: 58px 0;
  }

  .path-card {
    grid-template-columns: 1fr;
  }

  .path-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .program-card {
    min-height: auto;
  }

  .trust-table div,
  .comparison-table div,
  .evidence-grid div {
    padding: 16px;
  }
}
