:root {
  --bg: #faf8f6;
  --bg-soft: #fdfbf9;
  --card: #ffffff;
  --accent: #d4a5a5;
  --accent-2: #e8c4a0;
  --accent-3: #c9a6d4;
  --lilac: #c9a6d4;
  --lilac-dark: #a983c3;
  --lilac-light: #e1cfee;
  --rose: #d4a5a5;
  --rose-light: #e8c4c4;
  --rose-dark: #b88a8a;
  --rose-pale: #f5e4e4;
  --text: #6d4b8f;
  --text-secondary: #8a6ab3;
  --muted: #8b8b8b;
  --border: rgba(201, 166, 212, 0.22);
  --border-light: rgba(201, 166, 212, 0.12);
  --shadow: 0 8px 24px rgba(201, 166, 212, 0.16);
  --shadow-lg: 0 16px 48px rgba(201, 166, 212, 0.22);
  --shadow-sm: 0 4px 12px rgba(201, 166, 212, 0.12);
  --shadow-rose-md: 0 8px 20px rgba(212, 165, 165, 0.18);
  --shadow-rose-lg: 0 20px 50px rgba(212, 165, 165, 0.25);
  --shadow-lilac-md: 0 12px 32px rgba(201, 166, 212, 0.22);
  --shadow-lilac-lg: 0 20px 50px rgba(201, 166, 212, 0.28);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #faf8f6 0%, #fdfbf9 50%, #f8f4f0 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.015em;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
header { position: sticky; top: 0; z-index: 1020; }
.bg-brand { 
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 249, 0.9)); 
  backdrop-filter: blur(10px); 
  box-shadow: 0 4px 16px rgba(212, 165, 165, 0.1);
  padding: 0.5rem 0;
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
}
.navbar {
  display: flex !important;
  justify-content: center;
  width: 100%;
}
.navbar-collapse {
  flex-basis: auto;
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
.brand {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lilac);
  display: none;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: transparent;
  overflow: visible;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-wrapper:hover {
  transform: scale(1.05);
}
.navbar-logo {
  height: 70px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
}
header .navbar-nav { 
  gap: 0;
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
}
header .nav-item {
  display: flex;
  align-items: center;
}
header .nav-link {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: var(--transition);
}
header .nav-link:hover::after, header .nav-link.active::after { transform: scaleX(1); }
header .nav-link:hover, header .nav-link:focus { 
  background: rgba(201, 166, 212, 0.12); 
  color: var(--text); 
}
.navbar-toggler {
  border: none;
  padding: 8px;
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: rgba(201, 166, 212, 0.08);
  border-radius: 8px;
  margin-left: auto;
}
.navbar-toggler span {
  width: 24px;
  height: 2.5px;
  background: var(--lilac);
  border-radius: 2px;
  transition: var(--transition-smooth);
  display: block;
}
.navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cta-nav {
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0f1a1a;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.cta-nav:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 28px rgba(154, 219, 200, 0.3);
}
/* CTA in navbar */
header .cta-nav {
  font-size: 12px;
  padding: 10px 16px;
  margin-left: 8px;
}
.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.eyebrow { 
  color: var(--rose-dark); 
  letter-spacing: 0.25em; 
  font-size: 12px; 
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(184, 138, 138, 0.2);
  display: inline-block;
  padding: 8px 16px;
  background: rgba(232, 196, 160, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(232, 196, 160, 0.3);
  width: fit-content;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 64px);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-dark) 50%, var(--lilac) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(201, 166, 212, 0.18);
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  background: linear-gradient(135deg, var(--lilac), var(--lilac-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { 
  margin: 0 0 28px; 
  color: var(--muted); 
  font-size: 16px;
  line-height: 1.7;
}
.hero-subtitle {
  margin: 0 !important;
  color: var(--text-secondary) !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
}
.hero-actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
  align-items: center;
  margin-top: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-primary { 
  background: linear-gradient(135deg, #d4a5a5 0%, #b88a8a 50%, #e8c4a0 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(212, 165, 165, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 165, 165, 0.4);
  animation: hoverLift 0.3s ease-out;
}
.btn-outline { 
  background: #ffffff; 
  border: 2px solid var(--accent); 
  color: var(--accent); 
  box-shadow: 0 2px 8px rgba(212, 165, 165, 0.08);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-outline:hover {
  background: rgba(212, 165, 165, 0.08);
  border-color: var(--rose-dark);
  color: var(--rose-dark);
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.2);
  transform: translateY(-2px);
}
.badge-row { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px; 
  margin-top: 28px;
}
.badge { 
  padding: 10px 16px; 
  border-radius: 10px; 
  border: 1.5px solid var(--accent); 
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.1), rgba(212, 165, 165, 0.08)); 
  color: var(--rose-dark); 
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(212, 165, 165, 0.1);
}
.badge:hover {
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.15), rgba(212, 165, 165, 0.15));
  border-color: var(--rose-dark);
  box-shadow: 0 6px 16px rgba(212, 165, 165, 0.2);
  transform: translateY(-2px);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}
