@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────────────────── */
:root {
  --sage:        #7A9B7E;
  --sage-light:  #A8C4AC;
  --sage-muted:  #EAF0EB;
  --sage-dark:   #5A7A5E;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE8DF;
  --dark:        #2C2C2C;
  --mid:         #6B6B6B;
  --light:       #B8B3AC;
  --white:       #FFFFFF;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 1px 4px rgba(44,44,44,.06);
  --shadow-md: 0 4px 20px rgba(44,44,44,.08);
  --shadow-lg: 0 8px 40px rgba(44,44,44,.12);

  --trans: .25s ease;
}

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

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p  { font-size: 1rem; line-height: 1.75; color: var(--mid); }

/* ── LAYOUT ────────────────────────────────────────── */
.container  { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
.section    { padding-block: 100px; }
.section-sm { padding-block: 64px; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 500;
  letter-spacing: .02em;
  transition: all var(--trans);
  cursor: pointer;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border: 2px solid var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,122,94,.3);
}
.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid transparent;
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--sage); }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ── BADGE ─────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  background: var(--sage-muted);
  color: var(--sage-dark);
}

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,238,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--trans);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 600;
  color: var(--dark); white-space: nowrap;
}
.nav-logo span { color: var(--sage); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--mid);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--sage); background: var(--sage-muted); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all var(--trans);
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 72px);
  display: grid; align-items: center;
  background: linear-gradient(135deg, var(--cream) 60%, var(--sage-muted) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 40%, rgba(168,196,172,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding-block: 80px;
}
.hero-content { max-width: 560px; }
.hero-badge { margin-bottom: 24px; }
.hero-title { margin-bottom: 24px; color: var(--dark); }
.hero-title em { font-style: italic; color: var(--sage); display: block; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--mid); margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: .85rem; color: var(--light); }
.hero-image {
  aspect-ratio: 3/4; border-radius: var(--radius-xl);
  background: var(--sage-muted);
  position: relative; overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--sage-muted) 0%, var(--cream-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--sage);
}
.hero-image-placeholder svg { opacity: .4; }
.hero-image-placeholder p { font-size: .85rem; color: var(--sage-light); }
.hero-float {
  position: absolute; bottom: 32px; left: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 220px;
}
.hero-float-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--sage-muted); display: grid; place-items: center; flex-shrink: 0;
}
.hero-float-text strong { display: block; font-size: .9rem; color: var(--dark); }
.hero-float-text span  { font-size: .78rem; color: var(--mid); }

/* ── SYMPTOMS ──────────────────────────────────────── */
.symptoms { background: var(--white); }
.symptoms-header { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 64px; }
.symptoms-header p { font-size: 1.1rem; margin-top: 16px; }
.symptoms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 56px;
}
.symptom-card {
  padding: 28px; border-radius: var(--radius-md);
  background: var(--cream); border: 1px solid var(--cream-dark);
  transition: all var(--trans);
}
.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}
.symptom-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage-muted); display: grid; place-items: center; margin-bottom: 16px;
}
.symptom-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.symptom-card p  { font-size: .9rem; line-height: 1.6; }
.symptoms-message {
  text-align: center;
  padding: 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-muted), var(--cream));
  border: 1px solid rgba(122,155,126,.2);
  max-width: 720px; margin-inline: auto;
}
.symptoms-message p {
  font-family: var(--font-head); font-size: 1.35rem;
  font-style: italic; color: var(--dark); line-height: 1.6;
}
.symptoms-message span { display: block; margin-top: 8px; font-family: var(--font-body); font-size: .95rem; font-style: normal; color: var(--mid); }

/* ── ABOUT ─────────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  aspect-ratio: 4/5; border-radius: var(--radius-xl);
  overflow: hidden; background: var(--sage-muted);
}
.about-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #C8D9CA 0%, var(--sage-muted) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.about-image-placeholder svg { color: var(--sage); opacity: .5; }
.about-image-placeholder p { font-size: .85rem; color: var(--sage); }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--sage); color: var(--white);
  border-radius: var(--radius-md); padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge-float strong { display: block; font-size: 1.8rem; font-family: var(--font-head); }
.about-badge-float span { font-size: .8rem; opacity: .85; }
.about-content .badge { margin-bottom: 20px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-tools {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.tool-tag {
  padding: 8px 18px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--cream-dark);
  font-size: .85rem; font-weight: 500; color: var(--dark);
  transition: all var(--trans);
}
.tool-tag:hover { background: var(--sage-muted); border-color: var(--sage-light); color: var(--sage-dark); }

/* ── COURSES ───────────────────────────────────────── */
.courses { background: var(--white); }
.courses-header { text-align: center; margin-bottom: 20px; }
.courses-header p { font-size: 1.1rem; margin-top: 12px; max-width: 560px; margin-inline: auto; }
.courses-note {
  text-align: center; margin-bottom: 56px;
  padding: 14px 28px; border-radius: 100px;
  background: var(--sage-muted); display: inline-flex; gap: 8px; align-items: center;
  font-size: .9rem; color: var(--sage-dark); font-weight: 500;
}
.courses-note-wrap { text-align: center; }
.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.course-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--cream); border: 1px solid var(--cream-dark);
  transition: all var(--trans);
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-thumb {
  aspect-ratio: 16/9; background: var(--sage-muted);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.course-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.course-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
}
.course-tag.free { background: var(--sage); color: var(--white); }
.course-tag.paid { background: var(--dark); color: var(--white); }
.course-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.course-body p  { font-size: .9rem; flex: 1; margin-bottom: 20px; }
.course-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: .82rem; color: var(--light);
  margin-bottom: 20px;
}
.course-meta span { display: flex; align-items: center; gap: 4px; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--cream-dark);
}
.course-price { font-family: var(--font-head); font-size: 1.2rem; color: var(--dark); }
.course-price.free-price { color: var(--sage); font-size: 1rem; font-family: var(--font-body); font-weight: 600; }

