/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Brand */
  --color-primary:      #B6C028;
  --color-primary-dark: #9aa320;
  --color-secondary:    #D54A02;
  --color-accent:       #DE5B01;

  /* Section backgrounds */
  --bg-section:     #FFCCCC;   /* soft rose — base sections */
  --bg-section-alt: #CCFFFF;   /* soft aqua — alt sections  */

  /* Neutrals */
  --neutral-50:  #fafaf9;
  --neutral-100: #f5f5f0;
  --neutral-200: #e8e8e0;
  --neutral-300: #d1d1c4;
  --neutral-400: #a8a898;
  --neutral-500: #7a7a6a;
  --neutral-600: #5a5a4e;
  --neutral-700: #3d3d34;
  --neutral-800: #252520;
  --neutral-900: #13130f;

  /* Semantic */
  --color-success: #4caf50;
  --color-error:   #e53e3e;
  --color-warn:    #f6ad55;

  /* Typography */
  --font-heading: 'Slabo 27px', Georgia, serif;
  --font-body:    'Noto Sans', system-ui, sans-serif;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  2rem;      /* 32px */
  --text-4xl:  2.5rem;    /* 40px */
  --text-5xl:  3.5rem;    /* 56px */

  --lh-body:    1.65;
  --lh-heading: 1.2;
  --lh-ui:      1.25;

  /* Spacing (8px scale) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  40px;
  --sp-8:  48px;
  --sp-9:  64px;
  --sp-10: 80px;
  --sp-11: 96px;
  --sp-12: 128px;

  /* Layout */
  --container:     1200px;
  --container-sm:  760px;
  --section-pad-y: var(--sp-11);
  --gutter:        24px;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-0: none;
  --shadow-1: 0 2px 8px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-2: 0 8px 24px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);

  /* Nav */
  --nav-height: 88px;
  --nav-height-shrunk: 68px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  color: #333333;
  background: var(--bg-section);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  color: #333333;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-9);
}

.container--sm {
  max-width: var(--container-sm);
}

.section {
  padding-block: var(--section-pad-y);
}

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


.section--dark {
  background: var(--neutral-800);
  color: var(--neutral-100);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--sp-3);
}

.section-header {
  margin-bottom: var(--sp-9);
  text-align: center;
}

.section-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-3);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--neutral-500);
  max-width: 56ch;
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  height: 48px;
  padding-inline: 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-secondary);
  color: #fff;
}

.btn--primary:hover {
  background: #be4202;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(213,74,2,.25);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
  background: #a93a02;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: var(--neutral-800);
  border: 1.5px solid var(--neutral-300);
}

.btn--outline-dark:hover {
  border-color: var(--neutral-500);
  background: var(--neutral-100);
}

.btn--lg {
  height: 56px;
  padding-inline: 28px;
  font-size: var(--text-lg);
}

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
  background: transparent;
}

.site-header.scrolled {
  height: var(--nav-height-shrunk);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
}


.site-header.scrolled .nav-logo-text { color: var(--neutral-800); }
.site-header.scrolled .nav-link { color: var(--neutral-700); }
.site-header.scrolled .nav-link:hover { color: var(--color-secondary); }
.site-header.scrolled .btn--outline { color: var(--color-secondary); border-color: var(--color-secondary); }
.site-header.scrolled .btn--outline:hover { background: var(--color-secondary); color: #fff; }

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-9);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: icon + text side by side */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav-logo-icon {
  height: 80px;
  width: auto;
  transition: height .3s ease;
  flex-shrink: 0;
}

.site-header.scrolled .nav-logo-icon { height: 60px; }

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: #fff;
  line-height: 1.15;
  transition: color .3s ease, font-size .3s ease;
  /* break across two lines: "Set You Free" / "Counselling" */
  max-width: 160px;
}

.site-header.scrolled .nav-logo-text {
  font-size: var(--text-lg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: .02em;
  transition: color .2s;
}

.nav-link:hover { color: #fff; }

.nav-cta { margin-left: var(--sp-5); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-2);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.site-header.scrolled .nav-hamburger span { background: var(--neutral-800); }

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--neutral-900);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  font-size: var(--text-3xl);
  color: #fff;
}

.mobile-menu .btn {
  margin-top: var(--sp-3);
}

