/* ========================================
   ESPAÑOL CON SABOR — Design System
   ======================================== */

/* --- Color Tokens --- */
:root {
  --cream: #FFF3D6;
  --cream-dark: #F5E8C0;
  --teal-deep: #0E5A60;
  --teal-mid: #2A9D8F;
  --teal-light: #3BBCAC;
  --gold: #F2B705;
  --gold-soft: #F2C94C;
  --gold-pale: #FDF3C8;
  --urgency: #FC2C54;
  --urgency-light: #FFF0F3;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F4;
  --gray-200: #E8E8E8;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --gray-800: #2A2A2A;

  /* Semantic */
  --bg: var(--cream);
  --nav-bg: var(--teal-deep);
  --text-primary: #1A3A3C;
  --text-secondary: #4A6A6C;
  --text-muted: #888888;
  --border: rgba(14,90,96,0.12);

  /* Spacing */
  --section-py: 80px;
  --container-max: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(14,90,96,0.08);
  --shadow-md: 0 8px 24px rgba(14,90,96,0.12);
  --shadow-lg: 0 16px 48px rgba(14,90,96,0.18);
  --shadow-gold: 0 8px 32px rgba(242,183,5,0.35);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
em { font-family: 'Lora', Georgia, serif; font-style: italic; }
strong { font-weight: 700; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Tab System --- */
.tab-content { display: none; animation: fadeInUp 0.4s var(--ease) both; }
.tab-content.active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   DISCOUNT BANNER
   ======================================== */
.discount-banner {
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
  transition: all 0.3s var(--ease);
}
.discount-banner {
  transition: opacity 0.35s ease, max-height 0.4s ease, padding 0.4s ease;
  max-height: 80px;
  overflow: hidden;
}
.discount-banner.hidden {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
.discount-icon { font-size: 1.1rem; }
.discount-code {
  background: var(--gold);
  color: var(--teal-deep);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.dismiss-btn {
  position: absolute;
  right: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.dismiss-btn:hover { color: white; background: rgba(255,255,255,0.15); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  background: var(--teal-deep);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 20px rgba(14,90,96,0.3);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(14,90,96,0.4); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active {
  color: var(--gold);
  background: rgba(242,183,5,0.12);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-nav-cta {
  background: var(--gold);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-bounce);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: slideDown 0.25s var(--ease);
}
.mobile-menu.open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.mobile-nav-link:hover { color: white; background: rgba(255,255,255,0.1); }

/* ========================================
   ACTIVITY TICKER
   ======================================== */
.activity-ticker {
  background: linear-gradient(90deg, #0A4A50 0%, var(--teal-mid) 100%);
  padding: 9px 24px;
  text-align: center;
}
.ticker-content { display: flex; align-items: center; justify-content: center; gap: 10px; }
.ticker-dot {
  width: 8px; height: 8px;
  background: var(--urgency);
  border-radius: 50%;
  animation: pulse-red 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,44,84,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(252,44,84,0); }
}
.ticker-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.83rem;
  font-weight: 500;
}

/* ========================================
   BUTTONS (Global)
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease-bounce);
  box-shadow: 0 4px 16px rgba(242,183,5,0.3);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, #F9C21A 0%, var(--gold) 100%);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-lg { font-size: 1.05rem; padding: 16px 32px; }
.btn-primary.btn-xl { font-size: 1.1rem; padding: 18px 40px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--teal-deep);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-secondary:hover { background: var(--teal-deep); color: var(--white); }
.btn-secondary.btn-lg { font-size: 1.05rem; padding: 16px 32px; }

/* ========================================
   SECTION HEADER (reusable)
   ======================================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(42,157,143,0.12);
  color: var(--teal-mid);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   HOME — HERO
   ======================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 120px);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
  box-sizing: border-box;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(42,157,143,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(242,183,5,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,157,143,0.1);
  color: var(--teal-mid);
  border: 1px solid rgba(42,157,143,0.25);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--teal-mid);
  border-radius: 50%;
  animation: pulse-teal 2s ease-in-out infinite;
}
@keyframes pulse-teal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,157,143,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(42,157,143,0); }
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  color: var(--teal-deep);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title em { color: var(--teal-mid); font-size: 0.95em; }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}
.hero-stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; display: block; }
.hero-divider { width: 1px; height: 40px; background: var(--border); }
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-guarantee {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
}
.hero-img:hover { transform: scale(1.02); }
.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.img-badge-icon { font-size: 1.8rem; }
.img-badge-title { display: block; font-weight: 700; font-size: 0.9rem; color: var(--teal-deep); }
.img-badge-sub { display: block; font-size: 0.75rem; color: var(--text-muted); }

/* ========================================
   HOME — PROMO BANNER
   ======================================== */
.promo-banner {
  background: linear-gradient(135deg, var(--urgency) 0%, #D91F46 100%);
  padding: 20px 24px;
}
.promo-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-left { display: flex; align-items: center; gap: 16px; }
.promo-fire { font-size: 2rem; animation: shake 1.5s ease-in-out infinite; }
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}
.promo-label { color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.promo-title { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-top: 2px; }
.promo-countdown { display: flex; align-items: center; gap: 8px; }
.countdown-unit { text-align: center; }
.countdown-num {
  display: block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  min-width: 52px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.countdown-label { font-size: 0.65rem; color: rgba(255,255,255,0.65); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; display: block; }
.countdown-sep { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; }
.btn-promo {
  background: var(--white);
  color: var(--urgency);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-bounce);
  white-space: nowrap;
  cursor: pointer;
}
.btn-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ========================================
   HOME — ACTIVITY CARD
   ======================================== */
.activity-section { padding: 32px 0; }
.activity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--urgency), var(--gold));
}
.activity-pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--urgency);
  animation: pulse-red 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.activity-info { flex: 1; }
.activity-count { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.activity-scarcity { font-size: 0.875rem; color: var(--urgency); font-weight: 600; }
.btn-activity-cta {
  background: var(--teal-deep);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-bounce);
  cursor: pointer;
  white-space: nowrap;
}
.btn-activity-cta:hover { background: var(--teal-mid); transform: translateY(-1px); }

/* ========================================
   HOME — HOW IT WORKS
   ======================================== */
.how-it-works { padding: var(--section-py) 0; }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal-deep));
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card:hover::before { transform: scaleX(1); }
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(14,90,96,0.07);
  line-height: 1;
  margin-bottom: -8px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  font-size: 1.8rem;
  color: var(--teal-mid);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ========================================
   HOME — TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rating-num { font-size: 1.3rem; font-weight: 800; color: var(--teal-deep); }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-meta { flex: 1; }
