/* =====================================================
   DESIGN TOKENS
   ===================================================== */
:root{
  /* Core brand */
  --navy: #121638;
  --navy-2: #1E2756;
  --gold: #D4AF37;
  --dark: #1f2a33;
  --text: #2b2b2b;
  --muted: #5b6373;
  --bg: #f6f8fb;
  --white: #ffffff;
  --border: #e5e8ee;

  /* Hero (kept separate from body text tokens so hero contrast
     can be tuned independently of the rest of the page) */
  --hero-bg: var(--navy);
  --hero-heading: #ffffff;      /* headings: max contrast on navy */
  --hero-body: #E8EAF2;         /* paragraph text: soft off-white, ~12:1 contrast on navy — easy to read, not stark white */
  --hero-accent: var(--gold);   /* eyebrow tags / accents only, never paragraph copy */

  /* Legacy inline-color palette (from old .auto-styleN classes / old navbar) */
  --legacy-navy-bg: #01173e;
  --legacy-rust: #CF5C3F;
  --legacy-cream: #FAEBD7;
  --legacy-gold: #FFD700;
  --legacy-red: #dd0606;
  --legacy-fb-blue: #3b5998;

  /* Growth Blueprint (.gb-*) palette */
  --gb-ink:#1C2331;
  --gb-ink-soft:#5B6373;
  --gb-ink-faint:#6B7280;
  --gb-bg:#F5F6F8;
  --gb-card-bg:#FFFFFF;
  --gb-border:#E5E8EE;
  --gb-step1-tint:#E7F4EF; --gb-step1-deep:#0F6E5C;
  --gb-step2-tint:#D8EEE4; --gb-step2-deep:#0E6E5C;
  --gb-step3-deep:#0B5C49; --gb-step3-tint:#11785F;
  --gb-amber:#D98B3F;
  --gb-radius:18px;
}

*{ box-sizing: border-box; }

/* =====================================================
   BASE / GLOBAL
   ===================================================== */
