:root {
  --green: #1f6f2d;
  --green-mid: #2f7f3b;
  --green-light: #6ee7b7;
  --green-btn: #1f6f2d;
  --green-pale: #eaf5ec;
  --dark: #111c14;
  --text: #1e2d22;
  --soft: #3f4f44;
  --border: #c7d6cc;
  --bg: #f7faf7;
  --white: #ffffff;
  --red: #c0392b;
  --amber: #b45309;
  --disabled-btn: #a7cbb0;
  --disabled-text: #1e2d22;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.h4 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.h5 {
  font-size: 0.75rem;
  font-weight: 500;
}

.h6 {
  font-size: 0.625rem;
  font-weight: 500;
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* SVG logo matching the app's circular emblem */
.logo-icon {
  width: 40px;
  height: 40px;
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--green-pale);
}

.lang-switcher {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: none;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--soft);
  transition: background 0.15s, border-color 0.15s;
}

.lang-btn:hover {
  background: var(--green-pale);
  border-color: rgba(45, 122, 58, 0.25);
  color: var(--green);
}

.lang-btn svg.chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.lang-switcher.open .lang-btn svg.chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 999;
  min-width: 100%;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--soft);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s;
}

.lang-option:hover {
  background: var(--green-pale);
  color: var(--green);
}

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

.btn-primary {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  background: var(--green-btn);
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(58, 170, 72, 0.3);
}

.btn-primary:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 64px);
  max-height: 760px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 60px;
  background: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-btn);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 1rem;
  color: var(--soft);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-personalisation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid rgba(45, 122, 58, 0.2);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
}

.hero-personalisation svg {
  flex-shrink: 0;
  color: var(--green-mid);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-hero {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: var(--green-btn);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(58, 170, 72, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-hero:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--soft);
  font-weight: 500;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--green-mid);
}

.hero-right {
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(58, 170, 72, 0.12) 0%, transparent 60%);
}

/* MOCK REPORT CARD */
.mock-report {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: floatUp 0.8s ease both;
}

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

.mock-header {
  background: var(--green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-header-left h2 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.mock-header-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  margin-top: 1px;
}

.mock-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mock-score .num {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #a8e6b0;
  line-height: 1;
}

.mock-score .lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-body {
  padding: 16px 20px;
}

.mock-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft);
  margin-bottom: 10px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mock-row:last-child {
  margin-bottom: 0;
}

.mock-label {
  font-size: 0.78rem;
  font-weight: 600;
  width: 78px;
  flex-shrink: 0;
}

