/* ═══════════════════════════════════════════════════
   Lahage Tutoring — Styles
   Design: Mimics Acctual.com clean aesthetic
   Colors: Forest, Brass, Offwhite, Linen, Sage
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Brand palette */
  --forest: #143D31;
  --forest-dark: #0F2922;
  --brass: #C5A059;
  --brass-light: #d4b574;
  --offwhite: #FCFAF7;
  --linen: #F2EFE9;
  --sage: #E9F0EE;

  /* Functional */
  --text-primary: #0F2922;
  --text-secondary: #4a6359;
  --text-muted: #5a6e67;
  --white: #ffffff;
  --border: #d6ddd9;

  /* Shadows (Acctual-style depth) */
  --shadow-sm: 0 1px 3px rgba(15, 41, 34, 0.06), 0 1px 2px rgba(15, 41, 34, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 41, 34, 0.08), 0 2px 4px rgba(15, 41, 34, 0.04);
  --shadow-lg: 0 12px 40px rgba(15, 41, 34, 0.1), 0 4px 12px rgba(15, 41, 34, 0.06);
  --shadow-xl: 0 24px 60px rgba(15, 41, 34, 0.12), 0 8px 24px rgba(15, 41, 34, 0.08);
  --shadow-glow: 0 0 40px rgba(197, 160, 89, 0.15);

  /* Typography */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--offwhite);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ── Brass & forest text glows ────────────────────── */
.section-label,
.nav__logo-tutoring,
.method__number,
.about__card-label,
.strip__item--highlight .strip__label,
.pricing__badge {
  text-shadow: 0 0 8px rgba(197, 160, 89, 0.4), 0 0 16px rgba(197, 160, 89, 0.2);
}

.method .section-label,
.method__number,
.nav__logo-tutoring {
  text-shadow: 0 0 6px rgba(197, 160, 89, 0.2), 0 0 12px rgba(197, 160, 89, 0.08);
}

.nav__logo-lahage,
.hero__title,
.section-title,
.problem__card h3,
.method__body h3,
.about__card-stat,
.pricing__price,
.footer__logo {
  text-shadow: 0 0 6px rgba(20, 61, 49, 0.2), 0 0 12px rgba(20, 61, 49, 0.08);
}

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Section Labels & Titles ───────────────────────── */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A7A3A;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title--large {
  font-size: clamp(36px, 6vw, 60px);
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--forest-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--border);
}

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

.btn--white {
  background: var(--white);
  color: var(--forest);
  box-shadow: var(--shadow-lg);
}

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

.btn--large {
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 14px;
}

.btn--small {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
}

.btn--full {
  width: 100%;
}

/* ── Fade-up animation ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s var(--ease), transform 1.5s var(--ease);
  transition-delay: var(--delay, 0s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Slide-in animations ─────────────────────────── */
.slide-in-left {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 3.5s var(--ease), transform 3.5s var(--ease);
  transition-delay: var(--delay, 0s);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 3.5s var(--ease), transform 3.5s var(--ease);
  transition-delay: var(--delay, 0s);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(252, 250, 247, 0.45);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom: 1px solid rgba(20, 61, 49, 0.06);
  transition: all 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(252, 250, 247, 0.72);
  backdrop-filter: blur(50px) saturate(200%);
  -webkit-backdrop-filter: blur(50px) saturate(200%);
  border-bottom: 1px solid rgba(20, 61, 49, 0.08);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.nav__logo-img {
  height: 48px;
  width: auto;
}

.nav__logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav__logo-lahage {
  color: var(--forest);
}

.nav__logo-tutoring {
  color: var(--brass);
}

.nav__links {
  display: flex;
  gap: 22px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brass);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav__phone:hover {
  color: var(--brass);
}

.nav__cta {
  background: var(--forest);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--offwhite);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

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

.mobile-menu__link {
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--sage) 50%, var(--offwhite) 100%);
}

/* Floating decorative images */
.hero__shape {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.hero__shape-img {
  width: 80px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(15, 41, 34, 0.6)) drop-shadow(0 6px 16px rgba(15, 41, 34, 0.4));
}

.hero__shape-img--desmos {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 40px;
  overflow: hidden;
  filter: none;
  box-shadow: 0 16px 40px rgba(15, 41, 34, 0.6), 0 6px 16px rgba(15, 41, 34, 0.4);
}

.hero__shape--4 {
  bottom: 18%;
  right: 12%;
  transform: rotate(30deg);
}


.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content--split {
  display: flex;
  align-items: center;
  gap: 60px;
  text-align: left;
}

.hero__text {
  flex: 1;
  min-width: 0;
}

