/* ============================================================
   My English Teacher — styles.css
   ============================================================ */

:root {
  --navy:       #0D0C52;
  --navy-mid:   #1a1875;
  --gold:       #C9A84C;
  --gold-light: #d9bc72;
  --white:      #FAFAF8;
  --charcoal:   #2C2C2C;
  --gray:       #6B6B6B;
  --gray-light: #9A9A9A;
  --tint:       #F2F1EC;
  --border:     #E5E4DE;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1080px;
  --nav-h: 76px;
  --ease:  0.25s ease;
}

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

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { line-height: 1.8; color: var(--gray); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  transition: border-color var(--ease);
}
.btn-ghost:hover { border-color: rgba(13,12,82,0.3); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ── Layout ──────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; }

.section-dark { background: var(--navy); }
.section-dark h2,
.section-dark h3       { color: #fff; }
.section-dark p,
.section-dark .section-sub { color: rgba(255,255,255,0.6); }
.section-dark .eyebrow { color: var(--gold); opacity: 0.9; }

.section-tint { background: var(--tint); }

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease), background-color 0.35s ease;
}
#navbar.scrolled {
  background: rgba(250,250,248,0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 28px rgba(13,12,82,0.07);
}
/* Nav text: white over dark hero, navy once scrolled onto light sections */
#navbar.scrolled .nav-links a          { color: var(--charcoal); }
#navbar.scrolled .nav-links a:hover    { color: var(--navy); }
#navbar.scrolled .nav-links a.active   { color: var(--navy); }
#navbar.scrolled .menu-toggle span     { background: var(--navy); }
#navbar.scrolled .nav-actions .btn-outline          { border-color: var(--navy); color: var(--navy); }
#navbar.scrolled .nav-actions .btn-outline:hover    { background: var(--navy); color: #fff; }
#navbar.scrolled .nav-actions .lang-select-wrapper::after { color: var(--gray); }
#navbar.scrolled .nav-actions #langSelect           { color: var(--charcoal); border-color: var(--border); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo — fades in once scrolled so it doesn't duplicate the hero brand */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#navbar.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
}
.logo-icon { height: 40px; width: auto; }

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links { display: flex; gap: 2rem; margin: 0 auto; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Lang select */
.lang-select-wrapper { position: relative; }
.lang-select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 0.5rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
/* Mobile menu lang select keeps dark styling (white background) */
.mobile-bottom .lang-select-wrapper::after { color: var(--gray); }
#langSelect, #langSelectMobile {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.42rem 1.5rem 0.42rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
}
/* Mobile select keeps dark styling */
#langSelectMobile { color: var(--charcoal); border-color: var(--border); }
#langSelect:hover, #langSelect:focus { border-color: rgba(255,255,255,0.55); outline: none; }
#langSelectMobile:hover, #langSelectMobile:focus { border-color: var(--navy); outline: none; }

/* Nav actions CTA — light over dark hero */
.nav-actions .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}
.nav-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.88);
  transition: transform var(--ease), opacity var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 8px 28px rgba(13,12,82,0.09);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul   { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu a    { font-size: 0.9rem; color: var(--charcoal); letter-spacing: 0.04em; }
.mobile-bottom    { display: flex; align-items: center; gap: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Hero brand — large logo moment */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.hero-logo-mark { height: 72px; width: auto; }
.hero-brand-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-brand-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Hero content */
.hero-content { max-width: 680px; }
#hero h1      { margin: 0.75rem 0 1.25rem; color: var(--white); }
.hero-sub     { font-size: 1.05rem; max-width: 520px; margin-bottom: 2rem; line-height: 1.85; color: rgba(255,255,255,0.62); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 2rem; }
/* Hero brand name — ivory on dark */
.hero-brand-name { color: var(--white); }
/* Hero primary CTA — gold on navy */
#hero .btn-primary { background: var(--gold); color: var(--navy); }
#hero .btn-primary:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
/* Hero ghost CTA — light text on dark */
#hero .btn-ghost { color: rgba(255,255,255,0.72); }
#hero .btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* Hero transformation example */
.hero-transform {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(250,250,248,0.97);
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.1rem 1.75rem;
  margin-top: 0.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.ht-before, .ht-after { display: flex; flex-direction: column; gap: 0.2rem; }
.ht-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.ht-before .ht-phrase {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gray);
  font-style: italic;
}
.ht-after .ht-phrase {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  font-style: italic;
}
.ht-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
}

/* Decorative background circle */
.hero-deco {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 55vw;
  max-width: 700px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.11) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1.25rem; }
