/* ── VARIABLES ── */
:root {
  --warm-white: #FAF8F5;
  --soft-beige: #F2EDE6;
  --beige-mid: #E8E0D5;
  --sage: #7A9E7E;
  --sage-light: #A8C5AB;
  --sage-dark: #4E7A52;
  --charcoal: #2C2C2A;
  --charcoal-mid: #4A4A48;
  --charcoal-light: #6B6B69;
  --warm-gold: #C4955A;
  --warm-gold-light: #DDB87A;
  --blush: #E8C4B8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --nav-h: 68px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 4px rgba(44,44,42,0.08);
  --shadow-md: 0 4px 20px rgba(44,44,42,0.10);
  --shadow-lg: 0 8px 40px rgba(44,44,42,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.serif { font-family: var(--font-serif); }
h1,h2,h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { font-size: 1rem; color: var(--charcoal-mid); line-height: 1.75; }

/* ── UTILITIES ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 12px;
}
.divider {
  width: 48px; height: 1px;
  background: var(--warm-gold);
  display: block;
  margin: 16px auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--sage-dark); color: #fff; }
.btn-primary:hover { background: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-gold { background: var(--warm-gold); color: #fff; }
.btn-gold:hover { background: var(--warm-gold-light); }
.btn-white { background: var(--warm-white); color: var(--sage-dark); }
.btn-white:hover { background: var(--soft-beige); }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-sage {
  background: var(--sage-dark);
  color: #fff;
}

.btn-sage:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-new { background: var(--sage); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1160px;
  height: var(--nav-h);
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-xl);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 24px);
  left: 24px; right: 24px;
  background: var(--warm-white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-lg);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--soft-beige); }
.mobile-menu ul li a { display: block; padding: 13px 0; font-size: 15px; color: var(--charcoal); text-decoration: none; }
.mobile-menu .mobile-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .btn { justify-content: center; }

/* ── MOBILE STICKY CTA ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--beige-mid);
  padding: 12px 16px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(44,44,42,0.08);
}
.mobile-sticky .sticky-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-sticky .btn { justify-content: center; padding: 12px 16px; font-size: 13px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--soft-beige);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 520px; margin: 0 auto; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--charcoal); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 28s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 500; flex-shrink: 0; }
.marquee-track .dot { color: var(--warm-gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PROGRAM CARDS ── */
.program-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prog-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-thumb.t1 { background: linear-gradient(135deg, #E8D5C4 0%, #D4B896 100%); }
.prog-thumb.t2 { background: linear-gradient(135deg, #C5D9C6 0%, #A0C4A2 100%); }
.prog-thumb.t3 { background: linear-gradient(135deg, #E8C4C4 0%, #D4A0A0 100%); }
.prog-thumb.t4 { background: linear-gradient(135deg, #C4D0E8 0%, #A0B4D4 100%); }
.prog-thumb.t5 { background: linear-gradient(135deg, #E8E0C4 0%, #D4C6A0 100%); }
.prog-thumb.t6 { background: linear-gradient(135deg, #D9C5E8 0%, #C4A0D4 100%); }
.prog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--sage-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.prog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prog-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.prog-body p { font-size: 13px; margin-bottom: 16px; flex: 1; }
.prog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.prog-price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--sage-dark); }
.prog-type { font-size: 11px; color: var(--charcoal-light); background: var(--soft-beige); padding: 4px 10px; border-radius: 20px; }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-thumb { height: 200px; display: flex; align-items: center; justify-content: center; }
.blog-thumb.bt1 { background: linear-gradient(135deg, #C5D9C6 0%, #A8C4AA 100%); }
.blog-thumb.bt2 { background: linear-gradient(135deg, #E8D5C4 0%, #D4B896 100%); }
.blog-thumb.bt3 { background: linear-gradient(135deg, #E8E0C4 0%, #D4C6A0 100%); }
.blog-thumb.bt4 { background: linear-gradient(135deg, #C4D0E8 0%, #A0B4D4 100%); }
.blog-thumb.bt5 { background: linear-gradient(135deg, #E8C4C4 0%, #D4A0A0 100%); }
.blog-thumb.bt6 { background: linear-gradient(135deg, #D9C5E8 0%, #C4A0D4 100%); }
.blog-body { padding: 20px; flex: 1; }
.blog-cat { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 8px; display: block; }
.blog-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--charcoal-light); margin-top: 12px; }

/* ── SLIDER ── */
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.4s ease; }
.slide-item { min-width: calc(33.333% - 16px); margin-right: 24px; flex-shrink: 0; }
.slide-item .program-card,
.slide-item .blog-card { width: 100%; aspect-ratio: 1/1; }
.slide-item .prog-thumb,
.slide-item .blog-thumb { flex: 1; height: auto; }
.slide-item .prog-body p,
.slide-item .blog-body p { display: none; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--beige-mid);
  background: var(--warm-white);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all 0.2s;
  line-height: 1;
}
.slider-btn:hover { background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--beige-mid); cursor: pointer; transition: background 0.2s; border: none; }
.slider-dot.active { background: var(--sage-dark); }
.slide-item .resource-card { aspect-ratio: 1/1; justify-content: center; display: flex; flex-direction: column; }

/* ── RESOURCE CARDS ── */
.resource-card {
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
  cursor: pointer;
  background: var(--warm-white);
  height: 100%;
}
.resource-card:hover { border-color: var(--sage-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.resource-icon { width: 48px; height: 48px; background: var(--soft-beige); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.resource-card h4 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--charcoal); }
.resource-card p { font-size: 13px; color: var(--charcoal-light); }
.res-tag { font-size: 11px; font-weight: 500; color: var(--sage-dark); background: var(--soft-beige); padding: 4px 10px; border-radius: 20px; display: inline-block; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: var(--soft-beige); border-radius: var(--radius-lg); padding: 28px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 24px; font-family: var(--font-serif); font-size: 4rem; color: var(--sage-light); line-height: 1; opacity: 0.5; }
.stars { color: var(--warm-gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--charcoal-mid); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--beige-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.1rem; color: var(--sage-dark); flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.author-detail { font-size: 12px; color: var(--charcoal-light); }

/* ── BLOG FILTERS ── */
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 8px 18px; border-radius: 24px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--beige-mid); background: var(--warm-white); color: var(--charcoal-mid); cursor: pointer; transition: all 0.2s; font-family: var(--font-sans); }
.filter-btn:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
.filter-btn.active { background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }

/* ── QUIZ ── */
.quiz-section { background: var(--charcoal); padding: 100px 0; }
.quiz-inner { max-width: 680px; margin: 0 auto; }
.quiz-section .eyebrow { color: var(--sage-light); }
.quiz-section h2 { color: var(--warm-white); margin-bottom: 20px; }
.quiz-section > .container > .text-center p { color: rgba(250,248,245,0.65); margin-bottom: 40px; }
.quiz-card { background: rgba(250,248,245,0.05); border: 1px solid rgba(250,248,245,0.1); border-radius: var(--radius-xl); padding: 40px; }
.quiz-progress { margin-bottom: 32px; }
.quiz-progress-bar { height: 3px; background: rgba(250,248,245,0.15); border-radius: 2px; overflow: hidden; margin-bottom: 8px; }
.quiz-progress-fill { height: 100%; background: var(--sage-light); border-radius: 2px; transition: width 0.4s ease; }
.quiz-progress span { font-size: 12px; color: rgba(250,248,245,0.4); }
.quiz-question { color: var(--warm-white); font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { background: rgba(250,248,245,0.05); border: 1px solid rgba(250,248,245,0.12); border-radius: var(--radius-md); padding: 14px 18px; font-size: 14px; color: rgba(250,248,245,0.8); cursor: pointer; transition: all 0.2s; text-align: left; width: 100%; font-family: var(--font-sans); }
.quiz-option:hover { background: rgba(122,158,126,0.15); border-color: var(--sage-light); color: var(--warm-white); }
.quiz-option.selected { background: rgba(122,158,126,0.2); border-color: var(--sage-light); color: var(--warm-white); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.quiz-btn { background: var(--sage-dark); color: #fff; border: none; padding: 12px 24px; border-radius: 30px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: var(--font-sans); }
.quiz-btn:hover { background: var(--sage); }
.quiz-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.quiz-result { display: none; text-align: center; }
.quiz-result.show { display: block; }
.quiz-result h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--warm-white); margin-bottom: 16px; }
.quiz-result p { color: rgba(250,248,245,0.65); margin-bottom: 28px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--sage-dark); padding: 80px 0; }
.cta-banner h2 { color: var(--warm-white); margin-bottom: 16px; }
.cta-banner p { color: rgba(250,248,245,0.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── MODALS ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(44,44,42,0.6); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--warm-white); border-radius: var(--radius-xl); padding: 40px; width: 100%; max-width: 440px; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; color: var(--charcoal-light); font-size: 20px; line-height: 1; padding: 4px; }
.modal-box h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 8px; }
.modal-box p { font-size: 14px; color: var(--charcoal-light); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--charcoal-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--beige-mid); border-radius: var(--radius-md); font-size: 14px; font-family: var(--font-sans); background: var(--warm-white); color: var(--charcoal); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.modal-submit { width: 100%; background: var(--sage-dark); color: #fff; border: none; padding: 14px; border-radius: var(--radius-xl); font-size: 15px; font-weight: 500; cursor: pointer; font-family: var(--font-sans); margin-top: 4px; transition: background 0.2s; }
.modal-submit:hover { background: var(--sage); }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 60px 0 24px; color: rgba(250,248,245,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--warm-white); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(250,248,245,0.15); display: flex; align-items: center; justify-content: center; color: rgba(250,248,245,0.6); text-decoration: none; font-size: 14px; transition: all 0.2s; }
.social-link:hover { border-color: var(--sage-light); color: var(--sage-light); }
.footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,245,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(250,248,245,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--warm-white); }
.footer-bottom { border-top: 1px solid rgba(250,248,245,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }

/* ── WHATSAPP ── */
.whatsapp-btn { position: fixed; bottom: 90px; right: 20px; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.35); z-index: 990; text-decoration: none; transition: transform 0.2s; }
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ── COOKIE ── */
.cookie-banner { position: fixed; bottom: 80px; left: 20px; right: 20px; max-width: 480px; background: var(--charcoal); border-radius: var(--radius-lg); padding: 20px 24px; z-index: 995; box-shadow: var(--shadow-lg); display: flex; gap: 16px; align-items: flex-start; }
.cookie-banner p { font-size: 13px; color: rgba(250,248,245,0.7); flex: 1; }
.cookie-banner p a { color: var(--sage-light); }
.cookie-accept { background: var(--sage-dark); color: #fff; border: none; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; white-space: nowrap; font-family: var(--font-sans); }

/* ── DASHBOARD ── */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; padding-top: 0; }
.dash-sidebar { background: var(--charcoal); padding: 28px 0; position: fixed; top: 0; left: 0; width: 240px; height: 100vh; overflow-y: auto; z-index: 100; }
.dash-sidebar .sidebar-logo { font-family: var(--font-serif); font-size: 1.2rem; color: var(--warm-white); padding: 0 24px 28px; border-bottom: 1px solid rgba(250,248,245,0.08); margin-bottom: 20px; display: block; text-decoration: none; }
.sidebar-nav { list-style: none; }
.sidebar-nav li a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; font-size: 14px; color: rgba(250,248,245,0.6); text-decoration: none; transition: all 0.2s; }
.sidebar-nav li a:hover, .sidebar-nav li a.active { color: var(--warm-white); background: rgba(250,248,245,0.06); }
.sidebar-nav li a.active { border-left: 2px solid var(--sage-light); }
.sidebar-nav .nav-icon { font-size: 16px; width: 20px; text-align: center; }
.dash-content { margin-left: 240px; padding: 40px; background: var(--soft-beige); min-height: 100vh; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.dash-header h1 { font-size: 1.8rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 36px; }
.stat-card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.stat-card .stat-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--charcoal); }
.stat-card .stat-label { font-size: 13px; color: var(--charcoal-light); margin-top: 4px; }
.stat-card .stat-change { font-size: 12px; color: var(--sage-dark); margin-top: 8px; }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.dash-card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.dash-card h3 { font-size: 1.1rem; margin-bottom: 20px; color: var(--charcoal); }
.client-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--soft-beige); }
.client-row:last-child { border-bottom: none; }
.client-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--soft-beige); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; color: var(--sage-dark); flex-shrink: 0; }
.client-name { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.client-detail { font-size: 12px; color: var(--charcoal-light); }
.client-status { margin-left: auto; font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px; }
.status-active { background: #E8F5E9; color: #2E7D32; }
.status-pending { background: #FFF8E1; color: #F57F17; }
.status-new { background: #E3F2FD; color: #1565C0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { text-align: left; padding: 10px 14px; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-light); border-bottom: 1px solid var(--beige-mid); }
td { padding: 14px; border-bottom: 1px solid var(--soft-beige); color: var(--charcoal-mid); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--soft-beige); }

/* ── PROFILE ── */
.profile-layout { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.profile-header { display: flex; align-items: center; gap: 24px; background: var(--warm-white); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.profile-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--soft-beige); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 2rem; color: var(--sage-dark); flex-shrink: 0; }
.profile-name { font-family: var(--font-serif); font-size: 1.8rem; color: var(--charcoal); margin-bottom: 4px; }
.profile-email { font-size: 14px; color: var(--charcoal-light); }
.profile-badge { display: inline-block; background: var(--soft-beige); color: var(--sage-dark); font-size: 12px; font-weight: 500; padding: 4px 12px; border-radius: 20px; margin-top: 8px; }
.profile-section { background: var(--warm-white); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.profile-section h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--soft-beige); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-item label { display: block; font-size: 12px; font-weight: 500; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.info-item span { font-size: 14px; color: var(--charcoal); }
.progress-bar-wrap { margin-bottom: 16px; }
.progress-bar-wrap label { display: flex; justify-content: space-between; font-size: 13px; color: var(--charcoal-mid); margin-bottom: 6px; }
.progress-bar { height: 6px; background: var(--beige-mid); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--sage-dark); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { top: 12px; width: calc(100% - 32px); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-sticky { display: block; }
  .whatsapp-btn { bottom: 140px; }
  .cookie-banner { bottom: 140px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-content { margin-left: 0; padding: 24px 16px; }
  .slide-item { min-width: calc(50% - 12px); }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .slide-item { min-width: 100%; margin-right: 0; }
  .modal-box { padding: 28px 20px; }
  .profile-header { flex-direction: column; text-align: center; }
  .quiz-card { padding: 24px 20px; }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  width: 90%;
  max-width: 700px;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-channels{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-top:32px;
}

.contact-channel{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px;
    background:var(--warm-white);
    border-radius:16px;
    text-decoration:none;
    color:inherit;
    box-shadow:var(--shadow-sm);
}

.contact-channel-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    background:var(--soft-beige);
}

.contact-form{
    background:var(--warm-white);
    padding:32px;
    border-radius:24px;
    box-shadow:var(--shadow-md);
}

.form-group{
    margin-bottom:16px;
}

.form-label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    font-weight:500;
}

.form-input,
.form-select,
.form-textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid var(--beige-mid);
    border-radius:12px;
    font-family:var(--font-sans);
}

.form-textarea{
    min-height:120px;
    resize:vertical;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

/* FAQ */

.faq-grid{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-item{
  background:var(--warm-white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  text-align:left;
  font-size:16px;
  font-weight:500;
  color:var(--charcoal);
  font-family:var(--font-sans);
}

.faq-icon{
  font-size:22px;
  color:var(--sage-dark);
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer-inner{
  padding:0 24px 24px;
  color:var(--charcoal-mid);
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:500px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* TRANSFORMATIONS */

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

.transform-card{
  background:var(--warm-white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.transform-img-pair{
  height:220px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  background:var(--beige-mid);
}

.transform-before,
.transform-after{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:500;
  color:var(--charcoal-light);
}

.transform-divider{
  font-size:24px;
  color:var(--sage-dark);
}

.transform-body{
  padding:24px;
}

.transform-name{
  font-weight:600;
  margin-bottom:8px;
}

.transform-result{
  color:var(--sage-dark);
  font-size:14px;
  font-weight:500;
  margin-bottom:12px;
}

.transform-story{
  margin-bottom:16px;
}

.transform-time{
  font-size:13px;
  color:var(--charcoal-light);
}

@media(max-width:900px){

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

}

.stat-card[onclick]:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    transition: all 0.2s;
}