/* ═══════════════════════════════════════════════════════
   XPRÉSATE & CONECTA — Estilos compartidos
   Paleta: Manual de Marca oficial
   ═══════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────── */
:root {
  /* Paleta oficial del manual de marca */
  --teal:         #5895a3;
  --teal-dark:    #3d7585;
  --teal-deep:    #2a5e6d;
  --teal-light:   #80b3c0;
  --teal-faint:   #edf4f6;
  --rose:         #e3797f;
  --rose-dark:    #c95f65;
  --rose-light:   #f0adb1;
  --rose-faint:   #fdf0f1;
  --salmon:       #e38668;
  --salmon-dark:  #c96d50;
  --salmon-light: #edc4b2;
  --salmon-faint: #fdf5f0;
  --dark:         #323435;
  --dark2:        #252728;
  --dark3:        #1a1b1c;
  --white:        #ffffff;
  --cream:        #fafaf8;
  --cream-deep:   #f2ede6;
  --border:       #ddd8cf;
  --text:         #323435;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;

  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'Outfit', system-ui, sans-serif;

  --radius:    14px;
  --radius-sm:  8px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(50,52,53,.06);
  --shadow:    0 6px 24px rgba(50,52,53,.10);
  --shadow-lg: 0 16px 56px rgba(50,52,53,.14);
  --max-w: 1200px;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; font-weight: 400; }

/* ─── Layout ─────────────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.text-center  { text-align: center; }

/* ─── Section label ──────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-b);
  font-size: .72rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 26px; height: 2px;
  background: var(--teal); border-radius: 2px; flex-shrink: 0;
}
.section-label.rose   { color: var(--rose); }
.section-label.rose::before { background: var(--rose); }
.section-label.salmon { color: var(--salmon); }
.section-label.salmon::before { background: var(--salmon); }
.section-label.white  { color: rgba(255,255,255,.8); }
.section-label.white::before { background: rgba(255,255,255,.6); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-family: var(--font-b); font-size: .88rem;
  font-weight: 600; letter-spacing: .4px;
  transition: all .3s ease; white-space: nowrap;
}
.btn-teal {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 18px rgba(88,149,163,.35);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(88,149,163,.42); }
.btn-rose {
  background: var(--rose); color: var(--white);
  box-shadow: 0 4px 18px rgba(227,121,127,.35);
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-salmon {
  background: var(--salmon); color: var(--white);
  box-shadow: 0 4px 18px rgba(227,134,104,.35);
}
.btn-salmon:hover { background: var(--salmon-dark); transform: translateY(-2px); }
.btn-outline-teal {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-white {
  background: var(--white); color: var(--teal); font-weight: 600;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ─── Tags / Badges ──────────────────────────────────── */
.badge {
  display: inline-block; padding: 4px 13px; border-radius: 50px;
  font-family: var(--font-b); font-size: .7rem;
  font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
}
.badge-teal   { background: var(--teal-faint); color: var(--teal); }
.badge-rose   { background: var(--rose-faint); color: var(--rose); }
.badge-salmon { background: var(--salmon-faint); color: var(--salmon); }
.badge-dark   { background: rgba(50,52,53,.08); color: var(--dark); }
.badge-white  { background: rgba(255,255,255,.18); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.25); }

/* ─── Navigation ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(250,250,248,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(50,52,53,.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 1.25rem;
  font-weight: 700; color: var(--white);
  letter-spacing: .5px;
  transition: color .4s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  transition: opacity .3s;
}
nav.scrolled .nav-logo { color: var(--dark); }

/* Logo SVG inline */
.logo-svg { width: 36px; height: 42px; }

.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  padding: 6px 11px; border-radius: 50px;
  font-size: .83rem; font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: all .3s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(255,255,255,.15); color: var(--white); }
nav.scrolled .nav-links a { color: var(--text-muted); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { background: var(--teal-faint); color: var(--teal); }

.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-actions .btn { padding: 9px 22px; font-size: .83rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--white); transition: all .3s; }
nav.scrolled .hamburger span { background: var(--dark); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-family: var(--font-h); font-size: 2rem; font-weight: 600;
  color: rgba(255,255,255,.85); padding: 10px 20px; border-radius: 8px;
  transition: color .3s;
}
.mobile-drawer a:hover { color: var(--teal-light); }
.mobile-drawer .drawer-close {
  position: absolute; top: 22px; right: 24px;
  color: rgba(255,255,255,.5); font-size: 1.6rem;
  background: none; border: none; cursor: pointer;
}
.mobile-drawer .drawer-cta { margin-top: 16px; }