/* Button responsive text */
.btn-text-short { display: none; }
.btn-text-full  { display: inline; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background-image:
    linear-gradient(
      to right,
      rgba(19,19,15,.75) 0%,
      rgba(19,19,15,.60) 45%,
      rgba(19,19,15,.15) 75%,
      rgba(19,19,15,.05) 100%
    ),
    url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-9);
  padding-block: var(--sp-12);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #333333;
  background: #CCFFFF;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  border: none;
  margin-bottom: var(--sp-6);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: #fff;
  max-width: 14ch;
  margin-bottom: var(--sp-5);
}

.hero-title em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,.85);
  max-width: 48ch;
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.hero-trust {
  margin-top: var(--sp-10);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  color: rgba(255,255,255,.65);
  font-size: var(--text-sm);
}

.hero-trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.2);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.hero-trust-item svg { width: 16px; height: 16px; color: var(--color-primary); }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--neutral-900);
  padding-block: var(--sp-6);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.75);
  font-size: var(--text-sm);
  font-weight: 500;
}

.trust-item svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-11);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

.about-badge {
  position: absolute;
  bottom: var(--sp-5);
  right: calc(-1 * var(--sp-6));
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-2);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 220px;
}

.about-badge svg { width: 32px; height: 32px; color: var(--color-primary); flex-shrink: 0; }

.about-badge-text { font-size: var(--text-xs); font-weight: 600; color: var(--neutral-700); line-height: 1.4; }

.about-content h2 { font-size: var(--text-4xl); margin-bottom: var(--sp-5); }

.about-content p { color: var(--neutral-600); margin-bottom: var(--sp-5); max-width: 52ch; }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: rgba(255,255,255,.75);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.about-credential {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--neutral-600);
}

.about-credential svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  border: 1px solid var(--neutral-200);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--neutral-300);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(182,192,40,.12), rgba(182,192,40,.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.service-icon svg { width: 24px; height: 24px; color: var(--color-primary-dark); }

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ============================================================
   SESSION TYPES
============================================================ */
.session-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

.session-card {
  display: flex;
  gap: var(--sp-5);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--neutral-200);
  align-items: flex-start;
  transition: box-shadow .25s ease;
}

.session-card:hover { box-shadow: var(--shadow-1); }

.session-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--neutral-900) 0%, #2d3a00 100%);
  border-color: transparent;
  color: rgba(255,255,255,.85);
}

.session-card--featured h3,
.session-card--featured p { color: inherit; }

.session-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(182,192,40,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.session-card--featured .session-icon { background: rgba(182,192,40,.2); }

.session-icon svg { width: 22px; height: 22px; color: var(--color-primary); }

.session-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-2); }
.session-card p  { font-size: var(--text-sm); color: var(--neutral-500); line-height: 1.6; }
.session-card--featured p { color: rgba(255,255,255,.7); }

/* ============================================================
   HOW IT WORKS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  counter-reset: steps;
}

.step-card {
  text-align: center;
  padding: var(--sp-6);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--neutral-900);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
}

.step-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.step-card p  { font-size: var(--text-sm); color: var(--neutral-500); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.testimonial-stars {
  display: flex;
  gap: var(--sp-1);
}

.testimonial-stars svg { width: 16px; height: 16px; color: var(--color-accent); fill: var(--color-accent); }

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--neutral-600);
  line-height: 1.7;
  flex: 1;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--neutral-200);
}

.testimonial-name { font-weight: 600; font-size: var(--text-sm); }
.testimonial-role { font-size: var(--text-xs); color: var(--neutral-400); }

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--neutral-800);
  transition: background .2s;
}

.faq-question:hover { background: rgba(0,0,0,.025); }

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--neutral-400);
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-base);
  color: var(--neutral-500);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: var(--sp-8);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-11);
  align-items: flex-start;
}

.contact-info h2 { font-size: var(--text-4xl); margin-bottom: var(--sp-5); }
.contact-info > p { color: var(--neutral-600); margin-bottom: var(--sp-7); max-width: 44ch; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--text-base);
  color: var(--neutral-700);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(182,192,40,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; color: var(--color-primary-dark); }

.contact-detail a:hover { color: var(--color-secondary); }

/* ---- Form ---- */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-2);
}

.contact-form-wrap h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-3); }

.form-intro {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--neutral-200);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--sp-2);
}

.form-control {
  width: 100%;
  height: 48px;
  padding-inline: var(--sp-4);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--neutral-800);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(182,192,40,.2);
}

.form-control::placeholder { color: var(--neutral-400); }

textarea.form-control {
  height: auto;
  padding-block: var(--sp-3);
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* Radio pill toggles */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.radio-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--neutral-200);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-600);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}