.avatar-container {
  position: relative;
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  isolation: isolate;
}
.avatar-label {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac-dark);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 212, 0.2);
  box-shadow: 0 6px 16px rgba(201, 166, 212, 0.12);
}
.avatar-glow {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 212, 0.35), rgba(201, 166, 212, 0.08) 70%);
  filter: blur(34px);
  animation: pulse 4s ease-in-out infinite;
  z-index: 0;
}
.avatar-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(201, 166, 212, 0.7);
  box-shadow: 0 0 28px rgba(201, 166, 212, 0.35), inset 0 0 18px rgba(201, 166, 212, 0.12);
  z-index: 1;
}
.avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(201, 166, 212, 0.32), 0 0 0 10px rgba(255, 255, 255, 0.85);
  border: 4px solid #ffffff;
  transition: var(--transition-smooth);
  z-index: 2;
}
.avatar:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 70px rgba(201, 166, 212, 0.4), 0 0 0 12px rgba(255, 255, 255, 0.9);
}
.hero-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.15);
  transition: var(--transition-smooth);
  display: none;
}
.hero-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(212, 165, 165, 0.25);
  transform: translateY(-4px);
}
.profile {
  display: none;
}
.tagline { 
  margin: 0;7px;
  font-style: italic;
  font-weight: 500;
  color: var(--lilac);
  line-height: 1.8;
  letter-spacing: 0.2px;
  max-width: 350px
  font-style: italic;
  color: var(--lilac);
  line-height: 1.6;
}
.hero-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
section { padding: 50px 20px; }
.section-inner { 
  max-width: 1200px; 
  margin: 0 auto;
}
.section-alt { 
  background: linear-gradient(180deg, #fdfbf9 0%, #faf8f6 100%);
  border-top: 1px solid var(--border); 
  border-bottom: 1px solid var(--border);
}
.section-divider { 
  height: 1px; 
  width: 100%; 
  background: linear-gradient(90deg, transparent, rgba(212,165,165,0.2), transparent); 
  margin: 0;
}
.section-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; 
  gap: 32px; 
  flex-wrap: wrap; 
  margin-bottom: 40px;
}
.section-header h2 { 
  margin: 0; 
  font-size: clamp(26px, 3.5vw, 36px); 
}
.section-header p { 
  max-width: 560px; 
  margin: 12px 0 0; 
  color: var(--muted);
  font-size: 15px;
}
.grid { display: grid; gap: 20px; }
.grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(212, 165, 165, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(232, 196, 160, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.3), 0 16px 40px rgba(212, 165, 165, 0.25);
  transform: translateY(-4px);
}
.card:hover::before {
  opacity: 1;
}
.card h3 { 
  margin: 0 0 12px; 
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--lilac), var(--lilac-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card p { 
  margin: 0; 
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.card-icon {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.15), rgba(212, 165, 165, 0.1));
  border-radius: 14px;
  transition: var(--transition-smooth);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.25), rgba(212, 165, 165, 0.2));
  color: var(--rose-dark);
  transform: translateY(-4px) scale(1.08);
}
.pill { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  padding: 8px 14px; 
  border-radius: 10px; 
  border: 1px solid var(--border); 
  background: rgba(212, 165, 165, 0.08); 
  color: var(--accent); 
  font-size: 11px; 
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  font-weight: 600;
}
.two-col { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 32px; 
  align-items: center;
}
.list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 14px;
}
.list li { 
  display: flex; 
  gap: 12px; 
  align-items: flex-start; 
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.icon-bullet { 
  color: var(--accent); 
  margin-top: 2px; 
  font-size: 18px;
  flex-shrink: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(232, 196, 160, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.step-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(212, 165, 165, 0.2);
  transform: translateY(-6px);
}
.step-card:hover::after {
  opacity: 1;
}
.step-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.15), rgba(232, 196, 160, 0.1));
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
  box-shadow: 0 2px 8px rgba(212, 165, 165, 0.1);
}
.step-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--lilac), var(--lilac-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.step-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.step-icon {
  font-size: 36px;
  color: var(--accent);
  margin: 8px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.15), rgba(201, 166, 212, 0.1));
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.step-card:hover .step-icon {
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.25), rgba(201, 166, 212, 0.2));
  color: var(--rose-dark);
  transform: translateY(-6px) rotate(5deg);
}
.video-section {
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.05), rgba(232, 196, 160, 0.04));
  border-top: 1px solid rgba(212, 165, 165, 0.15);
  border-bottom: 1px solid rgba(212, 165, 165, 0.15);
}
.video-header {
  margin-bottom: 40px;
}
.video-header h2 {
  background: linear-gradient(135deg, var(--lilac), var(--lilac-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.video-header p {
  color: var(--muted);
  font-size: 15px;
  max-width: 600px;
  line-height: 1.7;
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(212, 165, 165, 0.12);
  border: 1px solid rgba(212, 165, 165, 0.2);
  background: #000;
}
.video-container iframe {
  display: block;
  border-radius: 16px;
}
.programs { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 24px;
}
.program {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(212, 165, 165, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.program::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a5a5, transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.program::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 196, 160, 0.25), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.program:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(212, 165, 165, 0.25);
  transform: translateY(-6px);
}
.program:hover::before,
.program:hover::after {
  opacity: 1;
}
.program.highlight { 
  border: 1px solid var(--accent); 
  box-shadow: 0 16px 48px rgba(212, 165, 165, 0.2);
  animation: glowRose 3s ease-in-out infinite;
}
.program-group { display: grid; gap: 24px; margin-top: 20px; }
.program-group-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 20px; 
  flex-wrap: wrap;
}
.price { 
  font-size: 32px; 
  font-weight: 900; 
  background: linear-gradient(120deg, #d4a5a5 0%, #b88a8a 50%, #e8c4a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(212, 165, 165, 0.2);
  letter-spacing: -0.02em;
}
.program-icon {
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.2), rgba(212, 165, 165, 0.12));
  border: 1.5px solid rgba(212, 165, 165, 0.15);
  border-radius: 16px;
  transition: var(--transition-smooth);
}
.program:hover .program-icon {
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.3), rgba(212, 165, 165, 0.22));
  border-color: var(--accent);
  color: var(--rose-dark);
  transform: translateY(-8px) scale(1.12);
}
.program.highlight .program-icon {
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.25), rgba(212, 165, 165, 0.18));
  border-color: var(--accent);
  animation: glowRose 3s ease-in-out infinite;
}
.program ul { 
  margin: 0; 
  padding-left: 20px; 
  color: var(--muted);
  list-style: none;
}
.program ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.program ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.program .btn { width: 100%; justify-content: center; }
.label-tag { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  padding: 6px 12px; 
  border-radius: 8px; 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: absolute;
  top: 12px;
  right: 12px;
}
.label-new { 
  background: rgba(241,193,139,0.2); 
  color: var(--accent-2); 
  border: 1px solid rgba(241,193,139,0.5);
}
.label-hit { 
  background: rgba(154,219,200,0.2); 
  color: var(--accent); 
  border: 1px solid rgba(154,219,200,0.5);
}
.label-best { 
  background: rgba(255,255,255,0.1); 
  color: var(--lilac-dark); 
  border: 1px solid rgba(255,255,255,0.3);
}
.testimonials { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px;
}