/* ─── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 40%, var(--teal) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,121,127,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 580px; font-size: 1.1rem; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.35); }

/* ─── Cards ──────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }

/* Course card (Fuel-style product card) */
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.course-card-thumb {
  width: 100%; aspect-ratio: 4/3; position: relative;
  overflow: hidden;
}
.course-card-thumb .thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; transition: transform .4s;
}
.course-card:hover .thumb-inner { transform: scale(1.05); }
.course-card-thumb .thumb-badge {
  position: absolute; top: 14px; left: 14px;
}
.course-card-thumb .thumb-type {
  position: absolute; top: 14px; right: 14px;
}
.course-card-body { padding: 22px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.course-card-cat { margin-bottom: 8px; }
.course-card-title {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 600;
  color: var(--dark); line-height: 1.3; margin-bottom: 10px;
}
.course-card-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.course-card-meta {
  display: flex; gap: 16px; margin-bottom: 18px;
  font-size: .8rem; color: var(--text-light);
}
.course-card-meta span { display: flex; align-items: center; gap: 5px; }
.course-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.course-card-plan { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.course-price {
  display: flex; align-items: baseline; gap: 6px;
}
.course-price-amount {
  font-size: 1.35rem; font-weight: 800; color: var(--dark); letter-spacing: -.02em; line-height: 1;
}
.course-price-currency { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.course-price-free {
  font-size: 1.1rem; font-weight: 800; color: var(--teal); letter-spacing: -.01em;
}

/* ─── Specialist card ─────────────────────────────────── */
.specialist-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-align: center;
  padding: 32px 24px;
  transition: transform .35s, box-shadow .35s;
}
.specialist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.specialist-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--teal-faint), var(--rose-faint));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; border: 3px solid var(--teal-light);
}
.specialist-name { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.specialist-role { font-size: .82rem; color: var(--teal); font-weight: 600; letter-spacing: .5px; margin-bottom: 12px; }
.specialist-bio  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Plan card ──────────────────────────────────────── */
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
  position: relative;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  background: linear-gradient(160deg, var(--teal-deep), var(--teal));
  border-color: var(--teal); color: var(--white);
  box-shadow: 0 20px 60px rgba(88,149,163,.35);
}
.plan-card.featured p { color: rgba(255,255,255,.7); }
.plan-badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--white);
  border-radius: 50px; padding: 5px 18px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
}
.plan-icon { font-size: 2.5rem; margin-bottom: 16px; }
.plan-name {
  font-family: var(--font-h); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: var(--white); }
.plan-tagline { font-size: .95rem; margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin: 20px 0; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,.2); }
.plan-features { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 13px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .93rem; color: var(--text-muted);
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,.8); }
.plan-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-faint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.plan-card.featured .plan-check { background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }
.plan-no {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,.04); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.plan-card.featured .plan-no { background: rgba(255,255,255,.08); color: rgba(255,255,255,.3); }
.plan-cta { margin-top: auto; }

/* ─── Episode card ───────────────────────────────────── */
.episode-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.episode-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--rose-light); }
.episode-thumb {
  width: 100%; aspect-ratio: 16/9; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  transition: all .3s; z-index: 1;
}
.episode-card:hover .play-btn { background: var(--teal); border-color: var(--teal); transform: scale(1.1); }
.ep-views {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  border-radius: 50px; padding: 3px 10px;
  font-size: .72rem; color: rgba(255,255,255,.9); font-weight: 600;
}
.ep-num {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal); border-radius: 50px; padding: 3px 10px;
  font-size: .72rem; color: var(--white); font-weight: 700; letter-spacing: .5px;
}
.episode-body { padding: 20px 20px 24px; }
.ep-guest { font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.ep-title { font-family: var(--font-h); font-size: 1.15rem; font-weight: 600; color: var(--dark); line-height: 1.35; margin-bottom: 10px; }
.ep-desc  { font-size: .88rem; color: var(--text-muted); }

/* ─── Forms ──────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .5px; color: var(--text-muted); margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 18px; border-radius: var(--radius-sm);
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text); font-size: .95rem; font-family: var(--font-b);
  transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(88,149,163,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

/* dark form variant */
.form-dark .form-group label { color: rgba(255,255,255,.6); }
.form-dark .form-group input,
.form-dark .form-group textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}
.form-dark .form-group input::placeholder,
.form-dark .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-dark .form-group input:focus,
.form-dark .form-group textarea:focus { border-color: var(--teal-light); box-shadow: 0 0 0 3px rgba(88,149,163,.2); }