.radio-label svg { width: 14px; height: 14px; }

.radio-group:has(input[value="in-person"]:checked) ~ .radio-hint,
.radio-group:has(input:checked) ~ .radio-hint { display: block; }

.radio-group input[type="radio"]:checked + .radio-label {
  border-color: var(--color-secondary);
  background: rgba(213,74,2,.07);
  color: var(--color-secondary);
}

.radio-group input[type="radio"]:focus-visible + .radio-label {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--sp-1);
  display: none;
}

.form-field-error .form-control { border-color: var(--color-error); }
.form-field-error .form-error   { display: block; }

.form-submit-msg {
  display: none;
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  margin-top: var(--sp-4);
}

.form-submit-msg.success {
  background: rgba(76,175,80,.1);
  color: var(--color-success);
  border: 1px solid rgba(76,175,80,.25);
}

.form-submit-msg.error {
  background: rgba(229,62,62,.08);
  color: var(--color-error);
  border: 1px solid rgba(229,62,62,.2);
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--neutral-900) 0%, #1e2800 60%, #2d3a00 100%);
  padding-block: var(--sp-11);
  text-align: center;
}

.cta-banner h2 {
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: var(--text-lg);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--sp-7);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--neutral-900);
  padding-block: var(--sp-10);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-9);
}

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
  max-width: 36ch;
  line-height: 1.6;
}

.footer-logo { height: 120px; width: auto; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-col a:hover { color: var(--color-primary); }

.footer-crisis {
  margin-top: var(--sp-9);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.75);
}

.footer-crisis p { margin: 0; }
.footer-crisis p + p { margin-top: var(--sp-1); }
.footer-crisis a { color: var(--color-primary); text-decoration: none; }
.footer-crisis a:hover { text-decoration: underline; }

.footer-bottom {
  margin-top: var(--sp-9);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
}

/* ============================================================
   SECTION CTA (centered button below a grid)
============================================================ */
.section-cta {
  text-align: center;
  margin-top: var(--sp-9);
}

/* ============================================================
   BANNER IMAGE section
============================================================ */
.section--banner-image {
  padding-block: 0;          /* let the wrap control its own spacing */
}

.banner-image-wrap {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--sp-9);
  padding-block: var(--sp-9);
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  display: block;
}

@media (max-width: 767px) {
  .banner-image-wrap {
    padding-inline: var(--sp-4);
    padding-block: var(--sp-6);
  }

  .banner-image {
    border-radius: var(--radius-md);
  }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1023px) {
  :root {
    --section-pad-y: var(--sp-10);
  }

  .container { padding-inline: var(--sp-6); }
  .nav-inner  { padding-inline: var(--sp-6); }
  .hero-inner { padding-inline: var(--sp-6); }

  .nav-links { gap: var(--sp-4); }

  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid       { gap: var(--sp-9); }
  .about-badge      { right: 0; }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

@media (max-width: 767px) {
  :root {
    --section-pad-y: var(--sp-9);
    --nav-height: 64px;
    --nav-height-shrunk: 56px;
  }

  .container { padding-inline: var(--sp-4); }
  .nav-inner  { padding-inline: var(--sp-4); }
  .hero-inner { padding-inline: var(--sp-4); }

  .nav-logo-icon { height: 56px; }
  .nav-logo-text { font-size: var(--text-base); max-width: 130px; }

  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu   { display: flex; }

  .section-header h2 { font-size: var(--text-3xl); }
  .hero-title        { font-size: clamp(2rem, 8vw, 2.8rem); }

  .about-grid        { grid-template-columns: 1fr; }
  .about-badge       { right: var(--sp-4); bottom: var(--sp-4); }
  .services-grid     { grid-template-columns: 1fr; }
  .session-grid      { grid-template-columns: 1fr; }
  .session-card--featured { grid-column: span 1; }
  .steps-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr; gap: var(--sp-7); }
  .footer-bottom     { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-grid      { gap: var(--sp-8); }

  .btn--lg { width: 100%; justify-content: center; }
  .hero-actions .btn { flex: 1; min-width: 0; justify-content: center; }

  /* Hero trust: stack vertically, hide dividers */
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-top: var(--sp-7);
  }
  .hero-trust-divider { display: none; }

  /* Hero button text swap */
  .btn-text-full { display: none; }
  .btn-text-short { display: inline; }
}

@media (max-width: 480px) {
  :root { --section-pad-y: var(--sp-8); }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
  .nav-logo-text { display: none; }
}