.hero__headshot {
  flex-shrink: 0;
  width: 380px;
  overflow: hidden;
}

.hero__headshot-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -40px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(20, 61, 49, 0.08);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero__actions {
  margin-bottom: 20px;
}

.hero__proof {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero shapes scroll-away transition — will-change for GPU acceleration */
.hero__shape {
  will-change: transform, opacity;
}

/* ── Problem Section ───────────────────────────────── */
.problem {
  padding: clamp(40px, 5vw, 60px) 0 var(--section-pad);
  text-align: center;
  overflow: hidden;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.problem__card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  text-align: left;
  border: 1px solid rgba(20, 61, 49, 0.04);
}

.problem__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.problem__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--forest);
}

.problem__icon--desmos {
  background: transparent;
  padding: 0;
}

.problem__desmos-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
}

.problem__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.problem__card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Method Section ────────────────────────────────── */
.method {
  padding: var(--section-pad) 0;
  background: var(--forest-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.method::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.method .section-label {
  color: var(--brass);
}

.method .section-title {
  color: var(--white);
}

.method__timeline {
  margin-top: 56px;
  display: grid;
  gap: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.method__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
  text-align: left;
}

.method__step:last-child {
  border-bottom: none;
}

.method__number {
  font-size: 48px;
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0.8;
}

.method__body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.method__body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 500px;
}

/* ── Comparison Strip ──────────────────────────────── */
.strip {
  padding: 80px 0;
  background: var(--linen);
  overflow: hidden;
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.strip__item {
  text-align: center;
}

.strip__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.strip__value {
  display: block;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
}

.strip__detail {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.strip__item--highlight .strip__value {
  color: var(--forest);
}

.strip__item--highlight .strip__label {
  color: var(--brass);
}

.strip__divider {
  width: 2px;
  height: 80px;
  background: var(--border);
  border-radius: 2px;
}

/* ── Testimonials ──────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(20, 61, 49, 0.04);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
}

.testimonial-card__author span {
  font-weight: 600;
  font-size: 15px;
}

/* ── About ─────────────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  background: var(--sage);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__text .section-title {
  margin-bottom: 24px;
}

.about__text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__text .btn {
  margin-top: 16px;
}

.about__card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.about__card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about__card-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass);
  margin-bottom: 8px;
}

.about__card-stat {
  font-size: 44px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about__card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__card-details span {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.about__card-details span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.about__headshot-wrapper {
  width: 100%;
  max-width: 420px;
  max-height: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.about__headshot {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -12%;
}

.nav__cta-newsletter {
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
}

/* ── Pricing ───────────────────────────────────────── */
.pricing {
  padding: var(--section-pad) 0;
  text-align: center;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(20, 61, 49, 0.04);
  text-align: left;
  position: relative;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing__card--featured {
  border: 2px solid var(--forest);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing__card--featured:hover {
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.pricing__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brass);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pricing__card-header {
  padding: 40px 36px 24px;
}

.pricing__card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.pricing__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing__card-body {
  padding: 0 36px 36px;
}

.pricing__card-body ul {
  margin-bottom: 28px;
}

.pricing__card-body li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--linen);
  padding-left: 24px;
  position: relative;
}

.pricing__card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--brass);
}

.pricing__card-body li:last-child {
  border-bottom: none;
}

/* ── Newsletter ────────────────────────────────────── */
.newsletter {
  padding: 80px 0;
  background: var(--linen);
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.newsletter__text h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.newsletter__text p {
  font-size: 16px;
  color: var(--text-secondary);
}

.newsletter__form {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
}

.newsletter__input-group {
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 61, 49, 0.06);
}

.newsletter__input-group input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
}

.newsletter__input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter__input-group .btn {
  flex-shrink: 0;
}

.newsletter__disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: right;
}

/* ── FAQ ───────────────────────────────────────────── */
.faq {
  padding: var(--section-pad) 0;
  text-align: center;
}

.faq__list {
  margin-top: 48px;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq__item summary {
  padding: 24px 40px 24px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__item summary:hover {
  color: var(--forest);
}

.faq__item p {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  animation: faqOpen 0.3s var(--ease);
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Final CTA ─────────────────────────────────────── */
.cta {
  padding: var(--section-pad) 0;
}

.cta__inner {
  background: var(--forest-dark);
  border-radius: 32px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta__shape--1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  top: -60px;
  left: -60px;
}

.cta__shape--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

.cta__inner h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta__inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta__inner .btn {
  position: relative;
  z-index: 1;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  padding: 64px 0 32px;
  background: var(--offwhite);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--forest);
}

.footer__cal-btn {
  font-size: 15px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
  text-align: left;
}

.footer__cal-btn:hover {
  color: var(--forest);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--forest);
}

/* ── About Page: Hero ─────────────────────────────── */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--sage) 50%, var(--offwhite) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

