/* ============================================
   YOUR CAREER TAILOR — Global Styles
   ============================================ */

:root {
  --black:       #050709;   /* Navbar, body text */
  --green:       #0b523d;   /* Primary 1 — dark section backgrounds */
  --green-2:     #0a5c45;   /* Primary 2 — hover states */
  --lime:        #f9ff9e;   /* Primary 3 — subtle accent */
  --lavender:    #c1d3ff;   /* Primary 4 — process section / cards */
  --red:         #ce4f3e;   /* Red — CTA buttons, accents */
  --gray-1:      #565758;   /* Medium gray */
  --gray-2:      #a6a6a6;   /* Light-medium gray */
  --gray-3:      #f1f1f1;   /* Near-white section backgrounds */
  --white:       #ffffff;
  --text:        #050709;
  --text-muted:  #565758;
  --border:      #d4d4d4;

  --font-sans:   'Lato', sans-serif;
  --font-serif:  'Nanum Myeongjo', serif;
  --font-mono:   'DM Mono', monospace;

  --max-full:    1280px;
  --max-mid:     960px;
  --max-narrow:  720px;

  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    4rem;
  --space-xl:    6rem;
  --space-2xl:   8rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container-full  { max-width: var(--max-full);   margin: 0 auto; padding: 0 2rem; }
.container       { max-width: var(--max-mid);    margin: 0 auto; padding: 0 2rem; }
.container-medium{ max-width: var(--max-narrow); margin: 0 auto; padding: 0 2rem; }
.section-spacing { padding: var(--space-xl) 0; }
.spacer          { height: 2rem; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }

.pre-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.work-process-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.about-center-content {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
}

.service-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.benefits-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.testimonial-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.paragraph          { font-size: 1rem; line-height: 1.75; }
.paragraph.larger   { font-size: 1.1rem; }
.paragraph.extra-space { margin-bottom: 1.5rem; }
.paragraph.text-center { text-align: center; }
.paragraph.left-align  { text-align: left; }

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-1);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.text-center { text-align: center; }
.left-align  { text-align: left; }

/* ============================================
   BUTTONS
   ============================================ */
.button-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  border: 2px solid var(--black);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.button-outline:hover { background: var(--black); color: var(--white); }

/* Use on dark-green backgrounds */
.button-outline.on-dark {
  border-color: var(--white);
  color: var(--white);
}
.button-outline.on-dark:hover { background: var(--white); color: var(--green); }

/* alias kept for backward compat */
.button-outline.dark { border-color: var(--green); color: var(--green); }
.button-outline.dark:hover { background: var(--green); color: var(--white); }

/* Pricing / discovery CTA — green */
.button-primary-2 {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}
.button-primary-2:hover { background: var(--green-2); }

/* Navbar CTA + hero CTA — red (darkened to #b8392e for 5.3:1 contrast) */
.button-primary-3,
.button-red {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  background: #b8392e;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}
.button-primary-3:hover,
.button-red:hover { background: #9e2d24; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  padding: 1.1rem 2rem;
}
.grid-nav {
  max-width: var(--max-full);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.brand .logo {
  height: 36px;
  width: auto;
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile menu toggle */
.menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  padding: 0.25rem;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}
.mobile-nav-overlay a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--gray-3);
  padding-top: calc(var(--space-2xl) + 60px);
  padding-bottom: var(--space-xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.grid-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-image-wrap {
  position: relative;
}
.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--white); }

.about-center-section {
  background: var(--white);
}
.about-center-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-center-wrap.extra-space { padding: var(--space-md) 0; }

/* ============================================
   SERVICE / QUESTIONS SECTION
   ============================================ */
.service-section { background: var(--gray-3); }
.service-section.home { background: var(--white); }

.grid-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.grid-services.padding-side { padding: 0 2rem; }

.service-content-wrap {
  padding-top: 1rem;
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
}
.service-description.home { margin-bottom: 1rem; }

/* List items with dot */
.about-center-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
}
.dotted {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ============================================
   BENEFITS SECTION (dark)
   ============================================ */
.benefits-section {
  background: var(--white);
}
.grid-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.grid-benefits.color {
  background: var(--green);
}
.grid-benefits.color .benefits-section-title { color: var(--white); }

.benefits-image-wrap { overflow: hidden; }
.benefits-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.benefit-content-wrap {
  padding: 4rem;
  background: var(--green);
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-top: 1rem;
}

/* ============================================
   TESTIMONIALS — SLIDER
   ============================================ */
.testimonial-section { background: var(--gray-3); }
.testimonial-section .section-title { margin-bottom: 3rem; }
.section-title { text-align: center; }

/* Slider shell */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide: image left, quote right */
.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 420px;
}
.testimonial-slide-image {
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.testimonial-slide-content {
  background: var(--white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.testimonial-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
}
.testimonial-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Controls: arrows + dots */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.testimonial-arrow {
  background: none;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.testimonial-arrow:hover {
  border-color: var(--black);
  background: var(--black);
}
.testimonial-arrow:hover svg { stroke: var(--white); }
.testimonial-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testimonial-dot.active {
  background: var(--black);
  transform: scale(1.3);
}

/* ============================================
   COACH DETAIL SECTION
   ============================================ */
.coach-detail-section {
  background: var(--gray-3);
  padding: var(--space-xl) 0;
}
.grid-coach-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.coach-detail-image { width: 100%; object-fit: cover; }

.about-wrap { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.about-wrap .about-title { margin-bottom: 1.5rem; }

/* Rich text / coach bio */
.about-tem.w-richtext { line-height: 1.8; }
.about-tem.w-richtext h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.about-tem.w-richtext p { margin-bottom: 0.75rem; }
.about-tem.w-richtext ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.about-tem.w-richtext li { margin-bottom: 0.5rem; }

/* ============================================
   WORK PROCESS — Card layout (modified)
   ============================================ */
.work-process-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}
.work-process-wrap { }
.work-process-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.work-process-description {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Three equal cards */
.grid-process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.process-card {
  background: var(--lavender);
  padding: 3rem 2.5rem;
  border-top: 3px solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.process-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
}
.process-card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}
.process-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.process-card-body ul li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.process-card-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* Pre-work note */
.prework-note {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--green);
  color: var(--white);
  border-left: 3px solid var(--lime);
}
.prework-note h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.prework-note p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* ============================================
   SPLIT BENEFIT SECTION
   ============================================ */
.split-benefit-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}
.grid-split-benefit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 2.5rem;
}
.split-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.split-benefit-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.divider.hide { display: none; }

