/* ==========================================================
   THRIVING IN RELATIONSHIP — Sales Page
   Color Palette (from screenshot reference):
     Teal Deep:    #0e6e6e / #0d7a7a
     Teal Mid:     #4ec4c4 / #3ab5b5
     Teal Light:   #a8e6e6 / #d0f0f0
     Gold:         #c9a84c / #d4b250
     Gold Light:   #f0d070
     Cream/Light:  #fdf8f0 / #f5f0e8
     Warm White:   #fffdf8
     Dark:         #1a2a2a
     Text Body:    #3a3a3a
   ========================================================== */

/* ---- CUSTOM FONTS ---- */
@font-face {
  font-family: 'Sophisticated';
  src: url('../fonts/Sophisticated.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  color: #3a3a3a;
  background: #fffdf8;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-size: 44px;
  font-weight: normal;
  letter-spacing: 0.04em;
  text-align: center;
  color: #1a2a2a;
  margin-bottom: 0.6rem;
  text-transform: none;
}

.section-subtitle {
  text-align: center;
  color: #5a7a7a;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.lede {
  font-family: 'Lato', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.8;
  color: #2a4444;
  margin-bottom: 1.2rem;
  font-style: normal;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- CONTAINER ---- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- SECTIONS ---- */
.section--light  { background: #fffdf8; padding: 80px 0; }
.section--cream  { background: #f5f0e6; padding: 80px 0; }
.section--teal {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 80px 0;
}
.section--teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 50, 0.82);
  pointer-events: none;
}
.section--teal > .container { position: relative; z-index: 1; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--gold {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c55a 50%, #c9a84c 100%);
  color: #2a1a00;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, #d4b458 0%, #f0d060 50%, #d4b458 100%);
}

/* Gold outline — transparent centre, gold border + text */
.btn--gold-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.btn--gold-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.25);
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}

.btn--teal {
  background: linear-gradient(135deg, #0d9090 0%, #12b0b0 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13,144,144,0.4);
}
.btn--teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,144,144,0.55);
}

.btn--large  { padding: 18px 48px; font-size: 1.05rem; }
.btn--full   { display: block; width: 100%; text-align: center; }
.btn--hero   { padding: 16px 44px; font-size: 1rem; }

/* ---- WAVE DIVIDERS ---- */
.wave-divider { line-height: 0; position: relative; }
.wave-divider svg { display: block; width: 100%; height: 60px; }

.wave-divider--top { background: #fffdf8; }
.wave-divider--top svg { fill: #0a5e5e; transform: rotate(180deg); }

.wave-divider--teal-light { background: #0a5e5e; }
.wave-divider--teal-light svg { fill: #fffdf8; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(10,50,60,0.72) 0%, rgba(5,25,35,0.85) 100%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero__orb--left {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4ec4c4 0%, #0d8a8a 50%, transparent 100%);
  top: -100px; left: -150px;
}
.hero__orb--right {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #c9a84c 0%, #8a6a20 50%, transparent 100%);
  bottom: -80px; right: -100px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, 20px) scale(1.08); }
}

.hero__content { position: relative; z-index: 2; max-width: 820px; }

/* Logo image replacing text title */
.hero__logo-wrap {
  margin-bottom: 1.8rem;
}
.hero__logo {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
  animation: logoFadeIn 1.2s ease 0.5s both;
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile-only hero video — hidden on desktop */
.hero__mobile-video {
  display: none;
}

/* Desktop greeting video */
.greeting__video-desktop {
  display: block;
}

.hero__byline {
  font-family: 'Sophisticated', 'Playfair Display', serif;
  font-style: normal;
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  opacity: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1.5rem;
}

.hero__title-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: #a8e6e6;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.hero__title-main {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem);
  background: linear-gradient(135deg, #e8d070 0%, #c9a84c 40%, #f0e080 70%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.4));
}

.hero__tagline {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__price-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(168,230,230,0.8);
  letter-spacing: 0.05em;
}
.hero__price-note strong { color: #f0d070; }

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(168,230,230,0.8), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ==========================================================
   GREETING SECTION
   ========================================================== */
.greeting { padding: 80px 0 70px; }

.greeting__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 3rem;
}

/* Video */
.greeting__video-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(13,112,112,0.2);
  aspect-ratio: 16/9;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d5a5a 0%, #0a4040 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a8e6e6;
  min-height: 260px;
  cursor: pointer;
  transition: background 0.3s;
}
.video-placeholder:hover { background: linear-gradient(135deg, #117070 0%, #0d5050 100%); }
.video-placeholder__icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.85; }
.video-placeholder p { text-align: center; font-size: 1rem; opacity: 0.75; }
.video-placeholder span { font-style: italic; font-size: 0.9rem; }

/* Copy */
.greeting__copy em { color: #0d9090; font-style: italic; }
.greeting__copy strong { color: #0d5a5a; }

.greeting__heart {
  text-align: center;
  margin: 1.5rem 0;
}

/* Shared heart PNG icon style */
.heart-icon-img {
  width: 175px;
  height: 175px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ==========================================================
   PAIN BANNER
   ========================================================== */
.pain-banner {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 70px 0;
}
.pain-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 50, 0.78);
  pointer-events: none;
}
.pain-banner .container { position: relative; z-index: 1; }

.pain-banner__inner { text-align: center; }

.pain-banner__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}
.pain-banner__text em { color: #f0d070; font-style: normal; }
.pain-banner__text .fa-quote-left { color: rgba(255,255,255,0.3); margin-right: 0.5rem; font-size: 1.2rem; }

/* ==========================================================
   FEATURES / WHAT YOU WILL LEARN
   ========================================================== */
.features { padding-bottom: 90px; }

.features__heart-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

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

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(13,112,112,0.08);
  border: 1px solid rgba(78,196,196,0.15);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ec4c4, #c9a84c);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13,112,112,0.15);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(78,196,196,0.12) 0%, rgba(201,168,76,0.08) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: #0d9090;
}

.feature-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a3a;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.feature-card em { color: #0d8080; font-style: italic; }

/* ==========================================================
   QUOTE BANNER
   ========================================================== */
.quote-banner {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
}
.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 40, 50, 0.78);
  pointer-events: none;
}
.quote-banner .container { position: relative; z-index: 1; }

.quote-banner__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 1rem;
}