.testimonial-name { font-size: 0.95rem; color: var(--text-primary); display: block; }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 2px; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-badge {
  display: inline-block;
  background: rgba(42,157,143,0.08);
  color: var(--teal-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ========================================
   HOME — FINAL CTA
   ======================================== */
.final-cta {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0A4550 60%, var(--teal-mid) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '☕';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 180px;
  opacity: 0.04;
  transform: rotate(-15deg);
}
.final-cta-content { text-align: center; position: relative; z-index: 1; }
.final-cta-emoji { display: block; font-size: 3rem; margin-bottom: 16px; }
.final-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.final-cta-title em { color: var(--gold-soft); }
.final-cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.final-cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 20px; }

/* ========================================
   PAGE HERO (Blog, About, Book)
   ======================================== */
.page-hero {
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero--blog { background: linear-gradient(180deg, rgba(42,157,143,0.06) 0%, transparent 100%); }
.page-hero--about { background: linear-gradient(180deg, rgba(14,90,96,0.05) 0%, transparent 100%); }
.page-hero--book { background: linear-gradient(180deg, rgba(242,183,5,0.07) 0%, transparent 100%); }
.page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--teal-deep);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  margin-top: 12px;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.social-proof-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--urgency-light);
  border: 1px solid rgba(252,44,84,0.2);
  color: var(--urgency);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-top: 20px;
}
.sp-dot {
  width: 8px; height: 8px;
  background: var(--urgency);
  border-radius: 50%;
  animation: pulse-red 1.5s ease-in-out infinite;
}

