/* ===================================================
   LOEA — Marketing Landing Page
   =================================================== */

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

:root {
  --primary:     #1a2744;
  --accent:      #c8a84b;
  --indigo:      #6366f1;
  --bg:          #f8f9fc;
  --dark-text:   #1a2744;
  --gray-text:   #4a5568;
  --light-gray:  #e2e8f0;
  --white:       #ffffff;
  --shadow:      0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg:   0 10px 30px rgba(0, 0, 0, 0.12);
  --radius:      12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll-in animation utility */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}


/* ===================================================
   NAVIGATION
   =================================================== */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.1);
}

.navbar {
  padding: 0.9rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-text);
  text-decoration: none;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-cta-mobile {
  display: none;
}

.nav-lang-mobile {
  display: none;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  position: relative;
  white-space: nowrap;
}

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

.nav-link:hover {
  color: var(--accent);
}

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

.btn-nav-cta {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* Auth Buttons */
.nav-auth-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-nav-signin {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-nav-signin:hover {
  background: rgba(200, 168, 75, 0.1);
  color: var(--accent);
}

.btn-nav-signup {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  border: 2px solid var(--accent);
}

.btn-nav-signup:hover {
  background: #b0922f;
  border-color: #b0922f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 168, 75, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Language Selector Dropdown */
.lang-selector {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1.5px solid rgba(26, 39, 68, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.7rem 0.3rem 0.4rem;
  cursor: pointer;
  color: var(--gray-text);
  font-size: 0.82rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.lang-flag-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.lang-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
  color: var(--gray-text);
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  list-style: none;
  min-width: 90px;
  z-index: 200;
  padding: 0.3rem 0;
}

.lang-selector.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: var(--bg);
}

.lang-option.active {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .nav-auth-buttons {
    display: none;
  }

  .nav-cta-mobile {
    display: block !important;
  }
}


/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #b0922f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 75, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(26, 39, 68, 0.35);
}

.btn-secondary:hover {
  background: rgba(26, 39, 68, 0.06);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}

.btn-cta-final {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.btn-cta-final:hover {
  background: #b0922f;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 168, 75, 0.4);
}


/* ===================================================
   HERO
   =================================================== */
.hero {
  background:
    radial-gradient(ellipse 65% 55% at 8% 8%,   hsl(217 70% 85% / 0.52) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 88%,  hsl(43  85% 85% / 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 80% 12%,  hsl(200 55% 90% / 0.34) 0%, transparent 50%),
    linear-gradient(160deg, hsl(220 25% 98%) 0%, hsl(220 20% 97%) 50%, hsl(215 22% 96%) 100%);
  background-attachment: fixed;
  color: var(--primary);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.6);
  color: #8a6a1a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  animation: slideDown 0.75s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  animation: slideUp 0.75s ease-out 0.15s backwards;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: slideUp 0.75s ease-out 0.2s backwards;
}

.hero-bullets li {
  font-size: 1rem;
  opacity: 0.88;
  padding-left: 1.6rem;
  position: relative;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.hero-microcopy {
  font-size: 0.82rem;
  opacity: 0.5;
  margin-top: 0.9rem;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.75s ease-out 0.3s backwards;
}

/* Hero mock dashboard card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: slideUp 0.85s ease-out 0.25s backwards;
}

.mock-card {
  background: var(--white);
  border: 1px solid rgba(26, 39, 68, 0.09);
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  max-width: 375px;
  color: var(--primary);
  box-shadow: 0 24px 64px rgba(26, 39, 68, 0.12);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.mock-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mock-header-text {
  flex: 1;
}

.mock-name {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.mock-sub {
  font-size: 0.72rem;
  opacity: 0.65;
}

.mock-online {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
  flex-shrink: 0;
}

.mock-message {
  background: rgba(26, 39, 68, 0.04);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.2rem;
  opacity: 0.92;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.mock-stat {
  background: rgba(26, 39, 68, 0.05);
  border-radius: 8px;
  padding: 0.65rem 0.4rem;
  text-align: center;
}

.mock-stat-value {
  font-weight: 700;
  font-size: 0.92rem;
}

.mock-stat-label {
  font-size: 0.67rem;
  opacity: 0.6;
  margin-top: 0.2rem;
}

.mock-progress-label {
  font-size: 0.72rem;
  opacity: 0.65;
  margin-bottom: 0.5rem;
}

.mock-progress-bar {
  background: rgba(26, 39, 68, 0.1);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e8c860);
  border-radius: 100px;
}


/* ===================================================
   SOCIAL PROOF BAR
   =================================================== */
.social-proof {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1rem 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 1.5rem;
  color: var(--gray-text);
}

.social-proof-inner strong {
  color: var(--dark-text);
}

.proof-divider {
  color: var(--light-gray);
  font-size: 3rem;
  line-height: 1;
  user-select: none;
}


/* ===================================================
   SHARED SECTION STYLES
   =================================================== */
h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}


/* ===================================================
   FEATURES
   =================================================== */
.features {
  padding: 6rem 0;
  background: var(--bg);
}

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

.feature-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--dark-text);
}

.feature-card p {
  color: var(--gray-text);
  font-size: 0.93rem;
  line-height: 1.7;
}


/* ===================================================
   LOEA STORY
   =================================================== */

.loea-story {
  padding: 7rem 0 8rem;
  background: linear-gradient(135deg, var(--primary) 0%, #283b70 100%);
}

.loea-story-content {
  max-width: 620px;
  margin: 0 auto;
}

.loea-story-content h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.loea-story-content > p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.3rem;
}

.loea-saying {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 2rem 0;
}

.saying-hawaiian {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: normal;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.saying-translation {
  font-family: Georgia, 'Palatino Linotype', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(200, 168, 75, 0.9);
  letter-spacing: 0.01em;
}

.loea-story-closing {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .saying-hawaiian {
    font-size: 1.2rem;
  }
}


/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-it-works {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 65% 55% at 8% 8%,   hsl(217 70% 85% / 0.52) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 88%,  hsl(43  85% 85% / 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 80% 12%,  hsl(200 55% 90% / 0.34) 0%, transparent 50%),
    linear-gradient(160deg, hsl(220 25% 98%) 0%, hsl(220 20% 97%) 50%, hsl(215 22% 96%) 100%);
  background-attachment: fixed;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  display: none;
}

.step {
  background: var(--white);
  padding: 1.75rem 1.75rem 2rem;
  border-radius: var(--radius);
  text-align: left;
  border: 1px solid rgba(26, 39, 68, 0.08);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(200, 168, 75, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--dark-text);
}

.step p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.65;
}


/* ===================================================
   COACH PERSONAS
   =================================================== */
.coaches {
  padding: 6rem 0;
  background: linear-gradient(160deg, #111d35 0%, #1a2744 50%, #1e3160 100%);
}

.coaches h2 {
  color: var(--white);
}

.coaches .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Absolute-stack carousel — GSAP owns x / scale / opacity ── */
.coaches-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  height: 380px;
}

.coaches-track {
  position: relative;
  width: 460px;
  height: 340px;
  margin: 0 auto;
}

.coach-card {
  position: absolute;
  top: 0; left: 0;
  width: 460px;
  height: 340px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid rgba(200, 168, 75, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.coach-card.active {
  border-top-color: var(--accent);
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
}

.coach-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coach-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.coach-card-meta {
  flex: 1;
  min-width: 0;
}

.coach-card-body {
  flex: 1;
  min-width: 0;
}

/* ── Coaches Navigation (prev/next + dots) ── */
.coaches-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0 0;
}

.coach-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.coach-nav-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: scale(1.06);
}

.coach-nav-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.coach-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.coach-dot {
  height: 8px;
  width: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, width 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.coach-dot.active {
  background: var(--accent);
  width: 20px;
}

.detail-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 0.3rem;
}

.detail-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  background: rgba(200, 168, 75, 0.1);
  color: var(--accent);
  border: 1px solid rgba(200, 168, 75, 0.25);
  margin-bottom: 0.75rem;
}