.quote-banner__attr {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #c9a84c;
  text-transform: uppercase;
}

/* Photo in About section */
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}

/* The ring now sizes to the natural oval photo */
.about__image-ring {
  width: 260px;
  height: 320px;           /* taller for oval portrait */
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #4ec4c4, #c9a84c);
  margin: 0 auto;
  overflow: hidden;
}

/* ==========================================================
   ABOUT SHEMS
   ========================================================== */
.about__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 3rem;
}

.about__image-wrap { position: relative; }

/* (about__image-ring now defined above with photo styles) */

.about__image-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6060 0%, #0a4a4a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a8e6e6;
}
.about__image-placeholder .fas { font-size: 5rem; margin-bottom: 0.8rem; opacity: 0.6; }
.about__image-placeholder p { font-size: 0.9rem; opacity: 0.7; font-style: italic; }

.about__badge {
  position: absolute;
  bottom: 0; right: 20px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #c9a84c, #e8c550);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  text-align: center;
  border: 3px solid #fff;
}
.about__badge-years {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a1a00;
  line-height: 1;
}
.about__badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: #2a1a00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.about__copy em { color: #0d8080; }
.about__copy strong { color: #0d5a5a; }

.about__bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about__bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #2a4040;
}
.about__bullets .fa-check-circle { color: #4ec4c4; font-size: 1rem; }

/* ==========================================================
   INSIDE THE COURSE
   ========================================================== */
.inside__modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
  align-items: stretch;
}

.module-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(13,112,112,0.08);
  border: 1px solid rgba(78,196,196,0.12);
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(13,112,112,0.14);
}

.module-card__num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4ec4c4, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 70px;
  padding-top: 4px;
  filter: drop-shadow(0 1px 4px rgba(78,196,196,0.3));
}

.module-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #1a3a3a;
  margin-bottom: 0.8rem;
}

.module-card__body p {
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.module-card__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.module-card__body li {
  font-size: 0.92rem;
  color: #3a6060;
  padding-left: 1.2rem;
  position: relative;
}
.module-card__body li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #c9a84c;
  font-size: 0.6rem;
  top: 5px;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { padding-bottom: 90px; }

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

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(13,112,112,0.08);
  border: 1px solid rgba(78,196,196,0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,112,112,0.13);
}