/* ─── Grids ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: center; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }

/* ─── Scroll reveal animations ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.scale-up   { transform: scale(.94); }
.reveal.visible    { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; }
.d5 { transition-delay: .48s; }

/* ─── Footer ─────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  color: rgba(255,255,255,.42); font-size: .88rem;
  margin-top: 12px; margin-bottom: 24px; line-height: 1.7;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 1.2rem;
  font-weight: 700; color: var(--white);
}
.footer-logo .logo-txt span { color: var(--teal-light); }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: rgba(255,255,255,.55);
  transition: all .3s;
}
.social-icon:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--font-b); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,.9); margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: .88rem;
  color: rgba(255,255,255,.42); margin-bottom: 10px;
  transition: color .3s;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.42); margin-bottom: 12px;
}
.footer-contact-row .ico { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .78rem; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .3s; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ─── Trust bar ──────────────────────────────────────── */
.trust-bar { background: var(--dark2); padding: 20px 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .83rem; color: rgba(255,255,255,.6);
}
.trust-divider { width: 1px; height: 26px; background: rgba(255,255,255,.1); }

/* ─── Tabs / Filter bar ──────────────────────────────── */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  font-size: .83rem; font-weight: 600;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--teal); border-color: var(--teal); color: var(--white);
}

/* ─── FAQ Accordion ──────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none;
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 600;
  color: var(--dark); cursor: pointer; text-align: left; gap: 16px;
}
.faq-q .faq-icon { font-size: 1.1rem; color: var(--teal); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { color: var(--text-muted); }

/* ─── Stat numbers ───────────────────────────────────── */
.stat-num { font-family: var(--font-h); font-size: 3rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: .83rem; color: var(--text-muted); margin-top: 4px; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .grid-2, .grid-3, .grid-3-2, .grid-2-1 { grid-template-columns: 1fr; gap: 24px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .trust-divider { display: none; }
  .page-hero { padding: 120px 0 60px; }
  .filter-bar { justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ─── Utilities ──────────────────────────────────────── */
.bg-cream   { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-dark    { background: var(--dark); }
.bg-teal    { background: var(--teal); }
.bg-teal-faint { background: var(--teal-faint); }
.c-teal     { color: var(--teal); }
.c-rose     { color: var(--rose); }
.c-salmon   { color: var(--salmon); }
.c-white    { color: var(--white); }
.c-dark     { color: var(--dark); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }

/* ─── Nav: login + cart ──────────────────────────────── */
.btn-outline {
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.7); }
nav.scrolled .btn-outline { color: var(--dark); border-color: var(--border); }
nav.scrolled .btn-outline:hover { background: var(--teal-faint); color: var(--teal); border-color: var(--teal-light); }

.cart-icon {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: rgba(255,255,255,.85); transition: all .3s; cursor: pointer;
  flex-shrink: 0;
}
nav.scrolled .cart-icon { color: var(--dark); }
.cart-icon:hover { background: rgba(255,255,255,.12); color: var(--white); }
nav.scrolled .cart-icon:hover { background: var(--teal-faint); color: var(--teal); }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; border-radius: 50px;
  background: var(--rose); color: var(--white);
  font-size: .6rem; font-weight: 700; padding: 0 4px;
  display: none; align-items: center; justify-content: center;
  line-height: 1;
}
.cart-badge.has-items { display: flex; }

/* ─── Cart toast notification ───────────────────────── */
.cart-toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--dark); color: var(--white);
  border-radius: var(--radius); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg); font-size: .9rem;
  transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none; max-width: 340px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.cart-toast-msg { flex: 1; }
.cart-toast-msg strong { display: block; font-weight: 600; margin-bottom: 2px; }
.cart-toast-msg span { font-size: .8rem; color: rgba(255,255,255,.55); }
.cart-toast-cta {
  font-size: .78rem; font-weight: 600; color: var(--teal-light);
  white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.cart-toast-cta:hover { color: var(--teal); }