body{
  margin: 0;
  padding: 0;
  font-family: "Noto Serif SC", "Microsoft JhengHei", Georgia, "Times New Roman", Times, serif;
  line-height: 1.8;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

a{ color: #2c3e50; text-decoration: none; }
a:hover{ text-decoration: underline; }

hr{
  width: 100%;
  height: 3px;
  margin: 10px auto;
  background-color: var(--legacy-cream);
  border: 0;
}

section{ padding: 30px 0; }

h1, h2, h3{
  color: #12324a;
  font-weight: 600;
}

p{
  font-size: 16px;
  color: #333;
}

/* =====================================================
   MAIN CONTENT CONTAINER
   ===================================================== */
.container{
  max-width: 1100px;
  margin-top: 0 auto;
  padding: 5px 5px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.container p,
.container li,
.container span{
  opacity: 1 !important;
  color: #2b2b2b !important;
}

.another-container{ max-width: 640px; }

.row{ display: flex; }
.column{ flex: 50%; padding: 5px; }

/* =====================================================
   HERO SECTION
   Single source of truth for hero styling. Uses hero-*
   tokens above: headings are pure white for maximum
   contrast, body copy uses a soft off-white (not gold or
   mid-gray) so long paragraphs stay easy to read, and gold
   is reserved for small accent/eyebrow elements only.
   ===================================================== */
.hero{
  background-color: var(--hero-bg);
  color: var(--hero-body);
  text-align: center;
  padding: 25px 25px;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
}

.hero > h1,
.hero > h2{
  color: var(--hero-heading);
}

.hero > h3{
  display: inline-block;
  margin: 0 0 0.1rem;
  padding: 10px 24px;
  border-radius: 999px;
  background-color: var(--navy-2);
  color: var(--hero-accent);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
}

.hero h2{
  font-size: 1.8rem;
  margin: 0.8rem 0 1rem;
}

.hero > p{
  color: var(--hero-body);
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 0 auto 1.5rem;
  max-width: 760px;
}

/* Hero content wrapper used on inner pages (keeps copy
   centered and readable at a narrower measure than the
   full hero width) */
.hero-overlay{
  max-width: 720px;
  margin: 0 auto;
}

.hero-overlay h2{
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hero-accent);
  margin: 0 0 10px;
}

.hero-overlay h1{
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--hero-heading);
  margin: 0 0 18px;
}

.hero-overlay p{
  color: var(--hero-body);
  font-size: 16px;
  line-height: 1.9;
}

/* =====================================================
   BRAND / LOGO
   ===================================================== */
.brand{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.brand img{ width: 80px; }
.brand h1{
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
}
.brand span{
  margin-left: 8px;
  color: var(--legacy-red);
  font-size: 24px;
}

/* =====================================================
   LANGUAGE SWITCHERS
   Two variants exist in the source markup: the pill-style
   dark bar (.language-bar/.lang-switcher) and the flat
   light bar (.language-switcher). Both kept, de-duplicated.
   ===================================================== */
.language-bar{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 8px 40px;
  background: #0f3d2e;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  box-sizing: border-box;
}
.lang-switcher{ display: flex; gap: 12px; }
.lang-switcher a{
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}
.lang-switcher a:hover,
.lang-switcher a[aria-current="page"]{
  background: var(--gold);
  color: #123524;
}

.language-switcher{
  display: flex;
  justify-content: flex-end;
  margin: 5px 0 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.language-switcher a{
  margin: 0 0.4rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #2980b9;
  font-weight: 200;
  text-decoration: none;
  transition: all 0.2s ease;
}
.language-switcher a:hover{
  background: #f0f8ff;
  color: #1f618d;
}
.language-switcher a[aria-current="page"]{
  background: #2980b9;
  color: #fff;
}
.language-switcher a[aria-current="page"]:hover{
  background: #1f618d;
}

/* =====================================================
   NAVIGATION — desktop flex nav + hamburger toggle
   ===================================================== */
.navbar{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 40px;
  margin: 3px 0 1px;
  background-color: var(--legacy-fb-blue);
  border-radius: 5px;
}

.navbar ul{
  text-align: center;
  margin: 0 auto;
  list-style: none;
}

.navbar a{
  float: left;
  display: block;
  padding: 8px 16px 6px;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.navbar a:hover,
.navbar .current{
  background-color: var(--legacy-rust);
  color: var(--legacy-cream);
}

.nav-menu{
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

html[lang="en"] .nav-menu a{
  font-size: 14px;
  letter-spacing: -0.3px;
}

.open-slide{ display: none; }
.open-slide a{ display: flex; align-items: center; }
.open-slide svg{ width: 30px; height: 30px; cursor: pointer; }

@media (max-width: 768px){
  .nav-menu{ display: none; }
  .navbar{ justify-content: flex-start; padding: 12px 18px; }
  .open-slide{ display: block; }
}
@media (min-width: 900px){
  .open-slide{ display: none; }
}
@media (max-width: 900px){
  .navbar-nav{ display: none; }
}

/* Hamburger slide-out panel (homepage). Named .slide-nav,
   distinct from the always-on .side-nav sidebar below so
   the two don't collide. */
.slide-nav{
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  background-color: #2c3e50;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}
.slide-nav a{
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.slide-nav a:hover{ color: #2980b9; }
.slide-nav .btn-close{
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 30px;
}

/* =====================================================
   SIDEBAR (always-on left nav for inner content pages)
   ===================================================== */
.side-nav{
  height: 100%;
  width: 250px;
  position: fixed;
  top: 50px;
  left: 2px;
  z-index: 1;
  background-color: var(--legacy-navy-bg);
  overflow-x: hidden;
  padding-top: 50px;
  border-radius: 5px;
  transition: 0.5s;
}
.side-nav a{
  display: block;
  padding: 11px 10px 10px 85px;
  color: var(--legacy-cream);
  font-family: PMingLiu;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.side-nav a:hover{
  width: 62%;
  background-color: var(--legacy-rust);
  border-radius: 5px;
}
.side-nav .current{
  background-color: var(--legacy-rust);
  border-radius: 5px;
}
.side-nav .btn-close{
  position: absolute;
  top: 0;
  right: 5px;
  padding: 2px 20px 8px;
  font-size: 24px;
  border-radius: 5px;
}
.side-nav .btn-close:hover{
  width: 7%;
  background-color: var(--legacy-rust);
  border-radius: 5px;
}

#main{
  width: 100%;
  padding: 14px;
  overflow: hidden;
  transition: margin-left 0.5s;
}

.mainContent{
  padding: 3px 10px;
  background-color: var(--legacy-navy-bg);
  border-radius: 5px;
}
.mainContent a:link,
.mainContent a:hover{
  color: var(--legacy-gold);
  font-family: PMingLiu;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.mainContent a:hover{
  background-color: var(--legacy-rust);
  color: var(--legacy-cream);
}

/* =====================================================
   LEGACY TEXT/UTILITY CLASSES
   ===================================================== */
.title{
  color: var(--legacy-gold);
  font-family: PMingLiu;
  font-size: 24px;
  font-weight: bold;
}
.content{
  color: var(--legacy-cream);
  font-family: PMingLiu;
  font-size: 14px;
}
.content ul li{
  color: var(--legacy-gold);
  font-size: 32px;
}

.responsive{
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.responsive iframe,
.responsive video{
  position: absolute;
  width: 100%;
  height: 100%;
}

.mainFooter{
  height: 70px;
  width: 100%;
  float: left;
  margin: 2px 0;
  background-color: var(--legacy-fb-blue);
  border-radius: 5px;
}
.mainFooter p{
  width: 100%;
  margin: 5px auto;
  color: var(--legacy-cream);
  font-size: 14px;
  text-align: center;
}


/* =====================================================
   KBA STAT / VIDEO SECTION
   ===================================================== */
.kba-section{
  background: #f8dfe3;
  padding: 20px 20px;
  text-align: center;
  border-radius: 12px;
}
.kba-buttons{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.kba-btn{
  background: #7a1f2a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.kba-stats{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.kba-card{
  width: 180px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.kba-number{
  font-size: 36px;
  font-weight: 700;
  color: #7a1f2a;
  margin-bottom: 8px;
}
.kba-label{ font-size: 14px; color: #333; }

.kba-wrapper{
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 40px 20px;
}
.kba-banner{ flex: 1; }

.kba-video-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .video-item {
    width: 100%;
  }

  .kba-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .kba-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 5px;
  }

  /* Mobile: show one video per row */
  @media (max-width: 768px) {
    .kba-video-wrapper {
      grid-template-columns: 1fr;
    }
  }
 .pdf-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .pdf-list li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 20px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    min-height: 100px;
  }

  .pdf-list li span {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .pdf-list li a {
    text-decoration: none;
    font-weight: bold;
  }

  /* Tablet: 3 items per row */
  @media (max-width: 992px) {
    .pdf-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Mobile: 1 item per row */
  @media (max-width: 600px) {
    .pdf-list {
      grid-template-columns: 1fr;
    }
  }
  .pdf-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.pdf-container iframe {
    width: 100%;
    height: 900px;
    border: none;
}
/* =====================================================
   HOMEPAGE — header, features, footer, media/resources
   ===================================================== */
.page-header{
  position: relative;
  padding: 1.2rem 2rem 0.6rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.features{
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-card{
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.feature-card h3{ margin-top: 0; color: #2980b9; }
.feature-card a{ color: #2980b9; font-weight: bold; }
footer,
.footer,
.site-footer {
    background: #34495e;   /* Your current background */
    color: #ffffff;
    text-align: center;
}

footer p,
.footer p,
.site-footer p {
    color: #ffffff;
}

footer a,
.footer a,
.site-footer a {
    color: #f4d03f;   /* Gold links */
    text-decoration: none;
}

footer a:hover,
.footer a:hover,
.site-footer a:hover {
    color: #ffffff;
}
.site-footer{
  margin-top: 0.1rem;
  padding: 2rem 1rem;
  background: #2c3e50;
  color: #fff;
  text-align: center;
}
.site-footer p{ margin: 0.1rem 0; }

.media-section{ padding: 80px 20px; background: #fff; }
.media-section .container{ max-width: 900px; margin: auto; }

.section-title{ text-align: center; margin-bottom: 10px; }
.section-title h2{ font-size: 2rem; color: #1d4d3d; margin-bottom: 10px; }
.section-title p{
  max-width: 720px;
  margin: auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #555;
}

.pdf-list{ list-style: none; padding: 0; margin: 0; }
.pdf-list li{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 28px;
  margin-bottom: 18px;
  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  transition: .3s;
}
.pdf-list li:hover{
  background: #fff;
  border-color: #b68c3b;
  box-shadow: 0 12px 25px rgba(0,0,0,.08);
}
.pdf-list span{ font-size: 1.05rem; color: #222; font-weight: 600; }
.pdf-list a{ color: #b68c3b; font-weight: 700; text-decoration: none; }
.pdf-list a:hover{ color: #0b5f46; }

/* =====================================================
   GROWTH BLUEPRINT section ("3+1 / 6 / 25+" cards)
   ===================================================== */
.gb-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
  color: var(--gb-ink);
  background: var(--gb-bg);
  border-radius: var(--gb-radius);
  font-family: 'Noto Sans SC', -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.gb-eyebrow-top{
  margin: 0 0 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gb-step1-deep);
}
.gb-heading{
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.gb-subheading{
  max-width: 640px;
  margin: 0 0 44px;
  color: var(--gb-ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.gb-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.gb-stats.gb-stats-4col{ grid-template-columns: repeat(4, 1fr); }

.gb-card{
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--gb-card-bg);
  border: 1px solid var(--gb-border);
  border-radius: var(--gb-radius);
  box-shadow: 0 1px 2px rgba(20,24,33,0.04);
  transition: box-shadow .25s ease, transform .25s ease;
}
.gb-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20,24,33,0.08);
}

.gb-step-tag{
  margin-bottom: 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gb-ink-faint);
}

.gb-number{
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
}
.gb-card:nth-child(1) .gb-number{ background: var(--gb-step1-tint); color: var(--gb-step1-deep); }
.gb-card:nth-child(2) .gb-number{ background: var(--gb-step2-tint); color: var(--gb-step2-deep); }
.gb-card:nth-child(3) .gb-number{ background: var(--gb-step3-deep); color: #fff; }

.gb-title{ margin: 0 0 10px; font-size: 19px; font-weight: 700; line-height: 1.4; }

.gb-tagline{ margin: 0 0 14px; font-size: 14px; font-weight: 500; line-height: 1.8; color: var(--gb-step1-deep); }
.gb-card:nth-child(2) .gb-tagline{ color: var(--gb-step2-deep); }
.gb-card:nth-child(3) .gb-tagline{ color: var(--gb-step3-tint); }

.gb-summary{ flex-grow: 1; margin: 0 0 20px; font-size: 14.5px; line-height: 1.85; color: var(--gb-ink-soft); }

.gb-toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 16px;
  border: 1px solid var(--gb-border);
  border-radius: 10px;
  background: #FAFBFC;
  color: var(--gb-ink);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.gb-toggle:hover{ background: #F1F3F6; border-color: #D7DBE3; }
.gb-toggle svg{ width: 13px; height: 13px; flex-shrink: 0; transition: transform .25s ease; }
.gb-toggle[aria-expanded="true"] svg{ transform: rotate(180deg); }
.gb-toggle:focus-visible{ outline: 2px solid var(--gb-step1-deep); outline-offset: 2px; }

.gb-detail{ max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.gb-detail.open{ max-height: 3200px; }
.gb-detail-inner{ padding-top: 22px; }
.gb-detail h4{
  margin: 24px 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gb-ink-faint);
}
.gb-detail h4:first-child{ margin-top: 0; }

.gb-comp-list{ display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; list-style: none; }
.gb-comp-list li{ display: flex; gap: 14px; }
.gb-comp-num{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 8px;
  background: var(--gb-step2-tint);
  color: var(--gb-step2-deep);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
}
.gb-comp-list h5{ margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.gb-comp-en{ margin-left: 6px; font-family: 'Manrope', sans-serif; font-weight: 500; font-size: 12px; color: var(--gb-ink-faint); }
.gb-comp-list p{ margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--gb-ink-soft); }

.gb-table{ width: 100%; margin-top: 4px; font-size: 13.5px; border-collapse: collapse; }
.gb-table th, .gb-table td{ padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--gb-border); }
.gb-table th{ font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--gb-ink-faint); }
.gb-table td:first-child{ font-weight: 700; color: var(--gb-ink); white-space: nowrap; }
.gb-table td{ color: var(--gb-ink-soft); }

.gb-value-list{ display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.gb-value-list li{ display: flex; gap: 12px; align-items: flex-start; }
.gb-emoji{ flex-shrink: 0; font-size: 17px; line-height: 1.4; }
.gb-value-list strong{ display: block; margin-bottom: 2px; font-size: 14px; font-weight: 700; }
.gb-value-list p{ margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--gb-ink-soft); }

.gb-direction-list{ display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0 0 0 18px; }
.gb-direction-list li{ font-size: 14px; line-height: 1.6; color: var(--gb-ink-soft); }
.gb-direction-list li::marker{ font-weight: 700; color: var(--gb-step3-tint); }

.gb-quote{
  margin: 24px 0 0;
  padding: 18px 20px;
  background: #FAFBFC;
  border-left: 3px solid var(--gb-step1-deep);
  border-radius: 0 10px 10px 0;
}
.gb-card:nth-child(2) .gb-quote{ border-left-color: var(--gb-step2-deep); }
.gb-card:nth-child(3) .gb-quote{ border-left-color: var(--gb-step3-tint); }
.gb-quote-title{ margin: 0 0 8px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gb-ink-faint); }
.gb-quote p{ margin: 0; font-size: 14px; font-weight: 500; line-height: 1.85; color: var(--gb-ink); }

.gb-blueprint{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  padding: 30px 36px;
  background: var(--gb-ink);
  border-radius: var(--gb-radius);
}
.gb-bp-step{ display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 96px; }
.gb-bp-num{ font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 28px; color: #fff; }
.gb-bp-label{ font-size: 12.5px; font-weight: 500; letter-spacing: .02em; color: #AEB6C4; }
.gb-bp-arrow{ flex-shrink: 0; font-size: 20px; font-weight: 700; color: var(--gb-amber); }

.gb-blueprint-caption{
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: var(--gb-ink-soft);
}

@media (max-width: 900px){
  .gb-stats{ grid-template-columns: 1fr; }
  .gb-blueprint{ gap: 14px; }
}
@media (max-width: 1100px){
  .gb-stats.gb-stats-4col{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .gb-stats.gb-stats-4col{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  .gb-card, .gb-toggle svg, .gb-detail{ transition: none !important; }
}

/* =====================================================
   HEALING PAGE
   ===================================================== */
.section{
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}
.section h2{
  margin: 0 0 10px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--gb-ink, #1C2331);
}
.section-subtitle{ margin: 0 0 36px; font-size: 15px; color: var(--gb-ink-soft, #5B6373); }
.section-table{
  max-width: 760px;
  margin: 32px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gb-border, #E5E8EE);
  border-radius: 14px;
  text-align: left;
}
.section-table th, .section-table td{ padding: 14px 20px; }

.program-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.program-card{
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--gb-border, #E5E8EE);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(20,24,33,0.04);
}
.program-card .number{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: #E7F4EF;
  border-radius: 999px;
  color: #12806A;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.program-card h3{ margin: 0 0 10px; font-size: 18px; color: var(--gb-ink, #1C2331); }
.program-card p{ margin: 0; font-size: 14px; line-height: 1.8; color: var(--gb-ink-soft, #5B6373); }

.healing-process,
.scripture-section{
  max-width: 100%;
  padding: 56px 24px;
  text-align: center;
}
.healing-process{ background: #F5F6F8; }
.healing-process h2{
  margin: 0 0 36px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--gb-ink, #1C2331);
}

.timeline{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step{
  position: relative;
  padding: 26px 20px;
  background: #fff;
  border: 1px solid var(--gb-border, #E5E8EE);
  border-radius: 16px;
  text-align: left;
}
.step h3{ margin: 0 0 10px; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800; color: #12806A; }
.step p{ margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--gb-ink-soft, #5B6373); }

.scripture-section{ background: var(--navy); color: #F8F5EE; }
.scripture-section h2{ margin: 0 0 36px; font-size: clamp(24px, 3vw, 32px); font-weight: 900; color: #fff; }

.verse-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.verse-card{ padding: 28px 24px; background: var(--navy-2); border-radius: 16px; }
.verse-card h3{
  margin: 0 0 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
.verse-card p{ margin: 0; font-size: 15px; line-height: 1.85; color: #F8F5EE; }

.healing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.healing-card{
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--gb-border, #E5E8EE);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(20,24,33,0.04);
}
.healing-card h3{ margin: 0 0 10px; font-size: 17px; color: var(--gb-ink, #1C2331); }
.healing-card p{ margin: 0 0 10px; font-size: 14px; color: var(--gb-ink-soft, #5B6373); }
.healing-card ul{ margin: 0; padding-left: 18px; font-size: 13.5px; line-height: 1.9; color: var(--gb-ink-soft, #5B6373); }

.healing-cta{ padding: 70px 24px; background: #7a1f2a; color: #fff; text-align: center; }
.healing-cta h2{ margin: 0 0 12px; font-size: clamp(24px, 3vw, 34px); font-weight: 900; }
.healing-cta p{ margin: 0 0 26px; font-size: 16px; color: #F3D9DC; }
.healing-cta .cta-button{
  display: inline-block;
  padding: 14px 34px;
  background: #fff;
  border-radius: 10px;
  color: #7a1f2a;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
}
.healing-cta .cta-button:hover{ background: #F3D9DC; text-decoration: none; }

.verse-final blockquote{ max-width: 640px; margin: 0 auto; padding: 0; border: none; }
.verse-final blockquote p{
  margin: 0 0 12px;
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--gb-ink, #1C2331);
}
.verse-final blockquote cite{ font-size: 14px; font-style: normal; color: var(--gb-ink-faint, #6B7280); }

@media (max-width: 900px){
  .program-grid,
  .healing-grid,
  .verse-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .timeline{ grid-template-columns: 1fr; }
}