/* ============================================
   PRICING SECTION (modified — 3 tiers)
   ============================================ */
.pricing-section {
  background: var(--green);
  padding: var(--space-xl) 0;
  color: var(--white);
  text-align: center;
}
.pricing-section .pre-title { color: rgba(255,255,255,0.8); }
.pricing-section .work-process-title { color: var(--white); }

.pricing-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.pricing-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.pricing-card.featured {
  border-color: var(--lime);
  background: rgba(255,255,255,0.1);
}
.pricing-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
}

.pricing-card-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.pricing-card-price {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.pricing-card-per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}
.pricing-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0.75rem 0;
}
.pricing-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pricing-card ul li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.pricing-card ul li::before {
  content: '–';
  color: var(--lime);
  flex-shrink: 0;
  font-weight: 700;
}
.pricing-card .button-primary-2 {
  margin-top: 1.5rem;
  width: 100%;
  text-align: center;
  background: var(--white);
  color: var(--green);
}
.pricing-card .button-primary-2:hover { background: var(--gray-3); }

.pricing-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
}

.pricing-includes {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  text-align: left;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
}
.pricing-includes h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.pricing-includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-includes ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.pricing-includes ul li::before {
  content: '✓';
  color: var(--lime);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   FOR / NOT-FOR SECTION
   ============================================ */
.for-section {
  background: var(--gray-3);
  padding: var(--space-xl) 0;
}
.grid-for {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { background: var(--white); padding: var(--space-xl) 0; }
.faq-section .section-title.text-center { margin-bottom: 3rem; }
.faq-wrap { display: flex; flex-direction: column; }

.accordion-item {
  border-top: 1px solid var(--border);
}
.accordion-item.last:last-child { border-bottom: 1px solid var(--border); }

.accordion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1rem;
  user-select: none;
}
.accordion-heading:hover .accordion-title { color: var(--red); }
.accordion-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s;
}

/* Plus/minus icon */
.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.accordion-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}
.accordion-icon::after {
  width: 2px;
  height: 16px;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}
.accordion-item.is-open .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-content-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.accordion-item.is-open .accordion-content-wrapper {
  max-height: 600px;
}
.accordion-content {
  padding: 0 2rem 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.accordion-content a { text-decoration: underline; }
.accordion-content a:hover { color: var(--red); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--green);
  padding: var(--space-xl) 0;
}
.grid-cta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.cta-image-wrap { overflow: hidden; }
.cta-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
}
.cta-title-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 280px;
}
.cta-title-wrap .paragraph { color: rgba(255,255,255,0.8); }

.thinner {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  text-align: center;
}
.thinner .paragraph { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.thinner a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .grid-hero          { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image         { height: 400px; }
  .grid-coach-detail  { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-benefits      { grid-template-columns: 1fr; }
  .benefits-image     { height: 400px; }
  .benefit-content-wrap { padding: 3rem 2rem; }
  .testimonial-slide  { grid-template-columns: 260px 1fr; }
  .testimonial-slide-content { padding: 2.5rem; }
  .grid-process-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .grid-split-benefit { grid-template-columns: repeat(2, 1fr); }
  .grid-for           { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-cta           { grid-template-columns: 1fr; }
  .cta-image-wrapper  { display: none; }
  .cta-image-wrapper:first-child { display: grid; }
  .grid-services      { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 767px) {
  :root { --space-xl: 4rem; }
  .mobile-hide     { display: none !important; }
  .desktop-hide    { display: block !important; }
  .menu-button     { display: flex; align-items: center; }
  .nav-menu        { display: none; }
  /* On mobile, stack image above quote in each slide */
  .testimonial-slide       { grid-template-columns: 1fr; min-height: auto; }
  .testimonial-slide-image { height: 260px; }
  .testimonial-slide-content { padding: 2rem; }
  .grid-split-benefit { grid-template-columns: 1fr; }
  .grid-cta        { grid-template-columns: 1fr; gap: 2rem; }
  .cta-image-wrapper { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .desktop-hide { display: none !important; }
}