/* Testimonials Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  --items-per-view: 1;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  align-items: stretch;
}
.testimonial-item {
  flex: 0 0 calc(100% / var(--items-per-view));
  padding: 0 6px;
  box-sizing: border-box;
  display: flex;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(201, 166, 212, 0.25);
  transition: var(--transition);
}
.testimonial-dot:hover {
  transform: scale(1.15);
}
.testimonial-dot.active {
  background: var(--lilac);
  border-color: var(--lilac-dark);
}
.quote { 
  position: relative; 
  padding: 28px;
  padding-top: 24px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.05), rgba(201, 166, 212, 0.04));
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 196, 160, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.quote:hover {
  box-shadow: var(--shadow-lilac-md);
  border-left: 4px solid var(--accent-2);
  transform: translateX(4px);
}
.quote:hover::before {
  opacity: 1;
}
.quote::after { 
  content: '"'; 
  position: absolute; 
  left: 12px; 
  top: -12px; 
  font-size: 48px; 
  color: var(--lilac); 
  opacity: 0.25;
}
.quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}
.quote small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}
.quote-footer {
  display: inline-flex;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--rose-dark);
}
.quote-footer .bi-star-fill {
  filter: drop-shadow(0 1px 2px rgba(212, 165, 165, 0.3));
}

/* Podcast / YouTube grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.yt-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lilac-md);
  border-color: var(--accent);
}
.yt-thumb {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}
.yt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
}
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 38px;
  z-index: 1;
  text-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.yt-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  z-index: 1;
  letter-spacing: 0.03em;
}
.yt-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.yt-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--lilac), var(--lilac-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.yt-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.yt-desc {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  display: block;
  max-height: none;
  overflow: visible;
}
.yt-meta .pill {
  margin: 0;
  padding: 6px 10px;
  font-size: 11px;
}
.footer {
  background: linear-gradient(180deg, #f8f4f0 0%, #faf8f6 100%);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 60px 20px 24px;
}
.footer-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer small { 
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.footer h4 { 
  margin: 0 0 16px; 
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--lilac), var(--lilac-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer a { 
  color: var(--muted);
  font-size: 13px;
  transition: var(--transition);
}
.footer a:hover { 
  color: var(--lilac-dark);
}
.footer-list { 
  display: grid; 
  gap: 10px;
}
.footer-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 8px 12px; 
  border-radius: 8px; 
  border: 1px solid var(--border-light); 
  background: rgba(255,255,255,0.04); 
  color: var(--muted); 
  font-size: 11px;
  font-weight: 500;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.footer-inner small {
  font-size: 12px;
}
.footer-developer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border-light);
}
.developer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.8;
}
.developer-link:hover {
  opacity: 1;
  color: var(--text-secondary);
  transform: translateY(-2px);
}
.developer-logo {
  height: 28px;
  width: auto;
  filter: none;
  transition: var(--transition);
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.developer-link:hover .developer-logo {
  filter: none;
  background: transparent;
  opacity: 0.8;
}
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0f1a1a;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(212, 165, 165, 0.12);
  z-index: 19;
  transition: var(--transition);
}
.floating-cta:hover { 
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 165, 165, 0.15);
}
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  z-index: 19;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  line-height: 1;
}
.whatsapp-btn:hover { 
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.45);
}
.whatsapp-btn:active {
  transform: translateY(-3px) scale(1.05);
}
.whatsapp-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-input {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: var(--transition);
}
.custom-input::placeholder {
  color: var(--muted);
}
.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.15);
  border-color: var(--accent);
  background: #ffffff;
}
/* Breakpoints */
/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 2px 8px rgba(212, 165, 165, 0.05);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    box-shadow: var(--shadow-rose-md);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
    box-shadow: inset 10px 0 20px rgba(212, 165, 165, 0.1);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    box-shadow: inset 0 0 0 rgba(212, 165, 165, 0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(212, 165, 165, 0.4);
  }
  50% {
    opacity: 0.85;
  }
  75% {
    box-shadow: 0 0 0 10px rgba(212, 165, 165, 0);
  }
}
@keyframes glowRose {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212, 165, 165, 0.2), 0 0 20px rgba(212, 165, 165, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 165, 165, 0.4), 0 0 40px rgba(232, 196, 160, 0.2);
  }
}
@keyframes hoverLift {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(212, 165, 165, 0.1);
  }
  100% {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 165, 165, 0.25);
  }
}
section {
  animation: fadeInUp 0.6s ease-out forwards;
}
section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }
section:nth-child(5) { animation-delay: 0.4s; }
/* Smooth Scroll Behavior */
html { scroll-behavior: smooth; }