/* ── PHILOSOPHY ────────────────────────────────────── */
.philosophy {
  background: var(--sage);
  color: var(--white);
}
.philosophy-header { text-align: center; margin-bottom: 64px; }
.philosophy-header h2 { color: var(--white); }
.philosophy-header p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-top: 12px; }
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  text-align: center; padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  transition: all var(--trans);
}
.pillar:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.pillar-number {
  font-family: var(--font-head); font-size: 3rem;
  color: rgba(255,255,255,.25); margin-bottom: 16px; display: block;
}
.pillar-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.pillar h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.pillar p  { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: all var(--trans);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: var(--sage); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-head); font-style: italic;
  font-size: 1.05rem; line-height: 1.7; color: var(--dark);
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage-muted); flex-shrink: 0;
  display: grid; place-items: center; color: var(--sage);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
}
.testimonial-info strong { display: block; font-size: .95rem; }
.testimonial-info span  { font-size: .82rem; color: var(--light); }

/* ── CTA SECTION ───────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-muted) 100%);
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; max-width: 500px; margin-inline: auto; margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-sub { margin-top: 16px; font-size: .85rem; color: var(--light); }

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding-block: 64px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: 12px; margin-bottom: 24px; }
.footer-logo {
  font-family: var(--font-head); font-size: 1.3rem;
  color: var(--white); margin-bottom: 4px;
}
.footer-logo span { color: var(--sage-light); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: rgba(255,255,255,.6); transition: all var(--trans);
}
.footer-social a:hover { background: var(--sage); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .88rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
}
.footer-bottom a { transition: color var(--trans); }
.footer-bottom a:hover { color: var(--sage-light); }

/* ── AUTH PAGES ────────────────────────────────────── */
.auth-page {
  min-height: 100vh; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-side {
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.06); top: -80px; right: -80px;
}
.auth-side::after {
  content: '';
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.04); bottom: -60px; left: -60px;
}
.auth-side-logo {
  font-family: var(--font-head); font-size: 1.8rem;
  color: var(--white); margin-bottom: 40px; position: relative; z-index: 1;
}
.auth-side-quote {
  font-family: var(--font-head); font-style: italic;
  font-size: 1.4rem; line-height: 1.6;
  color: var(--white); max-width: 380px; position: relative; z-index: 1;
}
.auth-side-sub { color: rgba(255,255,255,.7); margin-top: 16px; position: relative; z-index: 1; }
.auth-form-side {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 48px;
}
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-header { margin-bottom: 40px; }
.auth-header h2 { font-size: 1.9rem; margin-bottom: 8px; }
.auth-header p  { color: var(--mid); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .88rem; font-weight: 500;
  color: var(--dark); margin-bottom: 8px;
}
.form-group input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .95rem; color: var(--dark);
  background: var(--white); transition: all var(--trans);
  outline: none;
}
.form-group input:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,155,126,.12); }
.form-group input::placeholder { color: var(--light); }
.form-group .input-wrap { position: relative; }
.form-group .toggle-pw {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--light); cursor: pointer; transition: color var(--trans);
}
.form-group .toggle-pw:hover { color: var(--sage); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }
.form-footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--mid); }
.form-footer a { color: var(--sage); font-weight: 500; }
.form-footer a:hover { text-decoration: underline; }
.form-divider {
  display: flex; align-items: center; gap: 12px; margin-block: 24px;
  color: var(--light); font-size: .85rem;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--cream-dark);
}
.auth-back {
  position: absolute; top: 24px; left: 24px;
  display: flex; align-items: center; gap: 6px;
  font-size: .88rem; color: var(--mid);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--trans);
}
.auth-back:hover { color: var(--sage); background: var(--sage-muted); }