.mock-track {
  flex: 1;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.mock-fill {
  height: 100%;
  border-radius: 3px;
}

.fill-red {
  background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.fill-amber {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.fill-green {
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

.mock-pct {
  font-size: 0.72rem;
  font-weight: 700;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.pct-red {
  color: var(--red);
}

.pct-amber {
  color: var(--amber);
}

.pct-green {
  color: var(--green);
}

.mock-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.mock-nova {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nova-bar {
  flex: 1;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}

.nova-seg {
  height: 100%;
}

.nova-mini-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nova-dot-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: var(--soft);
}

.nova-dot {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how {
  background: var(--bg);
  padding: 80px 60px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
}

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

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.step:hover {
  box-shadow: 0 8px 32px rgba(45, 122, 58, 0.1);
  transform: translateY(-3px);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--soft);
  line-height: 1.6;
}

/* ── FEATURES ─────────────────────────────────────────── */
.features {
  padding: 80px 60px;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feat-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feat-card:hover {
  box-shadow: 0 8px 32px rgba(45, 122, 58, 0.08);
  transform: translateY(-3px);
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feat-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.8rem;
  color: var(--soft);
  line-height: 1.6;
}

/* ── AI BANNER ────────────────────────────────────────── */
.ai-banner {
  background: var(--dark);
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ai-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ai-spark {
  width: 36px;
  height: 36px;
  background: rgba(92, 181, 106, 0.12);
  border: 1px solid rgba(92, 181, 106, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ai-banner-left h2 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ai-banner-left h2 em {
  font-style: italic;
  color: var(--green-light);
}

.ai-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.ai-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
}

.ai-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── REPORT PREVIEW ───────────────────────────────────── */
.preview {
  background: var(--green);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preview-text h2 {
  font-family: 'Lora', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.preview-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.90);
}

.check-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}

/* MOCK REPORT HISTORY TABLE */
.mock-table-wrap {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.mock-table-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.mock-table-header h2 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.btn-new-report {
  background: var(--green-btn);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-new-report.disabled {
  background: var(--disabled-btn);
  color: var(--disabled-text);
  cursor: default;
}

.mock-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.mock-tbl th {
  background: #f9f9f9;
  padding: 9px 14px;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mock-tbl td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
}

.mock-tbl tr:last-child td {
  border-bottom: none;
}

.view-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.75rem;
}

.pdf-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.75rem;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  padding: 80px 60px;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tcard {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.tcard:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: #f59e0b;
  font-size: 0.9rem;
}

.tcard blockquote {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}

.tcard-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.tcard-person-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
}

.tcard-person-info span {
  font-size: 0.72rem;
  color: var(--soft);
}

/* ── COACHING ─────────────────────────────────────────── */
.coaching {
  padding: 80px 60px;
  background: var(--white);
}

.coaching-inner {
  background: linear-gradient(135deg, #f0faf2 0%, #e6f5e9 50%, #f7fdf8 100%);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.coaching-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 170, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.coaching-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.coaching-badge .sep {
  width: 1px;
  height: 12px;
  background: var(--border);
}

.coaching-badge .highlight {
  color: var(--green);
  font-weight: 800;
}

.coaching-text h2 {
  font-family: 'Lora', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.coaching-text h2 em {
  font-style: italic;
  color: var(--green);
}

.coaching-text p {
  font-size: 0.92rem;
  color: var(--soft);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 420px;
}

.coaching-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.coaching-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.5;
}

.coaching-points li .cp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid rgba(45, 122, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.coaching-disclaimer {
  font-size: 0.75rem;
  color: var(--soft);
  font-style: italic;
  margin-top: 8px;
}

.btn-coaching {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  background: var(--green);
  border: none;
  cursor: pointer;
  padding: 13px 26px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(45, 122, 58, 0.25);
}

.btn-coaching:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Coach card on the right */
.coaching-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coach-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.coach-card:hover {
  box-shadow: 0 8px 28px rgba(45, 122, 58, 0.1);
  transform: translateY(-2px);
}

.coach-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.coach-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid rgba(45, 122, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.coach-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.coach-info span {
  font-size: 0.75rem;
  color: var(--soft);
}

.coach-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--green-mid);
  font-weight: 600;
}

.coach-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-btn);
}

.coach-message {
  font-size: 0.8rem;
  color: var(--soft);
  line-height: 1.55;
  font-style: italic;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  border-left: 3px solid var(--green-light);
}

.coach-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.coach-cta-row span {
  font-size: 0.72rem;
  color: var(--soft);
}

.btn-contact-coach {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-pale);
  border: none;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-contact-coach:hover {
  background: var(--border);
}

.separate-service-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.75rem;
  color: var(--soft);
  line-height: 1.45;
}

.separate-service-note svg {
  flex-shrink: 0;
  color: var(--soft);
}

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--dark);
  padding: 52px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-strip p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

.btn-cta {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green);
  background: white;
  border: none;
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.btn-cta:hover {
  background: var(--green-pale);
  transform: translateY(-1px);
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--soft);
}

/* ── POLICY ───────────────────────────────────────────── */
.policy-hero {
  background: var(--green);
  padding: 56px 60px 48px;
}

.policy-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.policy-hero h1 {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.policy-hero-meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.policy-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 40px;
}

.policy-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 56px;
}

.policy-toc-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.policy-toc ol {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}

.policy-toc ol li {
  font-size: 0.85rem;
  color: var(--soft);
}

.policy-toc ol li a {
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s;
}

.policy-toc ol li a:hover {
  color: var(--green);
}

.policy-section {
  margin-bottom: 52px;
  scroll-margin-top: 80px;
}

.policy-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.policy-section h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 10px;
}

.policy-section p {
  font-size: 0.9rem;
  color: var(--soft);
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul, .policy-section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-section ul li, .policy-section ol li {
  font-size: 0.9rem;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 6px;
}

.policy-section a {
  color: var(--green);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-alert {
  display: flex;
  gap: 12px;
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
}

.policy-alert-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.policy-alert p {
  font-size: 0.85rem;
  color: #7a5c00;
  line-height: 1.6;
  margin: 0 !important;
}

.policy-info {
  display: flex;
  gap: 12px;
  background: var(--green-pale);
  border: 1px solid rgba(45, 122, 58, 0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0;
}

.policy-info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.policy-info p {
  font-size: 0.85rem;
  color: var(--green);
  line-height: 1.6;
  margin: 0 !important;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.policy-table thead tr {
  background: var(--bg);
}

.policy-table th {
  padding: 11px 16px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--soft);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.policy-table td {
  padding: 11px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  vertical-align: top;
}

.policy-table tbody tr:last-child td {
  border-bottom: none;
}

.policy-table tbody tr:hover {
  background: var(--bg);
}

.policy-contact-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 20px;
}

.policy-contact-box p {
  margin-bottom: 6px !important;
}

.policy-contact-box strong {
  color: var(--dark);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-drawer a:last-child {
  border-bottom: none;
}

.mobile-nav-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mobile-nav-actions a {
  flex: 1;
  text-align: center;
  padding: 12px !important;
  border-radius: 24px !important;
  border-bottom: none !important;
  font-weight: 700;
  text-decoration: none;
}

.btn-ghost-m {
  background: var(--green-pale);
  color: var(--green);
}

.btn-primary-m {
  background: var(--green-btn);
  color: white;
  box-shadow: 0 2px 8px rgba(58, 170, 72, 0.3);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.6s ease forwards;
}

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

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ── RESPONSIVE ───────────────────────────────────────── */

/* Laptop: ≤ 1280 */
@media (max-width: 1280px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-actions .lang-switcher {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  nav {
    padding: 13px 26px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }

  .hero-left {
    padding: 48px 24px 36px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-right {
    display: none;
  }

  .how, .features, .testimonials, .coaching {
    padding: 56px 24px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .preview {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 36px;
  }

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

  .coaching-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }

  .ai-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 16px;
  }

  .ai-divider {
    display: none;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 20px;
  }

  /* FOOTER — stack */
  footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .policy-hero {
    padding: 40px 24px 36px;
  }

  .policy-hero h1 {
    font-size: 1.9rem;
  }

  .policy-wrap {
    padding: 40px 24px;
  }

  .policy-toc ol {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    padding: 22px 20px;
  }

  .policy-contact-box {
    padding: 22px 20px;
  }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  nav {
    padding: 10px 18px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .btn-ghost {
    display: none;
  }

  .btn-primary {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .hero-left {
    padding: 36px 18px 32px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-hero {
    font-size: 0.9rem;
    padding: 12px 22px;
  }

  .hero-trust {
    gap: 14px;
  }

  .trust-item {
    font-size: 0.72rem;
  }

  .how, .features, .testimonials, .coaching {
    padding: 44px 18px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-sub {
    font-size: 0.88rem;
    margin-bottom: 32px;
  }

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

  .step {
    padding: 22px 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feat-card {
    padding: 20px 16px;
  }

  .ai-banner {
    padding: 22px 18px;
    gap: 14px;
  }

  .ai-banner-left h2 {
    font-size: 1.1rem;
    white-space: normal;
  }

  .ai-chips {
    gap: 8px;
  }

  .ai-chip {
    font-size: 0.72rem;
    padding: 5px 11px;
  }

  .preview {
    padding: 40px 18px;
    gap: 28px;
  }

  .preview-text h2 {
    font-size: 1.7rem;
  }

  .mock-table-wrap {
    overflow-x: auto;
  }

  .mock-tbl {
    min-width: 360px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tcard {
    padding: 20px 16px;
  }

  .coaching {
    padding: 36px 18px;
  }

  .coaching-inner {
    padding: 28px 20px;
    gap: 28px;
    border-radius: 16px;
  }

  .coaching-text h2 {
    font-size: 1.55rem;
  }

  .coaching-text p {
    max-width: none;
  }

  .coach-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-strip {
    padding: 36px 18px;
  }

  .cta-strip h2 {
    font-size: 1.5rem;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .policy-hero {
    padding: 32px 18px 28px;
  }

  .policy-hero h1 {
    font-size: 1.6rem;
  }

  .policy-wrap {
    padding: 32px 18px;
  }

  .policy-section h2 {
    font-size: 1.15rem;
  }
}