@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 16px;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .video-container {
    max-width: 100%;
  }
  .video-container iframe {
    height: 450px !important;
  }
  section { padding: 50px 20px; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .programs { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
}
@media (max-width: 991px) {
  .navbar {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .navbar-container {
    flex-direction: column;
    align-items: stretch;
  }
  .navbar-collapse {
    margin-top: 12px;
  }
  header .navbar-nav {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  header .nav-item {
    width: 100%;
  }
  header .nav-link {
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    justify-content: flex-start;
  }
  header .nav-link::after {
    display: none;
  }
  header .nav-link:hover {
    background: rgba(212, 165, 165, 0.1);
  }
  header .cta-nav {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .navbar-title {
    display: none !important;
  }
  .navbar-toggler {
    display: flex !important;
  }
  .navbar {
    flex-wrap: wrap;
  }
  .navbar-collapse {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 251, 249, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
    z-index: 999;
    justify-content: flex-start;
    flex: initial;
    display: none !important;
  }
  .navbar-collapse.show {
    display: flex !important;
    max-height: 500px !important;
  }
  header .navbar-nav {
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
    width: 100%;
    align-items: flex-start;
  }
  header .nav-item {
    width: 100%;
  }
  header .nav-link {
    padding: 12px 16px;
    width: 100%;
    display: block;
    border-radius: 8px;
    margin-bottom: 4px;
  }
  header .nav-link::after {
    display: none;
  }
  .navbar-container {
    padding: 0 16px;
  }
  .brand span {
    display: none;
  }
  .hero { 
    grid-template-columns: 1fr;
    padding: 70px 20px 50px;
    gap: 50px;
    align-items: center;
  }
  .hero-steps {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .avatar-container {
    max-width: 340px;
  }
  .video-container iframe {
    height: 300px !important;
  }
  .video-header {
    margin-bottom: 24px;
  }
  h1 { font-size: clamp(28px, 5vw, 40px); }
  h2 { font-size: clamp(22px, 4vw, 32px); }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
  }
  .badge-row {
    flex-direction: column;
  }
  .badge {
    width: 100%;
    text-align: center;
  }
  .section-header {
    flex-direction: column;
    align-items: stretch;
  }
  .section-header h2 { margin-bottom: 8px; }
  .grid-cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .programs { grid-template-columns: 1fr; }
  .two-col {
    grid-template-columns: 1fr;
  }
  .floating-cta,
  .whatsapp-btn {
    bottom: 16px;
  }
  .floating-cta {
    left: 16px;
    width: 100%;
    max-width: calc(100% - 32px);
  }
  .whatsapp-btn {
    right: 16px;
  }
  .card { padding: 20px; }
  .program { padding: 20px; }
}
@media (max-width: 480px) {
  body { font-size: 14px; }
  h1 { font-size: 28px; line-height: 1.3; }
  h2 { font-size: 22px; }
  section { padding: 40px 16px; }
  .hero { padding: 50px 16px 40px; }
  .video-container iframe {
    height: 220px !important;
  }
  .video-header {
    margin-bottom: 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .hero-card { padding: 20px; }
  .card { padding: 16px; }
  .program { padding: 16px; }
  .btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  .badge { padding: 8px 12px; font-size: 11px; }
  .price { font-size: 28px; }
  .testimonials { grid-template-columns: 1fr; }
  .floating-cta {
    font-size: 12px;
    padding: 12px 16px;
  }
}

@media (min-width: 769px) {
  .navbar-title {
    display: block !important;
  }
}