/* ========================================
   BLOG
   ======================================== */
.blog-section { padding: 0 0 var(--section-py); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img-wrapper { position: relative; overflow: hidden; height: 200px; }
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.blog-author { font-size: 0.8rem; color: var(--teal-mid); font-weight: 600; }
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-title a { transition: color 0.2s; }
.blog-card-title a:hover { color: var(--teal-mid); }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--teal-mid);
  font-weight: 700;
  font-size: 0.875rem;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 8px; color: var(--teal-deep); }

/* Newsletter */
.blog-newsletter {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-content { display: flex; align-items: center; gap: 20px; flex: 1; }
.newsletter-emoji { font-size: 2.5rem; flex-shrink: 0; }
.newsletter-title { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.newsletter-sub { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.newsletter-form { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.newsletter-input {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  outline: none;
  min-width: 220px;
  transition: all 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.2); }
.btn-newsletter {
  background: var(--gold);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s var(--ease-bounce);
  white-space: nowrap;
}
.btn-newsletter:hover { background: var(--gold-soft); transform: translateY(-1px); }

/* ========================================
   ABOUT — FOUNDER
   ======================================== */
.founder-section { padding: var(--section-py) 0; }
.founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
}
.founder-img-wrapper { position: relative; }
.founder-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  object-fit: cover;
}
.founder-img-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--gold);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.founder-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.founder-title {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.credential-badge {
  background: rgba(42,157,143,0.1);
  color: var(--teal-mid);
  border: 1px solid rgba(42,157,143,0.2);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.founder-quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal-deep);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.founder-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }

/* ========================================
   ABOUT — PHILOSOPHY
   ======================================== */
.philosophy-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pillar-title { font-size: 1.15rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 10px; }
.pillar-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ========================================
   ABOUT — TEACHERS
   ======================================== */
.teachers-section { padding: var(--section-py) 0; }
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.teacher-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
}
.teacher-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.teacher-availability {
  background: var(--urgency);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 7px;
  letter-spacing: 0.03em;
}
.teacher-img-wrapper { height: 240px; overflow: hidden; }
.teacher-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.teacher-card:hover .teacher-img { transform: scale(1.05); }
.teacher-body { padding: 24px; }
.teacher-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.teacher-name { font-size: 1.15rem; font-weight: 700; color: var(--teal-deep); }
.teacher-city { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }
.teacher-rating { text-align: right; }
.t-stars { color: var(--gold); font-size: 0.85rem; display: block; }
.t-rating { font-size: 0.9rem; font-weight: 700; color: var(--teal-deep); }
.teacher-specialty { font-size: 0.82rem; color: var(--teal-mid); font-weight: 600; margin-bottom: 16px; }
.teacher-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(42,157,143,0.05);
  border-radius: var(--radius-sm);
}
.t-stat { flex: 1; text-align: center; }
.t-stat-num { display: block; font-size: 1.1rem; font-weight: 800; color: var(--teal-deep); }
.t-stat-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
.teacher-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.trust-badge {
  background: rgba(14,90,96,0.07);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(14,90,96,0.1);
}
.btn-book-teacher {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-bounce);
}
.btn-book-teacher:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* ========================================
   BOOK — PRICING
   ======================================== */
