/* ============================================
   FLOR BARIO - DARK THEME
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Base */
  --bg-primary: #0B0B0F;
  --bg-secondary: #14141A;
  --bg-soft: #1F1F27;

  /* Brand Core */
  --pink-primary: #FF5FA6;
  --pink-deep: #E13D85;
  --pink-soft: #FFC1DA;

  /* Warm Energy */
  --red-vibrant: #FF4D4D;
  --orange-sunset: #FF8B4D;
  --yellow-gold: #FFCC4D;

  /* Accents */
  --cherry-pink: #FF3B7F;
  --flower-pink: #FF7EB6;
  --spark-gold: #FFD966;
  --leaf-green: #4CAF50;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8C2;
  --text-muted: #7A7A88;

  /* Gradients */
  --gradient-cta: linear-gradient(135deg, #FF5FA6, #FF8B4D);
  --gradient-cta-hover: linear-gradient(135deg, #FF4D4D, #FFCC4D);
  --gradient-accent: linear-gradient(135deg, #FF5FA6, #FF8B4D, #FFCC4D);
  --gradient-hero-glow: linear-gradient(180deg, rgba(255, 95, 166, 0.25), rgba(255, 139, 77, 0.15));
  --glow-radial: radial-gradient(circle at top right, #FF5FA6 0%, transparent 40%);
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Quicksand', 'M PLUS Rounded 1c', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Skip link - accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--pink-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--yellow-gold);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 95, 166, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-soft);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* Nav CTA button */
.nav-cta {
  background: var(--gradient-cta) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gradient-cta-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 95, 166, 0.3);
}

/* Language toggle button */
.lang-toggle-btn {
  background: transparent;
  border: 2px solid var(--pink-primary);
  color: var(--pink-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle-btn:hover {
  background: var(--pink-primary);
  color: #fff;
}

.lang-toggle-btn:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* Flash prevention */
html.lang-es [data-lang="en"] { display: none !important; }
html.lang-es [data-lang="es"] { display: revert !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 2px solid var(--pink-primary);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--pink-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 95, 166, 0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--bg-primary);
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  text-align: left;
  min-height: 100vh;
}

.hero-split::before,
.hero-split::after {
  display: none;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 95, 166, 0.2);
}

.hero-split .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8rem 4rem 4rem;
  background: radial-gradient(ellipse at top right, rgba(255, 95, 166, 0.1) 0%, transparent 60%);
}

.hero-split .cta-button {
  align-self: flex-start;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-cta);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 95, 166, 0.3);
}

.cta-button:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.4);
}

.cta-button:focus-visible {
  outline: 2px solid var(--yellow-gold);
  outline-offset: 3px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-weight: 800;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(255, 95, 166, 0.2);
  border: 3px solid var(--bg-soft);
}

.about-text h3 {
  color: var(--pink-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  opacity: 0.3;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-soft);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 166, 0.3);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.15);
}

.service-card h3 {
  color: var(--pink-primary);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   METHOD SECTION
   ============================================ */
.method-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.method-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  opacity: 0.3;
}

.method-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.method-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.method-card {
  background: var(--bg-soft);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.1);
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: rgba(255, 95, 166, 0.3);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.15);
}

.method-card h3 {
  color: var(--pink-primary);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.method-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.method-card p:last-child {
  margin-bottom: 0;
}

.method-card strong {
  color: var(--text-primary);
}

.method-bottom {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding-top: 1rem;
}

.method-badge {
  margin-bottom: 1.25rem;
}

.method-badge img {
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 95, 166, 0.2);
}

.method-bottom h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.method-bottom p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   LESSONS PREVIEW (HOMEPAGE) & LESSONS PAGE
   ============================================ */
.lessons-preview {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
}

.lessons-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  opacity: 0.3;
}

.lessons-preview h2,
.lessons-pricing h2,
.lessons-features h2,
.lessons-process h2,
.lessons-audience h2,
.lessons-cta h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-intro,
.pricing-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Lessons Hero (lessons.html) */
.lessons-hero {
  padding: 5rem 2rem 3rem;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
}

.lessons-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--glow-radial);
  opacity: 0.3;
  pointer-events: none;
}

.lessons-hero-content .hero-badge {
  margin: 0 auto 1.5rem;
  display: block;
}

.lessons-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lessons-hero-content .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.lessons-hero-content .hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 95, 166, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 166, 0.3);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.15);
}