.detail-description {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--gray-text);
  margin-bottom: 0.875rem;
}

.detail-ideal {
  background: #e2e2e2;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  display: inline-block;
}

.ideal-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  display: block;
  margin-bottom: 0.2rem;
}

.detail-ideal span:last-child {
  font-size: 0.9rem;
  color: var(--dark-text);
  font-weight: 600;
}


/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-quote {
  font-size: 0.97rem;
  color: var(--dark-text);
  line-height: 1.75;
  position: relative;
  padding-top: 1.75rem;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-size: 4rem;
  color: var(--accent);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  opacity: 0.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--dark-text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-text);
}


/* ===================================================
   PRICING
   =================================================== */

.pricing {
  padding: 6rem 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  margin-top: -0.75rem;
  padding-top: 2rem;
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.6rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--gray-text);
  font-weight: 400;
}

.pricing-tagline {
  font-size: 0.875rem;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
}

.pricing-features-intro {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.6rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  flex: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--gray-text);
  padding: 0.45rem 0 0.45rem 1.3rem;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.btn-pricing:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-pricing--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-pricing--featured:hover {
  background: #b8962e;
  border-color: #b8962e;
  color: var(--white);
}

.pricing-no-card {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-text);
  margin-top: 0.6rem;
  opacity: 0.75;
}