.pricing-section { padding: 0 0 var(--section-py); }
.trial-cta-bar {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  box-shadow: var(--shadow-md);
}
.trial-left { display: flex; align-items: center; gap: 20px; }
.trial-emoji { font-size: 2.5rem; }
.trial-label { color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.trial-title { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-top: 2px; }
.trial-sub { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 4px; }
.btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-bounce);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-trial:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.pricing-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-deep);
  text-align: center;
  margin-bottom: 8px;
}
.pricing-sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--popular {
  border: 2px solid var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, #FFFEF5 0%, var(--white) 100%);
}
.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.plan-header { text-align: center; margin-bottom: 28px; }
.plan-region { font-size: 0.85rem; font-weight: 700; color: var(--teal-mid); letter-spacing: 0.06em; margin-bottom: 8px; }
.plan-name { font-size: 1.15rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 6px; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--teal-deep); letter-spacing: -0.03em; }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.price-note { font-size: 0.78rem; color: var(--text-muted); }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.feature-item { font-size: 0.87rem; color: var(--text-secondary); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.feature-item.text-muted { color: var(--gray-400); }
.btn-plan {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s var(--ease-bounce);
  cursor: pointer;
}
.btn-plan--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--teal-deep);
  box-shadow: var(--shadow-gold);
}
.btn-plan--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(242,183,5,0.45); }
.btn-plan--outline {
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal-deep);
}
.btn-plan--outline:hover { background: var(--teal-deep); color: var(--white); }
.guarantee-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(90deg, rgba(14,90,96,0.04) 0%, rgba(42,157,143,0.04) 100%);
  border: 1px solid rgba(14,90,96,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

/* ========================================
   BOOK — STEPS
   ======================================== */
.booking-steps-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.booking-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.booking-step {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s var(--ease);
}
.booking-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.booking-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-deep);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.booking-step-icon { font-size: 2.2rem; margin-bottom: 12px; margin-top: 8px; }
.booking-step-title { font-size: 1.05rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 8px; }
.booking-step-desc { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }
.booking-step-arrow {
  font-size: 1.8rem;
  color: var(--teal-mid);
  opacity: 0.4;
  flex-shrink: 0;
}
.booking-cta-row { text-align: center; }

/* ========================================
   BOOK — FAQ
   ======================================== */
.faq-section { padding: var(--section-py) 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--teal-deep);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(14,90,96,0.03); }
.faq-question[aria-expanded="true"] { background: rgba(14,90,96,0.04); }
.faq-chevron {
  color: var(--teal-mid);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   FLOATING CTA BUTTON
   ======================================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(242,183,5,0.5), 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.25s var(--ease-bounce);
  text-decoration: none;
}
.floating-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(242,183,5,0.6), 0 8px 24px rgba(0,0,0,0.15);
}
.floating-cta-icon { font-size: 1.1rem; }
.floating-cta-pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  animation: pulse-float 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-float {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.12); }
}

/* ========================================
   TOAST
   ======================================== */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
  max-width: 300px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-logo-text { font-weight: 700; color: var(--white); }
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 20px; }
.footer-socials { display: flex; flex-direction: column; gap: 8px; }
.social-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  font-weight: 500;
}
.social-link:hover { color: var(--gold); }
.footer-col-title {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  font-weight: 500;
}
.footer-link:hover { color: var(--gold); }
.footer-link--highlight { color: var(--gold); }
.footer-contact { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.f-trust-badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal:hover { color: var(--gold); }

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  :root { --section-py: 60px; }
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-image-wrapper { order: -1; }
  .hero-img { height: 340px; }
  .hero-content { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .founder-card { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .founder-img-wrapper { max-width: 300px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .teachers-grid { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto 48px; }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-connector { text-align: center; transform: rotate(90deg); font-size: 1.4rem; }
  .booking-steps { flex-direction: column; }
  .booking-step-arrow { text-align: center; transform: rotate(90deg); }
}

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  :root { --section-py: 48px; }
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 20px; }
  .hero-img { height: 260px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary.btn-lg, .btn-secondary.btn-lg { justify-content: center; }
  .promo-inner { flex-direction: column; text-align: center; }
  .trial-cta-bar { flex-direction: column; text-align: center; padding: 28px 24px; }
  .trial-left { flex-direction: column; text-align: center; gap: 12px; }
  .blog-newsletter { flex-direction: column; padding: 32px 24px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-input { min-width: unset; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .discount-banner { flex-wrap: wrap; font-size: 0.8rem; gap: 8px; }
  .floating-cta-text { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; }
  .floating-cta-icon { font-size: 1.4rem; }
  .guarantee-bar { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-newsletter { padding: 28px 20px; }
  .container { padding: 0 16px; }
  .founder-card { padding: 24px; }
}

/* ========================================
   UTILITY
   ======================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* Scroll margin for sticky nav */
section[id] { scroll-margin-top: 80px; }