.pricing-card.featured {
  border-color: var(--pink-primary);
  background: linear-gradient(180deg, rgba(255, 95, 166, 0.08), var(--bg-soft));
  box-shadow: 0 0 40px rgba(255, 95, 166, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pricing-savings {
  font-size: 0.85rem;
  color: var(--pink-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
}

.pricing-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--pink-primary);
  font-weight: 700;
}

.pricing-card .cta-button {
  display: inline-block;
  width: auto;
  padding: 0.85rem 2rem;
}

.lessons-preview-link {
  text-align: center;
  margin-top: 2.5rem;
}

.lessons-preview-link a {
  color: var(--pink-primary);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lessons-preview-link a:hover {
  color: var(--pink-soft);
}

/* Features Grid (lessons.html) */
.lessons-features {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.feature-card {
  background: var(--bg-soft);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 166, 0.3);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--pink-primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Process Steps (lessons.html) */
.lessons-process {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Pricing Section (lessons.html) */
.lessons-pricing {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
}

/* Audience Section (lessons.html) */
.lessons-audience {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.audience-check {
  color: var(--pink-primary);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.audience-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bottom CTA (lessons.html) */
.lessons-cta {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
}

.lessons-cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 1rem auto 2rem;
  line-height: 1.7;
}

.lessons-cta-content .cta-button {
  display: inline-block;
  width: auto;
  padding: 1rem 2.5rem;
}

/* ============================================
   ASYNC COACHING SECTION
   ============================================ */
.async-coaching {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.async-coaching::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  opacity: 0.3;
}

.async-badge {
  display: inline-block;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.async-coaching h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.async-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.async-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.async-details h3 {
  color: var(--pink-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.async-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.async-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.async-step .step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0.15rem 0 0 0;
}

.async-step strong {
  color: var(--text-primary);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
}

.async-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.async-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.async-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.async-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--leaf-green);
  font-weight: 700;
}

.async-pricing-card {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 95, 166, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: 100px;
}

.pricing-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-currency {
  font-size: 2rem;
  vertical-align: super;
  color: var(--pink-primary);
}

.pricing-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-compare {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-highlights {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 0.5rem;
}

.pricing-highlights li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--pink-primary);
  font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-weight: 800;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-soft);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--pink-primary);
  font-weight: 700;
  text-align: right;
  font-size: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
  opacity: 0.3;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 550px;
  margin: 0 auto 3rem;
  background: var(--bg-soft);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 95, 166, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(255, 95, 166, 0.15);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 95, 166, 0.3);
}

.submit-button:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 95, 166, 0.4);
}

.submit-button:focus-visible {
  outline: 2px solid var(--yellow-gold);
  outline-offset: 3px;
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form status messages */
.form-status {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-status.sending {
  background: rgba(255, 204, 77, 0.15);
  color: var(--yellow-gold);
}

.form-status.success {
  background: rgba(76, 175, 80, 0.15);
  color: var(--leaf-green);
}

.form-status.error {
  background: rgba(255, 77, 77, 0.15);
  color: var(--red-vibrant);
}

.form-status:empty {
  display: none;
}

.social-links {
  text-align: center;
  color: var(--text-secondary);
}

.social-links p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.social-links a {
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--pink-primary);
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  background: var(--pink-primary);
  color: #fff;
}

.social-links a:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 3px;
}

.social-links a + a {
  margin-left: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 95, 166, 0.1);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .lang-toggle-btn {
    order: 2;
  }

  .nav-toggle {
    order: 3;
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 95, 166, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav-links.open {
    max-height: 320px;
    opacity: 1;
    padding: 1rem;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    border-radius: 8px;
  }

  nav {
    position: relative;
    flex-wrap: wrap;
  }

  .hero {
    padding: 5rem 1.5rem 4rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .hero-image {
    max-height: 60vh;
  }

  .hero-split .hero-content {
    padding: 3rem 1.5rem;
    text-align: center;
    align-items: center;
  }

  .hero-split .cta-button {
    align-self: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-grid,
  .testimonials-grid,
  .pricing-grid,
  .features-grid,
  .audience-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .about h2,
  .services h2,
  .testimonials h2,
  .contact h2,
  .async-coaching h2,
  .method-section h2,
  .lessons-preview h2,
  .lessons-pricing h2,
  .lessons-features h2,
  .lessons-process h2,
  .lessons-audience h2,
  .lessons-cta h2 {
    font-size: 2rem;
  }

  .lessons-hero-content h1 {
    font-size: 2.2rem;
  }

  .pricing-amount {
    font-size: 2.8rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .async-layout {
    grid-template-columns: 1fr;
  }

  .async-pricing-card {
    position: static;
  }

  .social-links a + a {
    margin-left: 0.5rem;
  }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero */
.blog-hero {
  background: var(--bg-primary);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--glow-radial);
  opacity: 0.3;
  pointer-events: none;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--text-primary);
  position: relative;
}

.blog-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  position: relative;
}

/* Blog Content */
.blog-content {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

/* Blog Filters */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 95, 166, 0.2);
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}

.filter-btn.active {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
}

.filter-btn:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background: var(--bg-soft);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 95, 166, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 166, 0.3);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.15);
}

