/* ============================================
   Confidence Is Key Tutoring — Main Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --navy: #2C5282;
  --navy-mid: #2A4A75;
  --navy-light: #34609A;
  --blue: #3574C4;
  --blue-light: #4A8AD8;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-pale: rgba(196, 162, 101, 0.10);
  --cream: #F0F5FB;
  --mist: #E6EEF7;
  --white: #FFFFFF;
  --text-primary: #2C5282;
  --text-body: #4A6A8A;
  --text-muted: #7B94AE;
  --border: #D6E2F0;
  --border-light: #E2ECF5;
  --shadow-sm: 0 2px 8px rgba(11, 25, 48, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 25, 48, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 25, 48, 0.12);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

/* --- Layout --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 110px 0;
}

/* --- Labels --- */
.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.label-blue { color: var(--blue); }
.label-gold { color: var(--gold-light); }

.label-center {
  justify-content: center;
}

.label-center::before {
  display: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s;
  letter-spacing: 0.3px;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 2px rgba(11, 25, 48, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.header-logo img {
  height: 130px;
  width: auto;
  transition: height 0.3s;
}

.header.scrolled .header-logo img {
  height: 95px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.25s;
  position: relative;
}

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

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s;
  border-radius: 2px;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a.active {
  color: var(--navy);
  font-weight: 600;
}

.header-nav a.active::after {
  width: 100%;
}

.header-cta {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background: var(--navy);
  padding: 11px 24px;
  border-radius: var(--r-sm);
  transition: all 0.3s;
}

.header-cta:hover {
  background: var(--navy-mid);
}

.header-cta::after {
  display: none !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 10002;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 108, 176, 0.06) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-subtitle {
  max-width: 500px;
  font-size: 1.08rem;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  position: relative;
  z-index: 2;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  opacity: 0.3;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.hero-badge-top {
  top: 20px;
  right: -20px;
}

.hero-badge-bot {
  bottom: 30px;
  left: -20px;
  background: var(--white);
  color: var(--text-body);
  font-weight: 400;
  font-size: 0.82rem;
  max-width: 220px;
  line-height: 1.5;
}

/* ============================================
   ABOUT SECTION (Homepage & About page)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}

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

.about-photo-bg {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background: var(--gold-pale);
  border-radius: var(--r-lg);
}

.about-photo-wrap img {
  border-radius: var(--r-lg);
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ============================================
   PAIN POINTS SECTION
   ============================================ */
.pain {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pain::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 108, 176, 0.1) 0%, transparent 70%);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: 28px 24px;
}

.pain-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 12px 0 8px;
}

.pain-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(196, 162, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.scard {
  background: var(--cream);
  border: 2px solid var(--blue);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s;
}

.scard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.scard-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.scard-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.scard h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--navy);
}

.scard p {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.65;
}

.services-meta {
  text-align: center;
  margin-top: 32px;
}

.services-meta p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.services-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
}

/* ============================================
   VALUE STRIP — What's Included
   ============================================ */

.value-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}

.value-strip-inner {
  text-align: center;
}

.value-strip-heading {
  margin-bottom: 48px;
}

.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid #000;
  transition: all 0.35s;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(196, 162, 101, 0.15);
  border: 1px solid rgba(196, 162, 101, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

.value-item h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ============================================
   PRICING BLOCK — Value First
   ============================================ */

.pricing-block {
  text-align: center;
  margin-top: 48px;
  padding: 40px 32px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(196, 162, 101, 0.1);
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-amount span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-includes {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  transition: all 0.35s;
}

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

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tcard {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: all 0.35s;
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.tcard-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.tcard-body {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.tcard-body strong {
  color: var(--navy);
  font-weight: 600;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}

.tcard-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.tcard-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tcard-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
}

.tcard-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
}

.tcard-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--blue);
  font-weight: 500;
}

.tcard-verified svg {
  width: 12px;
  height: 12px;
  fill: var(--blue);
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.carousel-track.grabbing {
  cursor: grabbing;
  transition: none;
}

.carousel .tcard {
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 36px 32px;
  margin: 0;
}

.carousel .tcard:hover {
  transform: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.carousel-prev { left: -4px; }
.carousel-next { right: -4px; }

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.15);
}

@media (min-width: 769px) {
  .carousel .tcard {
    min-width: 50%;
  }
}

@media (min-width: 1025px) {
  .carousel .tcard {
    min-width: 33.333%;
  }
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 108, 176, 0.1) 0%, transparent 70%);
}

.cta-inner {
  max-width: 600px;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  padding: 160px 0 64px;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   CREDENTIALS (About page)
   ============================================ */
.credentials-section {
  position: relative;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.credentials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,82,130,0.92) 0%, rgba(26,58,92,0.95) 100%);
  z-index: 1;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cred-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

.cred-check-light {
  background: rgba(196, 162, 101, 0.2);
}

.cred-check-light svg {
  stroke: var(--gold-light);
}

/* ============================================
   SESSION CARDS (About page - approach)
   ============================================ */
.session-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.session-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.35s;
}

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

.session-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.session-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.session-card:hover .session-card-img img {
  transform: scale(1.05);
}

.session-card-body {
  padding: 20px;
}

.session-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.session-card-body p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================
   WHY SECTION (About page)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============================================
   METHODS (About page)
   ============================================ */
.method-grid {
  display: grid;
  gap: 14px;
}

.method-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 20px;
  transition: all 0.3s;
}

.method-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.method-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.method-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.method-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.method-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

/* ============================================
   RESULTS GRID (About page)
   ============================================ */
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s;
}

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

.result-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.result-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.result-card h3 {
  margin-bottom: 8px;
}

.result-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  background: var(--blue);
}

.faq-item.active .faq-toggle svg {
  stroke: #fff;
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 0 22px;
}

.faq-answer-inner p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================
   RESOURCES (Resources page)
   ============================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.resource-card {
  background: var(--white);
  border: 2px solid #000;
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all 0.35s;
}

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

.resource-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.resource-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.resource-link:hover {
  gap: 10px;
}

.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.resource-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196, 162, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.contact-card a {
  color: var(--gold-light);
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--gold);
}

/* ============================================
   CALENDLY EMBED
   ============================================ */
.calendly-embed-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  transition: color 0.3s;
}

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

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

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   SKIP LINK (Accessibility)
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 16px;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .session-grid {
    grid-template-columns: 1fr 1fr;
  }

  .result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Mobile Nav Overlay */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
    padding: 80px 40px 40px;
  }

  .header-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header-nav a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    padding: 14px 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.25s;
  }

  .header-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav.open a:nth-child(1) { transition-delay: 0.05s; }
  .header-nav.open a:nth-child(2) { transition-delay: 0.1s; }
  .header-nav.open a:nth-child(3) { transition-delay: 0.15s; }
  .header-nav.open a:nth-child(4) { transition-delay: 0.2s; }
  .header-nav.open a:nth-child(5) { transition-delay: 0.25s; }
  .header-nav.open a:nth-child(6) { transition-delay: 0.3s; }

  .header-nav a::after {
    display: none;
  }

  .header-nav a.active {
    color: var(--blue);
  }

  .header-nav .header-cta {
    margin-top: 16px;
    padding: 14px 32px;
    font-size: 0.92rem !important;
    width: auto;
    text-align: center;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Sections */
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }

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

  .hero-badge {
    display: none;
  }

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

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-strip {
    padding: 60px 0;
  }

  .value-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-block {
    padding: 32px 24px;
    margin-top: 36px;
  }

  .pricing-amount {
    font-size: 2.4rem;
  }

  .session-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .tgrid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 48px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .session-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