.testimonial-card__stars {
  color: #c9a84c;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testimonial-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.97rem;
  color: #3a3a3a;
  line-height: 1.75;
  flex: 1;
  margin: 0;
}
.testimonial-card__quote em { color: #0d8080; font-style: normal; font-weight: 600; }

.testimonial-card__name {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #888;
  margin: 0;
}

/* ==========================================================
   OFFER SECTION
   ========================================================== */
.offer { padding: 90px 0; }

.offer__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* Badge */
/* Offer logo */
.offer__logo-wrap {
  margin-bottom: 2rem;
}
.offer__logo {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.offer__copy {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.offer__copy strong { color: #f0d070; }

/* Includes */
.offer__includes h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8e6e6;
  margin-bottom: 0.8rem;
}
.offer__includes ul { display: flex; flex-direction: column; gap: 0.55rem; }
.offer__includes li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.97rem;
}
.offer__includes .fa-check {
  color: #4ec4c4;
  font-size: 0.85rem;
  min-width: 16px;
}

/* Offer card */
.offer__card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4ec4c4, #c9a84c, #4ec4c4);
}

.offer__card-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0d9090;
  margin-bottom: 0.5rem;
}

.offer__card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3a3a;
  margin-bottom: 0.3rem;
}

.offer__card-subtitle {
  font-style: italic;
  font-size: 0.92rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.offer__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.offer__price-old {
  font-size: 1.4rem;
  color: #bbb;
  text-decoration: line-through;
}
.offer__price {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}
.offer__price::before { content: '$'; font-size: 1.8rem; vertical-align: super; }

.offer__price-note {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.offer__cta-btn {
  font-size: 1rem !important;
  padding: 16px 28px !important;
  margin-bottom: 0.8rem;
}
.offer__cta-btn .fas { margin-right: 0.5rem; }

/* GHL embed form */
.offer__ghl-wrap {
  margin: 0 -8px 0.8rem;
  border-radius: 8px;
  overflow: hidden;
}

.offer__security {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}
.offer__security .fas { color: #4ec4c4; margin-right: 0.3rem; }

.offer__guarantee {
  background: rgba(78,196,196,0.06);
  border: 1px solid rgba(78,196,196,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
}
.offer__guarantee strong { color: #0d8080; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding-bottom: 90px; }

.faq__list {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(78,196,196,0.2);
}
.faq__item:first-child { border-top: 1px solid rgba(78,196,196,0.2); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #1a3a3a;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__question:hover { color: #0d8080; }
.faq__question[aria-expanded="true"] { color: #0d8080; }

.faq__icon {
  color: #4ec4c4;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

.faq__answer {
  display: none;
  padding: 0 8px 22px;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq__answer.is-open { display: block; }

/* ==========================================================
   FOOTER HERO REPEAT (reuses .hero styles, min-height shorter)
   ========================================================== */
.footer-hero-repeat {
  min-height: 80vh;
}
.footer-hero-repeat .hero__scroll-hint { display: none; }

/* ==========================================================
   SITE FOOTER
   ========================================================== */
.site-footer {
  background: #071a1a;
  padding: 28px 0;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
}
.site-footer__links a {
  font-size: 0.82rem;
  color: rgba(168,230,230,0.5);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.site-footer__links a:hover { color: #4ec4c4; }
.site-footer__copy {
  font-size: 0.78rem;
  color: rgba(168,230,230,0.3);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ==========================================================
   FADE-IN ANIMATIONS (JS-driven)
   ========================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .greeting__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 280px; margin: 0 auto 2rem; }
  .about__image-ring { width: 240px; height: 295px; }
  .offer__inner { grid-template-columns: 1fr; }
  .offer__right { max-width: 420px; margin: 0 auto; width: 100%; }
  .inside__modules { grid-template-columns: 1fr; }
  .module-card { flex-direction: column; gap: 16px; }
  .module-card__num { font-size: 2rem; }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  .section--light, .section--cream { padding: 60px 0; }
  .features__grid { grid-template-columns: 1fr; }
  .hero__logo { max-width: 320px; }
  .hero__tagline { font-size: 1rem; }
  /* Section headings 25% larger on mobile */
  .section-title { font-size: 55px; }
  .module-card { padding: 28px 24px; }
  .offer__card { padding: 32px 24px; }
  .site-footer__links { flex-direction: column; gap: 0.5rem; }
  .btn--hero { padding: 14px 32px; }
  /* Hero: reduced padding top by extra 100px, reduced space below price note */
  .hero { padding: 40px 20px 40px; }
  .hero__content { padding-top: 0; }
  .hero__byline { margin-top: -60px; }
  .hero__price-note { margin-bottom: -60px; }
  /* Center teal CTA button on mobile */
  .btn--teal { display: block; text-align: center; margin-left: auto; margin-right: auto; width: fit-content; }
  /* Show hero video on mobile, hide greeting video */
  .hero__mobile-video { display: block; margin: 1.2rem 0; }
  .greeting__video-desktop { display: none; }
}