.about-text em { color: var(--navy); font-style: italic; font-family: var(--serif); font-size: 1.05em; }
.about-text .btn-outline { margin-top: 0.75rem; }

.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--tint);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.photo-inner svg { width: 56px; height: 56px; opacity: 0.45; }
.photo-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* ── About stats row ─────────────────────────────────────── */
.about-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding-top: 3.5rem;
}
.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 2.5rem;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0.5rem 0;
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ── Who This Is For ─────────────────────────────────────── */
.who-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.who-check-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.who-list li {
  font-size: 1.025rem;
  color: var(--charcoal);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}
.who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.who-note {
  background: var(--navy);
  border-radius: 2px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.who-note-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.who-note p:last-child {
  font-size: 0.975rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
}
.who-closing {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  text-align: center;
  max-width: 680px;
  margin: 3rem auto 0;
  line-height: 1.65;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(13,12,82,0.09);
}
.pricing-card.pricing-featured {
  background: var(--navy);
  border-color: transparent;
  padding-top: 3.25rem;
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 0 0 3px 3px;
  white-space: nowrap;
}
.pricing-card-top { margin-bottom: 1.75rem; }
.pricing-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pricing-featured h3 { color: #fff; }
.pricing-tagline {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}
.pricing-featured .pricing-tagline { color: rgba(255,255,255,0.55); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}
.price-currency {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  align-self: flex-start;
  margin-top: 0.4rem;
}
.pricing-featured .price-currency { color: var(--gold); }
.price-amount {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.pricing-featured .price-amount { color: var(--gold); }
.price-period {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-left: 0.25rem;
}
.pricing-featured .price-period { color: rgba(255,255,255,0.45); }
.price-billing {
  font-size: 0.72rem;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.pricing-featured .price-billing { color: rgba(255,255,255,0.38); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.15em;
}
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.68); }
.pricing-cta {
  display: block;
  text-align: center;
}
.pricing-featured .btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.pricing-featured .btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
}
.pricing-featured .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.pricing-featured .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.pricing-credit {
  font-size: 0.76rem;
  color: var(--gold);
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
  font-style: italic;
}

/* ── Policy ──────────────────────────────────────────────── */
.policy-grid {
  max-width: 820px;
  margin: 0 auto;
}
.policy-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.policy-item:first-child {
  border-top: 1px solid var(--border);
}
.policy-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 0.2rem;
  line-height: 1.6;
}
.policy-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.policy-body > p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray);
}
.policy-body strong {
  color: var(--charcoal);
  font-weight: 500;
}
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.policy-list li {
  font-size: 0.92rem;
  color: var(--gray);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.65;
}
.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 300;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background var(--ease), border-color var(--ease);
}
.t-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.35);
}
.t-quote-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.t-quote {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.75rem;
}
.t-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.t-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.t-profession {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.t-origin {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── Method / Transformations ────────────────────────────── */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.transform-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--ease), background var(--ease);
}
.transform-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.4);
}

.tc-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.6rem;
}
.tc-before {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.tc-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.tc-divider::before,
.tc-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.tc-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.tc-after {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.method-note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ── Coaching Cards ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.card:hover {
  box-shadow: 0 4px 32px rgba(13,12,82,0.08);
  border-color: var(--gold);
}
.card-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.card-icon svg { width: 100%; height: 100%; }
.card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.card p  { font-size: 0.9rem; line-height: 1.8; }

/* ── Book ────────────────────────────────────────────────── */
/* Book steps */
.book-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.book-step {
  flex: 1;
  text-align: center;
}
.book-step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.book-step h4 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.book-step p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--gray);
}
.book-step-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.35;
  padding-top: 0.6rem;
  flex-shrink: 0;
}