.blog-card-featured {
  border: 2px solid var(--pink-primary);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-cta);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 2;
}

.blog-card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.blog-date {
  font-weight: 600;
}

.blog-lang {
  background: var(--pink-primary);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
}

.blog-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

.blog-card h2 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h2 a:hover {
  color: var(--pink-primary);
}

.blog-card p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  flex-grow: 1;
  font-size: 0.95rem;
}

.blog-read-more {
  color: var(--pink-primary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.blog-read-more:hover {
  color: var(--orange-sunset);
  transform: translateX(4px);
}

.cta-button-small {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--gradient-cta);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cta-button-small:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lang-btn {
  padding: 0.6rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 95, 166, 0.2);
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
}

.lang-btn:hover {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}

.lang-btn.active {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* ============================================
   BLOG POST
   ============================================ */
.blog-post {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.blog-post-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.back-to-blog {
  display: inline-block;
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-to-blog:hover {
  color: var(--orange-sunset);
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-reading-time {
  font-style: italic;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.blog-post-excerpt {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.blog-post-image {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-post-content h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  font-weight: 800;
}

.blog-post-content h3 {
  color: var(--pink-primary);
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--pink-primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.blog-post-footer {
  max-width: 800px;
  margin: 3rem auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 95, 166, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-post-tags,
.blog-post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-post-tags span,
.blog-post-share span {
  font-weight: 700;
  color: var(--pink-primary);
}

.blog-post-tags a,
.blog-post-share a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  background: var(--bg-soft);
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.blog-post-tags a:hover,
.blog-post-share a:hover {
  background: var(--pink-primary);
  color: #fff;
}

.blog-post-cta {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 95, 166, 0.2);
  border-radius: 16px;
  text-align: center;
  color: var(--text-primary);
}

.blog-post-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-post-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* ============================================
   LEAD MAGNET LANDING PAGE
   ============================================ */
.lead-magnet-hero {
  background: var(--bg-primary);
  padding: 5rem 2rem;
  color: var(--text-primary);
  position: relative;
}

.lead-magnet-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: var(--glow-radial);
  opacity: 0.3;
  pointer-events: none;
}

.lead-magnet-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.lead-magnet-badge {
  display: inline-block;
  background: var(--gradient-cta);
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.lead-magnet-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
}

.lead-magnet-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.lead-magnet-benefits {
  background: var(--bg-soft);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 95, 166, 0.1);
}

.lead-magnet-benefits h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--pink-primary);
}

.lead-magnet-benefits ul {
  list-style: none;
  padding: 0;
}

.lead-magnet-benefits li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
  color: var(--text-secondary);
}

.lead-magnet-cta {
  text-align: center;
}

.cta-note {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--pink-primary);
  font-weight: 600;
}

.cta-button-large {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: var(--gradient-cta);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 95, 166, 0.3);
  margin-bottom: 1rem;
}

.cta-button-large:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 95, 166, 0.4);
}

.cta-trust {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.lead-magnet-image {
  text-align: center;
}

.guide-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--bg-soft);
}

.guide-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 11, 15, 0.9), transparent);
  padding: 2rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.lead-magnet-form-section {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-soft);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.15);
}

.form-container h2 {
  text-align: center;
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.form-container > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.lead-magnet-form {
  margin-top: 2rem;
}

.lead-magnet-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 95, 166, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.lead-magnet-form select:focus {
  outline: none;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(255, 95, 166, 0.15);
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--pink-primary);
}

.submit-button-large {
  width: 100%;
  padding: 1.1rem;
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 95, 166, 0.3);
  margin-top: 1rem;
}

.submit-button-large:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.download-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-soft);
  border-radius: 16px;
  color: var(--text-primary);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.download-success h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.download-success p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.lead-magnet-testimonials {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.lead-magnet-testimonials h2 {
  text-align: center;
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 800;
}

.testimonials-mini {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-mini {
  background: var(--bg-soft);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 95, 166, 0.1);
}

.testimonial-mini p:first-child {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-mini .testimonial-author {
  color: var(--pink-primary);
  font-weight: 700;
  text-align: right;
}

.lead-magnet-about {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.about-mini {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
}

.about-mini img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--bg-soft);
}

.about-mini h3 {
  color: var(--pink-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.about-mini p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.learn-more-link {
  color: var(--pink-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.learn-more-link:hover {
  color: var(--orange-sunset);
}

/* Responsive Blog */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-header h1 {
    font-size: 1.8rem;
  }

  .blog-post-content {
    font-size: 1rem;
  }

  .blog-post-footer {
    flex-direction: column;
  }

  .language-switcher {
    flex-direction: column;
    gap: 0.5rem;
  }

  .lang-btn {
    max-width: 100%;
  }

  .lead-magnet-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lead-magnet-text h1 {
    font-size: 2rem;
  }

  .about-mini {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }
}