/* ── DASHBOARD ─────────────────────────────────────── */
.dash-layout { display: flex; min-height: 100vh; }
.dash-sidebar {
  width: 260px; flex-shrink: 0;
  background: var(--white); border-right: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.dash-sidebar-logo {
  padding: 28px 24px;
  font-family: var(--font-head); font-size: 1.2rem; color: var(--dark);
  border-bottom: 1px solid var(--cream-dark);
}
.dash-sidebar-logo span { color: var(--sage); }
.dash-nav { padding: 16px 12px; flex: 1; }
.dash-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  font-size: .92rem; font-weight: 500; color: var(--mid);
  transition: all var(--trans); margin-bottom: 4px;
  cursor: pointer;
}
.dash-nav-item:hover { background: var(--sage-muted); color: var(--sage-dark); }
.dash-nav-item.active { background: var(--sage-muted); color: var(--sage); }
.dash-nav-item svg { flex-shrink: 0; }
.dash-sidebar-user {
  padding: 20px; border-top: 1px solid var(--cream-dark);
  display: flex; align-items: center; gap: 12px;
}
.dash-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage-muted); display: grid; place-items: center;
  color: var(--sage); font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  flex-shrink: 0;
}
.dash-user-info strong { display: block; font-size: .9rem; color: var(--dark); }
.dash-user-info span  { font-size: .8rem; color: var(--light); }
.dash-main { flex: 1; background: var(--cream); overflow-y: auto; }
.dash-topbar {
  background: var(--white); border-bottom: 1px solid var(--cream-dark);
  padding: 20px 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-topbar h1 { font-size: 1.1rem; }
.dash-content { padding: 36px; }
.dash-welcome { margin-bottom: 40px; }
.dash-welcome h2 { font-size: 1.8rem; margin-bottom: 4px; }
.dash-welcome p   { color: var(--mid); }
.dash-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.stat-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px; border: 1px solid var(--cream-dark);
}
.stat-card .stat-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--sage-muted); display: grid; place-items: center;
  margin-bottom: 16px; color: var(--sage);
}
.stat-card strong { display: block; font-size: 1.8rem; font-family: var(--font-head); color: var(--dark); }
.stat-card span   { font-size: .85rem; color: var(--mid); }
.dash-section-title {
  font-size: 1.2rem; font-family: var(--font-head); color: var(--dark);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between;
}
.dash-section-title a { font-family: var(--font-body); font-size: .88rem; color: var(--sage); font-weight: 500; }
.dash-courses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.dash-course-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--cream-dark);
  transition: all var(--trans);
}
.dash-course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dash-course-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sage-muted), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.dash-course-body { padding: 20px; }
.dash-course-body h4 { font-size: 1rem; margin-bottom: 6px; }
.dash-course-body p  { font-size: .85rem; margin-bottom: 16px; }
.progress-bar { height: 6px; background: var(--cream-dark); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--sage); border-radius: 100px; transition: width .6s ease; }
.progress-label { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.progress-label span { font-size: .78rem; color: var(--mid); }
.progress-label strong { font-size: .78rem; color: var(--sage); }
.dash-course-footer {
  padding: 12px 20px; border-top: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.dash-course-footer .btn { padding: 8px 20px; font-size: .83rem; }
.dash-empty {
  grid-column: 1/-1; text-align: center; padding: 60px;
  border: 2px dashed var(--cream-dark); border-radius: var(--radius-lg);
  color: var(--mid);
}
.dash-empty svg { margin-inline: auto; margin-bottom: 16px; opacity: .4; }
.dash-empty h4 { font-family: var(--font-head); margin-bottom: 8px; color: var(--dark); }

/* ── MOBILE NAV ────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(44,44,44,.5); backdrop-filter: blur(4px);
}
.mobile-menu.open { display: flex; }
.mobile-menu-inner {
  margin-left: auto; background: var(--cream); width: 280px; height: 100%;
  padding: 32px 24px; display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-close {
  align-self: flex-end; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--cream-dark); margin-bottom: 16px;
  cursor: pointer; color: var(--dark); transition: all var(--trans);
}
.mobile-close:hover { background: var(--sage-muted); color: var(--sage); }
.mobile-menu-inner a {
  display: block; padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; color: var(--dark);
  transition: all var(--trans);
}
.mobile-menu-inner a:hover { background: var(--sage-muted); color: var(--sage); }
.mobile-menu-inner .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content      { max-width: 100%; }
  .hero-image        { max-width: 440px; margin-inline: auto; }
  .hero-sub          { margin-inline: auto; }
  .hero-actions      { justify-content: center; }
  .about-inner       { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap  { max-width: 440px; margin-inline: auto; }
  .footer-top        { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section    { padding-block: 64px; }
  .nav-links  { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .symptoms-grid      { grid-template-columns: 1fr 1fr; }
  .courses-grid       { grid-template-columns: 1fr; }
  .philosophy-grid    { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .footer-top         { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; }
  .auth-page          { grid-template-columns: 1fr; }
  .auth-side          { display: none; }
  .dash-sidebar       { display: none; }
  .dash-stats         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .symptoms-grid { grid-template-columns: 1fr; }
  .dash-stats    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