.cal-wrapper { max-width: 860px; margin: 0 auto; }
.cal-placeholder {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 2px;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.cal-placeholder svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.7; }
.cal-placeholder p   { font-size: 0.95rem; }
.cal-note            { font-size: 0.8rem !important; color: var(--gray-light) !important; }
.book-alt            { text-align: center; margin-top: 3rem; }
.book-alt p          { margin-bottom: 1rem; font-size: 0.9rem; }

/* ── Resources ───────────────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.resource-card:hover {
  box-shadow: 0 4px 28px rgba(13,12,82,0.07);
  border-color: var(--gold);
}
.resource-icon      { flex-shrink: 0; width: 28px; height: 28px; color: var(--gold); margin-top: 3px; }
.resource-icon svg  { width: 100%; height: 100%; }
.resource-info h3   { font-size: 0.95rem; margin-bottom: 0.5rem; }
.resource-info p    { font-size: 0.84rem; margin-bottom: 0.85rem; line-height: 1.65; }
.resource-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: color var(--ease);
}
.resource-link:hover { color: var(--navy); }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--navy); padding: 4.5rem 0; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo-icon { height: 44px; width: auto; }
.footer-logo-link .logo-name { color: #fff; font-size: 1.3rem; }
.footer-logo-link .logo-sub  { color: var(--gold); }

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--gold); }
.footer-email {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.footer-email:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ── Scroll animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.transform-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.transform-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.transform-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.cards-grid     .fade-in:nth-child(2) { transition-delay: 0.1s; }
.cards-grid     .fade-in:nth-child(3) { transition-delay: 0.2s; }
.resources-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.resources-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1020px) {
  .transform-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-links                    { display: none; }
  .nav-actions .btn-primary     { display: none; }
  .nav-actions .lang-select-wrapper { display: none; }
  .menu-toggle                  { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { order: -1; max-width: 360px; width: 100%; margin: 0 auto; }

  .cards-grid        { grid-template-columns: 1fr; }
  .who-body          { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .resources-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-stats { gap: 0; }
  .stat-item   { padding: 0 1.5rem; }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  #hero   { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem; }

  .hero-logo-mark { height: 54px; }
  .hero-brand-name { font-size: 1.5rem; }

  .hero-transform {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .ht-arrow { transform: rotate(90deg); }

  .hero-actions { flex-direction: column; align-items: flex-start; }

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

  .resource-card { flex-direction: column; gap: 0.75rem; }
  .mobile-bottom { flex-direction: column; align-items: flex-start; }

  .book-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .book-step-arrow { transform: rotate(90deg); }

  .policy-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }
}

/* ── Download Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 12, 82, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--white);
  border-radius: 3px;
  padding: 3rem 2.75rem 2.5rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
  box-shadow: 0 32px 80px rgba(13,12,82,0.22);
}
.modal-overlay.is-open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-light);
  padding: 0.3rem;
  line-height: 1;
  transition: color var(--ease);
  border-radius: 2px;
}
.modal-close:hover { color: var(--navy); }
.modal-icon {
  width: 46px;
  height: 46px;
  background: var(--tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.modal-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.modal-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.modal-title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}
.modal-sub {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-field input {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.modal-field input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,12,82,0.07);
}
.modal-field input::placeholder { color: var(--gray-light); }
.modal-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 0.25rem;
  position: relative;
}
.submit-loading { display: none; }
.modal-submit.is-loading .submit-label  { opacity: 0; }
.modal-submit.is-loading .submit-loading { display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.modal-privacy {
  font-size: 0.73rem;
  color: var(--gray-light);
  text-align: center;
  margin-top: 0.15rem;
}
.modal-error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  text-align: center;
}
/* Success state */
.modal-success-state {
  display: none;
  text-align: center;
}
.modal-success-icon {
  width: 56px;
  height: 56px;
  background: #edf7f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.modal-success-icon svg {
  width: 26px;
  height: 26px;
  stroke: #27ae60;
}
.modal-success-state h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.modal-success-state p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.modal-success-note {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
}
.modal-done-btn { cursor: pointer; }