.pricing-payment-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-text);
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    margin-top: 0;
    order: -1;
  }
}


/* ===================================================
   FINAL CTA
   =================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, #283b70 100%);
  padding: 7rem 0;
  text-align: center;
  color: var(--white);
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
}

.cta-final p {
  font-size: 1.1rem;
  opacity: 0.82;
  margin-top: 0.75rem;
}

.cta-reassurance {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  opacity: 0.5;
  letter-spacing: 0.03em;
}


/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 6rem 0;
  background: var(--bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.35rem;
  color: var(--accent);
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark-text);
}

.contact-item p a,
.social-links-inline a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item p a:hover,
.social-links-inline a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.social-links-inline {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-links-inline a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--dark-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.visible {
  display: flex;
}


/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #f5f5f5;
  color: var(--dark-text);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  opacity: 0.35;
  text-align: center;
}


/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-25px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}


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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===================================================
   ABOUT PAGE
   =================================================== */

.about-intro {
  background: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.about-intro h1 {
  font-size: 2.4rem;
  color: var(--dark-text);
  max-width: 600px;
  margin: 1.25rem auto 1.25rem;
  line-height: 1.25;
}

.about-intro p {
  color: var(--gray-text);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.founders {
  padding: 5rem 0;
  background: var(--bg);
  text-align: center;
}

.founders h2 {
  margin-bottom: 3rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 840px;
  margin: 0 auto;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--light-gray);
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-initials {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-text);
}

.founder-card h3 {
  font-size: 1.3rem;
  color: var(--dark-text);
  margin-bottom: 0.25rem;
}

.founder-role {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.founder-card p {
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 340px;
}

.about-vision {
  background: var(--primary);
  padding: 5rem 0;
}

.about-vision-content {
  max-width: 620px;
  margin: 0 auto;
}

.about-vision h2 {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.about-vision p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-vision-closing {
  color: var(--accent) !important;
  font-style: italic;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ===================================================
   RESPONSIVE — iPad landscape (769px – 1024px)
   =================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-visual {
    display: flex;
  }

  .mock-card {
    transform: scale(0.88);
    transform-origin: top right;
  }
}

/* ===================================================
   RESPONSIVE — 1024px (tablet nav)
   =================================================== */
@media (max-width: 1024px) {

  .hamburger {
    display: flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid var(--light-gray);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    color: var(--dark-text);
  }

  .nav-link::after {
    display: none;
  }

  .lang-selector {
    display: none;
  }

  .nav-lang-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    border-top: 1px solid var(--light-gray);
    margin-top: 0.25rem;
  }
}

/* ===================================================
   RESPONSIVE — 768px (mobile)
   =================================================== */
@media (max-width: 768px) {

  /* Coaches Carousel - Mobile */
  .coaches-slider-wrapper { height: 430px; }
  .coaches-track          { width: 300px; height: 390px; }
  .coach-card             { width: 300px; height: 390px; padding: 1.25rem; gap: 1rem; }

  .coach-card-avatar {
    width: 56px;
    height: 56px;
  }

  .detail-name {
    font-size: 1.2rem;
  }

  .detail-description {
    font-size: 0.88rem;
  }

  .nav-cta-mobile {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-top: 0.5rem;
  }

  .nav-cta-mobile .btn-nav-cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
  }

  .nav-cta-mobile .btn-nav-signin,
  .nav-cta-mobile .btn-nav-signup {
    display: block;
    text-align: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .lang-selector {
    display: none;
  }

  .nav-lang-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    border-top: 1px solid var(--light-gray);
    margin-top: 0.25rem;
  }

  .lang-mobile-btn {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s;
  }

  .lang-mobile-btn:hover {
    color: var(--accent);
  }

  .lang-mobile-divider {
    color: var(--light-gray);
    font-size: 0.9rem;
  }

  /* Hero */
  .hero {
    padding: 4rem 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-bullets {
    text-align: left;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  /* Social proof */
  .proof-divider {
    display: none;
  }

  .social-proof-inner {
    gap: 0.6rem;
    font-size: 0.85rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  /* Personas */
  .personas-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .btn-cta-final {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* Contact */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 1.75rem;
  }

  .footer-social {
    flex-direction: row;
  }

  /* About page */
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

}