.about-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(20, 61, 49, 0.08);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.about-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--forest-dark);
  margin-bottom: 20px;
  text-shadow: 0 0 6px rgba(20, 61, 49, 0.2), 0 0 12px rgba(20, 61, 49, 0.08);
}

.about-hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ── About Page: Frustration ─────────────────────── */
.about-frustration {
  padding: var(--section-pad) 0;
  text-align: center;
}

.about-frustration__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  text-align: left;
}

.about-frustration__col p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-frustration__col p:last-child {
  margin-bottom: 0;
}

/* ── About Page: Why Prep Fails ──────────────────── */
.about-why-fail {
  padding: var(--section-pad) 0;
  background: var(--forest-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-why-fail::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-why-fail .section-label {
  color: var(--brass);
}

.about-why-fail .section-title {
  color: var(--white);
}

.about-why-fail .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.about-why-fail__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 48px;
}

.about-why-fail__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.4s var(--ease);
}

.about-why-fail__card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.about-why-fail__card-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--brass);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8;
  text-shadow: 0 0 8px rgba(197, 160, 89, 0.4), 0 0 16px rgba(197, 160, 89, 0.2);
}

.about-why-fail__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-why-fail__card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.about-why-fail__bottom {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.about-why-fail__bottom em {
  color: var(--brass);
  font-style: italic;
}

/* ── About Page: Meet Jude ───────────────────────── */
.about-jude {
  padding: var(--section-pad) 0;
  background: var(--sage);
}

.about-jude__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-jude__headshot-wrapper {
  width: 100%;
  max-width: 420px;
  max-height: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.about-jude__headshot {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -12%;
}

.about-jude__text .section-title {
  margin-bottom: 24px;
}

.about-jude__text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-jude__location {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-top: 8px;
}

/* ── About Page: Our Teaching Style ─────────────── */
.about-teaching {
  padding: var(--section-pad) 0;
  text-align: center;
}

.about-teaching__content {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

.about-teaching__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-teaching__content p:last-child {
  margin-bottom: 0;
}

/* ── About Page: How This Is Different ──────────── */
.about-difference {
  padding: var(--section-pad) 0;
  background: var(--forest-dark);
  color: var(--white);
  text-align: center;
}

.about-difference .section-label {
  color: var(--brass);
}

.about-difference .section-title {
  color: var(--white);
}

.about-difference__table {
  margin-top: 56px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.about-difference__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.about-difference__row:last-child {
  margin-bottom: 0;
}

.about-difference__col {
  padding: 28px 24px;
  border-radius: 12px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}

.about-difference__col--other {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.about-difference__col--us {
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--white);
}

.about-difference__col-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--brass);
}

.about-difference__row:not(:first-child) .about-difference__col-label {
  display: none;
}

/* ── About Page: Active nav link ─────────────────── */
.nav__link--active {
  color: var(--text-primary) !important;
}

.nav__link--active::after {
  width: 100% !important;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .about-jude__visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

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

  .about-difference__row {
    gap: 16px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .hero__content--split {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero__headshot {
    width: 280px;
    order: -1;
  }
}

@media (max-width: 768px) {

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 140px 24px 80px;
  }

  .hero__shape-img {
    width: 50px;
  }


  .hide-mobile {
    display: none;
  }

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

  .method__step {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .method__number {
    font-size: 36px;
  }

  .strip__inner {
    flex-direction: column;
    gap: 32px;
  }

  .strip__divider {
    width: 80px;
    height: 2px;
  }

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

  .about-hero {
    padding: 140px 24px 72px;
  }

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

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

  .about-difference__row:not(:first-child) .about-difference__col-label {
    display: block;
  }

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

  .newsletter__form {
    width: 100%;
    max-width: 100%;
  }

  .newsletter__input-group {
    flex-direction: column;
  }

  .newsletter__disclaimer {
    text-align: center;
  }

  .cta__inner {
    padding: 56px 28px;
    border-radius: 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer__links {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 36px;
  }

  .hero__sub {
    font-size: 16px;
  }

  .btn--large {
    font-size: 15px;
    padding: 16px 28px;
  }

  .strip__value {
    font-size: 36px;
  }

  .about__card {
    padding: 36px 28px;
  }

  .about__card-stat {
    font-size: 36px;
  }

  .pricing__card-header {
    padding: 32px 28px 20px;
  }

  .pricing__card-body {
    padding: 0 28px 28px;
  }

  .pricing__price {
    font-size: 40px;
  }
}