@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   YourFitnessPlans – Professional Light/Dark Theme
   Palette: Light mode #FFFFFF bg, #3B82F6 blue accents, #1F2937 text
   Dark mode #111111 bg, #3B82F6 blue accents, #F5F3EE text
   Fonts: Poppins (display), Inter (body)
═══════════════════════════════════════════════════════════════ */

:root {
  /* LIGHT MODE (DEFAULT) */
  --bg:              #FFFFFF;
  --bg-secondary:    #F9FAFB;
  --surface:         #F3F4F6;
  --surface2:        #E5E7EB;
  --border:          #D1D5DB;
  --border-light:    #E5E7EB;

  /* DARK MODE COLORS */
  --bg-dark:         #111111;
  --bg-secondary-dark: #1F2937;
  --surface-dark:    #1B1B1B;
  --surface2-dark:   #242424;
  --border-dark:     #2A2A2A;

  /* ACCENTS */
  --blue:            #3B82F6;
  --blue-light:      #DBEAFE;
  --blue-hover:      #2563EB;
  --blue-dark:       #1E40AF;

  /* TEXT */
  --text-light:      #1F2937;
  --text-light-dim:  #6B7280;
  --text-light-muted:#9CA3AF;
  --text-dark:       #F5F3EE;
  --text-dark-dim:   #D1D5DB;
  --text-dark-muted: #9CA3AF;

  --green:           #10B981;
  --danger:          #EF4444;

  /* SPACING & SIZING */
  --radius:          8px;
  --radius-lg:       12px;
  --radius-xl:       16px;
  --shadow:          0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg:       0 20px 40px rgba(0,0,0,0.12);
  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:           1200px;
  --max-w-narrow:    800px;
}

/* DARK MODE OVERRIDE */
html[data-theme="dark"] {
  --bg:              var(--bg-dark);
  --bg-secondary:    var(--bg-secondary-dark);
  --surface:         var(--surface-dark);
  --surface2:        var(--surface2-dark);
  --border:          var(--border-dark);
  --text:            var(--text-dark);
  --text-dim:        var(--text-dark-dim);
  --text-muted:      var(--text-dark-muted);
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

html[data-theme="dark"] body {
  color: var(--text-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.yfp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.yfp-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.yfp-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.yfp-section-sub {
  font-size: 1.125rem;
  color: var(--text-light-dim);
  line-height: 1.7;
  max-width: 560px;
}

html[data-theme="dark"] .yfp-section-sub {
  color: var(--text-dark-dim);
}

.yfp-accent { color: var(--blue); }

/* ─── LAYOUT ──────────────────────────────────────────────────── */

.yfp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.yfp-section {
  padding: 100px 0;
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.yfp-section--light {
  background: var(--bg-secondary);
}

html[data-theme="dark"] .yfp-section--light {
  background: var(--bg-secondary-dark);
}

.yfp-grid {
  display: grid;
  gap: 32px;
}

.yfp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.yfp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.yfp-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .yfp-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .yfp-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-grid--2, .yfp-grid--3, .yfp-grid--4 { grid-template-columns: 1fr; }
  .yfp-section { padding: 64px 0; }
}

/* ─── NAVIGATION ──────────────────────────────────────────────── */

.yfp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.yfp-nav.scrolled {
  box-shadow: var(--shadow);
}

.yfp-nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
}

.yfp-nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.yfp-nav-menu a {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}

html[data-theme="dark"] .yfp-nav-menu a {
  color: var(--text-dark);
}

.yfp-nav-menu a:hover {
  color: var(--blue);
}

.yfp-theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 50px;
  height: 28px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-theme-toggle {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-theme-toggle__circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

html[data-theme="dark"] .yfp-theme-toggle__circle {
  transform: translateX(22px);
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */

.yfp-btn {
  padding: 12px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.yfp-btn--primary {
  background: var(--blue);
  color: white;
}

.yfp-btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.yfp-btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.yfp-btn--outline:hover {
  background: var(--blue-light);
}

.yfp-btn--lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.yfp-btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ─── HERO ──────────────────────────────────────────────────────── */

.yfp-hero {
  position: relative;
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.yfp-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: var(--bg-secondary);
}

html[data-theme="dark"] .yfp-hero-bg {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.yfp-hero-content {
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

.yfp-hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.yfp-hero-sub {
  font-size: 1.25rem;
  color: var(--text-light-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}

html[data-theme="dark"] .yfp-hero-sub {
  color: var(--text-dark-dim);
}

.yfp-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.yfp-proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .yfp-proof-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.yfp-proof-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.yfp-proof-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-proof-label {
  color: var(--text-dark-dim);
}

/* ─── CARDS ──────────────────────────────────────────────────────── */

.yfp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.yfp-icon-card {
  text-align: center;
}

.yfp-icon-circle {
  font-size: 3rem;
  margin-bottom: 16px;
}

.yfp-icon-card h3 {
  margin-bottom: 12px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-icon-card h3 {
  color: var(--text-dark);
}

.yfp-icon-card p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
}

html[data-theme="dark"] .yfp-icon-card p {
  color: var(--text-dark-dim);
}

/* ─── PRICING ──────────────────────────────────────────────────── */

.yfp-pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-pricing-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

html[data-theme="dark"] .yfp-pricing-card.featured {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.yfp-pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.yfp-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue);
  margin: 20px 0;
}

.yfp-price sup {
  font-size: 1.5rem;
}

.yfp-price-note {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

html[data-theme="dark"] .yfp-price-note {
  color: var(--text-dark-muted);
}

.yfp-pricing-list {
  list-style: none;
  margin: 30px 0;
}

.yfp-pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

html[data-theme="dark"] .yfp-pricing-list li {
  border-color: var(--border-dark);
  color: var(--text-dark-dim);
}

.yfp-pricing-list .check {
  color: var(--green);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────── */

.yfp-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-testimonial {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-testimonial:hover {
  box-shadow: var(--shadow-lg);
}

.yfp-testimonial-stars {
  color: #FBBF24;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.yfp-testimonial-text {
  color: var(--text-light-dim);
  margin-bottom: 24px;
  line-height: 1.8;
  font-style: italic;
}

html[data-theme="dark"] .yfp-testimonial-text {
  color: var(--text-dark-dim);
}

.yfp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yfp-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.yfp-testimonial-name {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

html[data-theme="dark"] .yfp-testimonial-name {
  color: var(--text-dark);
}

.yfp-testimonial-meta {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

html[data-theme="dark"] .yfp-testimonial-meta {
  color: var(--text-dark-muted);
}

.yfp-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */

.yfp-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

html[data-theme="dark"] .yfp-faq-item {
  border-color: var(--border-dark);
}

.yfp-faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

html[data-theme="dark"] .yfp-faq-q {
  color: var(--text-dark);
}

.yfp-faq-q:hover {
  color: var(--blue);
}

.yfp-faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition);
}

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

.yfp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.yfp-faq-item.open .yfp-faq-a {
  max-height: 500px;
  padding-top: 20px;
}

.yfp-faq-a p {
  color: var(--text-light-dim);
  line-height: 1.8;
}

html[data-theme="dark"] .yfp-faq-a p {
  color: var(--text-dark-dim);
}

/* ─── CTA SECTION ──────────────────────────────────────────────── */

.yfp-cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.yfp-cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.yfp-cta-section .yfp-btn--outline {
  border-color: white;
  color: white;
}

.yfp-cta-section .yfp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ─── UTILITIES ──────────────────────────────────────────────────── */

.yfp-text-center { text-align: center; }
.yfp-mx-auto { margin-left: auto; margin-right: auto; }
.yfp-mb-16 { margin-bottom: 16px; }
.yfp-mb-24 { margin-bottom: 24px; }
.yfp-mb-40 { margin-bottom: 40px; }
.yfp-mb-64 { margin-bottom: 64px; }
.yfp-mt-40 { margin-top: 40px; }
.yfp-animate { animation: fadeInUp 0.8s ease-out; }

/* ─── ANIMATIONS ──────────────────────────────────────────────── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PHOTO PLACEHOLDER ───────────────────────────────────────── */

.yfp-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-light-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

html[data-theme="dark"] .yfp-photo-placeholder {
  background: var(--surface-dark);
  border-color: var(--border-dark);
  color: var(--text-dark-muted);
}

.yfp-photo-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */

/* ─── HAMBURGER BUTTON ─────────────────────────────────────────── */
.yfp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
  order: 10;
}
.yfp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
html[data-theme="dark"] .yfp-hamburger span { background: var(--text-dark); }
.yfp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.yfp-hamburger.open span:nth-child(2) { opacity: 0; }
.yfp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .yfp-nav {
    padding: 0 16px;
  }

  .yfp-hamburger {
    display: flex;
  }

  .yfp-nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .yfp-nav-menu.open {
    display: flex;
  }
  .yfp-nav-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .yfp-hero-cta {
    flex-direction: column;
  }

  .yfp-hero-cta .yfp-btn {
    width: 100%;
  }

  .yfp-section-sub {
    max-width: 100%;
  }
}

/* ─── BENEFIT CARDS ──────────────────────────────────────────────── */

.yfp-benefit-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-benefit-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.yfp-benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.yfp-benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-benefit-card h3 {
  color: var(--text-dark);
}

.yfp-benefit-card p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

html[data-theme="dark"] .yfp-benefit-card p {
  color: var(--text-dark-dim);
}

/* ─── TRANSFORMATION CARDS ───────────────────────────────────────── */

.yfp-transformation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-transformation-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-transformation-card:hover {
  box-shadow: var(--shadow-lg);
}

.yfp-transformation-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--bg-secondary);
}

html[data-theme="dark"] .yfp-transformation-images {
  background: var(--bg-secondary-dark);
}

.yfp-transformation-info {
  padding: 24px;
}

.yfp-transformation-info h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-transformation-info h3 {
  color: var(--text-dark);
}

.yfp-transformation-location {
  font-size: 0.875rem;
  color: var(--text-light-dim);
  margin-bottom: 12px;
}

html[data-theme="dark"] .yfp-transformation-location {
  color: var(--text-dark-dim);
}

.yfp-transformation-result {
  margin-bottom: 16px;
}

.yfp-transformation-quote {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

html[data-theme="dark"] .yfp-transformation-quote {
  color: var(--text-dark-dim);
}

/* ─── STEPS SECTION ──────────────────────────────────────────────── */

.yfp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

@media (max-width: 1024px) {
  .yfp-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .yfp-steps { grid-template-columns: 1fr; gap: 24px; }
}

.yfp-step {
  text-align: center;
  position: relative;
}

.yfp-step-number {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.yfp-step h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-step h3 {
  color: var(--text-dark);
}

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

html[data-theme="dark"] .yfp-step p {
  color: var(--text-dark-dim);
}

.yfp-step-arrow {
  position: absolute;
  right: -20px;
  top: 24px;
  font-size: 1.5rem;
  color: var(--blue);
  display: none;
}

@media (min-width: 1025px) {
  .yfp-step:not(:last-child) .yfp-step-arrow {
    display: block;
  }
}

/* ─── PRICING GRID ───────────────────────────────────────────────── */

.yfp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .yfp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-pricing-grid { grid-template-columns: 1fr; }
}

.yfp-pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

html[data-theme="dark"] .yfp-pricing-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.yfp-pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
  transform: scale(1.02);
}

.yfp-badge-featured {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.yfp-pricing-card h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-pricing-card h3 {
  color: var(--text-dark);
}

.yfp-pricing-desc {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

html[data-theme="dark"] .yfp-pricing-desc {
  color: var(--text-dark-dim);
}

.yfp-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  margin: 16px 0 8px;
}

.yfp-price span {
  font-size: 1.5rem;
}

.yfp-price-period {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

html[data-theme="dark"] .yfp-price-period {
  color: var(--text-dark-muted);
}

.yfp-features-list {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
}

.yfp-features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light-dim);
  font-size: 0.95rem;
}

html[data-theme="dark"] .yfp-features-list li {
  border-color: var(--border-dark);
  color: var(--text-dark-dim);
}

.yfp-features-list li:before {
  content: "✓ ";
  color: var(--green);
  font-weight: 800;
  margin-right: 8px;
}

.yfp-btn--block {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ─── TESTIMONIALS GRID ──────────────────────────────────────────── */

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

@media (max-width: 1024px) {
  .yfp-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-testimonials-grid { grid-template-columns: 1fr; }
}

.yfp-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-testimonial {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.yfp-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.yfp-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.yfp-testimonial-meta h4 {
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

html[data-theme="dark"] .yfp-testimonial-meta h4 {
  color: var(--text-dark);
}

.yfp-testimonial-meta p {
  font-size: 0.875rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-testimonial-meta p {
  color: var(--text-dark-dim);
}

.yfp-testimonial-rating {
  color: #FBBF24;
  margin-bottom: 12px;
  font-size: 1rem;
}

.yfp-testimonial-text {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

html[data-theme="dark"] .yfp-testimonial-text {
  color: var(--text-dark-dim);
}

/* ─── CREDENTIALS LIST ───────────────────────────────────────────── */

.yfp-credentials-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.yfp-credential {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-credential {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-credential:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.yfp-credential-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.yfp-credential h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-credential h4 {
  color: var(--text-dark);
}

.yfp-credential p {
  font-size: 0.95rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-credential p {
  color: var(--text-dark-dim);
}

/* ─── FINAL CTA SECTION ──────────────────────────────────────────── */

.yfp-cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yfp-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.yfp-cta-final h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: white;
  position: relative;
  z-index: 1;
}

.yfp-cta-final p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.yfp-btn--white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}

.yfp-btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ─── FAQ LIST ───────────────────────────────────────────────────── */

.yfp-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.yfp-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

html[data-theme="dark"] .yfp-faq-item {
  border-color: var(--border-dark);
}

.yfp-faq-item:last-child {
  border-bottom: none;
}

.yfp-faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

html[data-theme="dark"] .yfp-faq-q {
  color: var(--text-dark);
}

.yfp-faq-q:hover {
  color: var(--blue);
}

.yfp-faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.yfp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  padding-top: 0;
}

.yfp-faq-item.open .yfp-faq-a {
  max-height: 500px;
  padding-top: 16px;
}

.yfp-faq-a p {
  color: var(--text-light-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

html[data-theme="dark"] .yfp-faq-a p {
  color: var(--text-dark-dim);
}

/* ─── PREMIUM HERO SECTION ──────────────────────────────────────── */

.yfp-hero-premium {
  position: relative;
  padding: 100px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.yfp-hero-premium-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.yfp-hero-premium-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F9FAFB 0%, #EFF6FF 50%, #F5F3EE 100%);
}

.yfp-hero-premium-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.yfp-hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

.yfp-badge-icon {
  font-weight: 800;
}

.yfp-hero-premium-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

html[data-theme="dark"] .yfp-hero-premium-title {
  color: white;
}

.yfp-hero-premium-subtitle {
  font-size: 1.25rem;
  color: var(--text-light-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

html[data-theme="dark"] .yfp-hero-premium-subtitle {
  color: var(--text-dark-dim);
}

.yfp-hero-premium-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.yfp-btn-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.yfp-btn--primary-premium:hover .yfp-btn-icon {
  transform: translateX(4px);
}

.yfp-proof-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .yfp-proof-premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.yfp-proof-premium-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yfp-proof-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.yfp-proof-premium-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}

.yfp-proof-premium-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-proof-premium-item span {
  color: var(--text-dark-dim);
}

/* ─── PREMIUM SECTION HEADER ────────────────────────────────────── */

.yfp-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.yfp-section--premium-light {
  background: linear-gradient(135deg, #F9FAFB 0%, #F5F3EE 100%);
}

html[data-theme="dark"] .yfp-section--premium-light {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* ─── PREMIUM BENEFITS ──────────────────────────────────────────── */

.yfp-benefits-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .yfp-benefits-premium { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .yfp-benefits-premium { grid-template-columns: 1fr; gap: 24px; }
}

.yfp-benefit-premium {
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

html[data-theme="dark"] .yfp-benefit-premium {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-benefit-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
  border-color: var(--blue);
}

.yfp-benefit-premium-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.yfp-benefit-premium h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-benefit-premium h3 {
  color: white;
}

.yfp-benefit-premium p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

html[data-theme="dark"] .yfp-benefit-premium p {
  color: var(--text-dark-dim);
}

.yfp-benefit-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 16px;
}

.yfp-benefit-premium:hover .yfp-benefit-icon {
  color: var(--blue-hover);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ─── PREMIUM PRICING ──────────────────────────────────────────── */

.yfp-pricing-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .yfp-pricing-premium { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-pricing-premium { grid-template-columns: 1fr; }
}

.yfp-pricing-premium-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

html[data-theme="dark"] .yfp-pricing-premium-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-pricing-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.yfp-pricing-premium-featured {
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
  transform: scale(1.02);
}

.yfp-pricing-premium-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.yfp-pricing-premium-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.yfp-pricing-premium-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-pricing-premium-card h3 {
  color: white;
}

.yfp-pricing-premium-desc {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

html[data-theme="dark"] .yfp-pricing-premium-desc {
  color: var(--text-dark-dim);
}

.yfp-pricing-premium-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue);
  margin: 20px 0 8px;
}

.yfp-pricing-premium-save {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.yfp-pricing-premium-list {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
}

.yfp-pricing-premium-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

html[data-theme="dark"] .yfp-pricing-premium-list li {
  border-color: var(--border-dark);
  color: var(--text-dark-dim);
}

.yfp-check {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

/* ─── PREMIUM STEPS ────────────────────────────────────────────── */

.yfp-steps-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .yfp-steps-premium { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-steps-premium { grid-template-columns: 1fr; }
}

.yfp-step-premium {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

html[data-theme="dark"] .yfp-step-premium {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-step-premium:hover {
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.1);
  border-color: var(--blue);
}

.yfp-step-premium-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.yfp-step-premium-number {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 12px;
}

.yfp-step-premium h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-step-premium h3 {
  color: white;
}

.yfp-step-premium p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
}

html[data-theme="dark"] .yfp-step-premium p {
  color: var(--text-dark-dim);
}

.yfp-step-icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
  margin-bottom: 12px;
}

.yfp-step-premium:hover .yfp-step-icon {
  color: var(--blue-hover);
  transform: scale(1.15);
  transition: all 0.3s ease;
}

/* ─── PREMIUM TESTIMONIALS ────────────────────────────────────── */

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

@media (max-width: 1024px) {
  .yfp-testimonials-premium { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-testimonials-premium { grid-template-columns: 1fr; }
}

.yfp-testimonial-premium {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

html[data-theme="dark"] .yfp-testimonial-premium {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-testimonial-premium:hover {
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.yfp-testimonial-premium-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.yfp-testimonial-premium-result {
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: var(--blue);
  padding: 6px 12px;
  border-radius: 20px;
}

.yfp-testimonial-premium-stars {
  color: #FBBF24;
  font-size: 1rem;
}

.yfp-testimonial-premium-text {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

html[data-theme="dark"] .yfp-testimonial-premium-text {
  color: var(--text-dark-dim);
}

.yfp-testimonial-premium-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.yfp-testimonial-premium-author strong {
  color: var(--text-light);
  font-size: 1rem;
}

html[data-theme="dark"] .yfp-testimonial-premium-author strong {
  color: white;
}

.yfp-testimonial-premium-author span {
  color: var(--text-light-muted);
  font-size: 0.85rem;
}

html[data-theme="dark"] .yfp-testimonial-premium-author span {
  color: var(--text-dark-muted);
}

/* ─── PREMIUM FAQ ──────────────────────────────────────────────── */

.yfp-faq-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.yfp-faq-premium-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

html[data-theme="dark"] .yfp-faq-premium-item {
  border-color: var(--border-dark);
}

.yfp-faq-premium-item:last-child {
  border-bottom: none;
}

.yfp-faq-premium-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .yfp-faq-premium-q {
  color: white;
}

.yfp-faq-premium-q:hover {
  color: var(--blue);
}

.yfp-faq-premium-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.yfp-faq-premium-item.open .yfp-faq-premium-icon {
  transform: rotate(45deg);
}

.yfp-faq-premium-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.yfp-faq-premium-item.open .yfp-faq-premium-a {
  max-height: 500px;
  padding-top: 16px;
}

.yfp-faq-premium-a p {
  color: var(--text-light-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

html[data-theme="dark"] .yfp-faq-premium-a p {
  color: var(--text-dark-dim);
}

/* ─── PREMIUM CTA SECTION ──────────────────────────────────────── */

.yfp-cta-premium {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.yfp-cta-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.yfp-cta-premium-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.yfp-cta-premium-content h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: white;
}

.yfp-cta-premium-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── IMPROVED BUTTON STYLING ──────────────────────────────────── */

.yfp-btn--primary-premium {
  background: var(--blue);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: none;
}

.yfp-btn--primary-premium:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.yfp-btn--outline-premium {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-weight: 700;
}

.yfp-btn--outline-premium:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.yfp-btn--white {
  background: white;
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.yfp-btn--white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */

.yfp-footer {
  background: var(--text-light);
  color: white;
  padding: 80px 0 0;
  margin-top: 120px;
  position: relative;
}

html[data-theme="dark"] .yfp-footer {
  background: #000000;
}

.yfp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .yfp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .yfp-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.yfp-footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--blue);
  margin-bottom: 16px;
}

.yfp-footer-logo span {
  color: white;
}

.yfp-footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 280px;
}

.yfp-footer h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.yfp-footer ul {
  list-style: none;
}

.yfp-footer ul li {
  margin-bottom: 12px;
}

.yfp-footer ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color var(--transition);
  text-decoration: none;
}

.yfp-footer ul a:hover {
  color: var(--blue);
}

.yfp-footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
  padding: 30px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .yfp-footer-bottom {
    grid-template-columns: 1fr;
  }
}

/* ─── IMPROVED BUTTON STYLING ────────────────────────────────────── */

.yfp-btn {
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.yfp-btn:active {
  transform: scale(0.98);
}

.yfp-btn--primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.yfp-btn--primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.yfp-btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}

.yfp-btn--outline:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}

.yfp-btn--lg {
  padding: 16px 48px;
  font-size: 1.125rem;
  font-weight: 700;
}

.yfp-btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.yfp-btn--white {
  background: white;
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.yfp-btn--white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.yfp-btn--block {
  width: 100%;
  justify-content: center;
}

/* ─── IMAGE STYLING ──────────────────────────────────────────────── */

.yfp-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-secondary) 100%);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-light-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  transition: all var(--transition);
}

html[data-theme="dark"] .yfp-photo-placeholder {
  background: linear-gradient(135deg, var(--surface-dark) 0%, var(--bg-secondary-dark) 100%);
  border-color: var(--border-dark);
  color: var(--text-dark-muted);
}

.yfp-photo-placeholder:hover {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.yfp-photo-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.6;
}

/* ─── BADGE STYLING ──────────────────────────────────────────────── */

.yfp-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── FONTS: loaded via @import at top of file ──────────────────── */

/* ═══════════════════════════════════════════════════════════════
   GENDER PAGES — Women & Men landing page styles
═══════════════════════════════════════════════════════════════ */

/* ─── GENDER COLORS ────────────────────────────────────────────── */

:root {
  --women-primary:    #E91E8C;
  --women-hover:      #C2177A;
  --women-light:      #FCE4F3;
  --women-gradient:   linear-gradient(135deg, #FFF0F8 0%, #F3E8FF 50%, #FFF5F0 100%);

  --men-primary:      #1565C0;
  --men-hover:        #0D47A1;
  --men-light:        #E3F2FD;
  --men-gradient:     linear-gradient(135deg, #EFF6FF 0%, #E8EEFF 50%, #F0F4FF 100%);
}

/* ─── GENDER BREADCRUMB ─────────────────────────────────────────── */

.yfp-gender-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light-dim);
  margin-bottom: 24px;
  justify-content: center;
}

html[data-theme="dark"] .yfp-gender-breadcrumb {
  color: var(--text-dark-dim);
}

.yfp-gender-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.yfp-gender-breadcrumb a:hover { opacity: 0.7; }

.yfp-gender-breadcrumb--active {
  font-weight: 600;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-gender-breadcrumb--active {
  color: var(--text-dark);
}

/* ─── WOMEN HERO ────────────────────────────────────────────────── */

.yfp-hero-women-gradient {
  width: 100%;
  height: 100%;
  background: var(--women-gradient);
}

html[data-theme="dark"] .yfp-hero-women-gradient {
  background: linear-gradient(135deg, #1a0f18 0%, #130b1a 50%, #1a0f10 100%);
}

.yfp-hero-women-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.yfp-hero-women-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.yfp-hero-women-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(147,51,234,0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
}

.yfp-badge-women {
  background: linear-gradient(135deg, rgba(233,30,140,0.1) 0%, rgba(233,30,140,0.05) 100%) !important;
  border: 1px solid rgba(233,30,140,0.25) !important;
  color: var(--women-primary) !important;
}

.yfp-accent-women {
  color: var(--women-primary);
}

.yfp-eyebrow-women {
  color: var(--women-primary) !important;
}

.yfp-eyebrow-women::before {
  background: var(--women-primary) !important;
}

/* ─── MEN HERO ──────────────────────────────────────────────────── */

.yfp-hero-men-gradient {
  width: 100%;
  height: 100%;
  background: var(--men-gradient);
}

html[data-theme="dark"] .yfp-hero-men-gradient {
  background: linear-gradient(135deg, #0a0f1a 0%, #0b0e1a 50%, #0a101a 100%);
}

.yfp-hero-men-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.yfp-hero-men-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.yfp-hero-men-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30,64,175,0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
}

.yfp-badge-men {
  background: linear-gradient(135deg, rgba(21,101,192,0.1) 0%, rgba(21,101,192,0.05) 100%) !important;
  border: 1px solid rgba(21,101,192,0.25) !important;
  color: var(--men-primary) !important;
}

.yfp-accent-men {
  color: var(--men-primary);
}

.yfp-eyebrow-men {
  color: var(--men-primary) !important;
}

.yfp-eyebrow-men::before {
  background: var(--men-primary) !important;
}

/* ─── GENDER BUTTONS ────────────────────────────────────────────── */

.yfp-btn--women-primary {
  background: var(--women-primary);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(233,30,140,0.3);
  border: none;
}

.yfp-btn--women-primary:hover {
  background: var(--women-hover);
  box-shadow: 0 8px 25px rgba(233,30,140,0.4);
  transform: translateY(-2px);
}

.yfp-btn--men-primary {
  background: var(--men-primary);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(21,101,192,0.3);
  border: none;
}

.yfp-btn--men-primary:hover {
  background: var(--men-hover);
  box-shadow: 0 8px 25px rgba(21,101,192,0.4);
  transform: translateY(-2px);
}

/* ─── PAIN GRID ─────────────────────────────────────────────────── */

.yfp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .yfp-pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .yfp-pain-grid { grid-template-columns: 1fr; gap: 24px; }
}

.yfp-pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] .yfp-pain-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.yfp-pain-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.yfp-pain-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-pain-card h3 {
  color: white;
}

.yfp-pain-card p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

html[data-theme="dark"] .yfp-pain-card p {
  color: var(--text-dark-dim);
}

/* ─── GOALS GRID ────────────────────────────────────────────────── */

.yfp-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .yfp-goals-grid { grid-template-columns: 1fr; gap: 24px; max-width: 600px; margin: 0 auto; }
}

.yfp-goal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] .yfp-goal-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-goal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.yfp-goal-card--women:hover {
  border-color: var(--women-primary);
  box-shadow: 0 20px 40px rgba(233,30,140,0.15);
}

.yfp-goal-card--men:hover {
  border-color: var(--men-primary);
  box-shadow: 0 20px 40px rgba(21,101,192,0.15);
}

.yfp-goal-visual {
  background: var(--bg-secondary);
}

html[data-theme="dark"] .yfp-goal-visual {
  background: var(--bg-secondary-dark);
}

.yfp-goal-info {
  padding: 24px;
}

.yfp-goal-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-goal-info h3 {
  color: white;
}

.yfp-goal-info p {
  color: var(--text-light-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

html[data-theme="dark"] .yfp-goal-info p {
  color: var(--text-dark-dim);
}

.yfp-goal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yfp-goal-list li {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  padding-left: 20px;
  position: relative;
}

html[data-theme="dark"] .yfp-goal-list li {
  color: var(--text-dark-dim);
}

.yfp-goal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.yfp-goal-card--women .yfp-goal-list li::before {
  color: var(--women-primary);
}

.yfp-goal-card--men .yfp-goal-list li::before {
  color: var(--men-primary);
}

/* ─── GENDER-SPECIFIC FEATURED PRICING ─────────────────────────── */

.yfp-pricing-featured-women {
  border-color: var(--women-primary) !important;
  box-shadow: 0 0 30px rgba(233,30,140,0.15) !important;
}

.yfp-pricing-featured-women .yfp-pricing-premium-badge {
  background: var(--women-primary) !important;
}

.yfp-pricing-featured-men {
  border-color: var(--men-primary) !important;
  box-shadow: 0 0 30px rgba(21,101,192,0.15) !important;
}

.yfp-pricing-featured-men .yfp-pricing-premium-badge {
  background: var(--men-primary) !important;
}

/* ─── GENDER-SPECIFIC TESTIMONIAL RESULTS ───────────────────────── */

.yfp-result-women {
  background: linear-gradient(135deg, rgba(233,30,140,0.1) 0%, rgba(233,30,140,0.05) 100%) !important;
  color: var(--women-primary) !important;
}

.yfp-result-men {
  background: linear-gradient(135deg, rgba(21,101,192,0.1) 0%, rgba(21,101,192,0.05) 100%) !important;
  color: var(--men-primary) !important;
}

/* ─── GENDER-SPECIFIC CTA SECTIONS ──────────────────────────────── */

.yfp-cta-women {
  background: linear-gradient(135deg, var(--women-primary) 0%, var(--women-hover) 100%) !important;
}

.yfp-cta-men {
  background: linear-gradient(135deg, var(--men-primary) 0%, var(--men-hover) 100%) !important;
}

/* ─── NAV RIGHT GROUP ───────────────────────────────────────────── */

.yfp-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .yfp-gender-switcher { display: none; }
}

/* ─── GENDER SWITCHER IN NAV ─────────────────────────────────────── */

.yfp-gender-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4px;
}

html[data-theme="dark"] .yfp-gender-switcher {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-gender-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  color: var(--text-light-dim);
  background: transparent;
}

html[data-theme="dark"] .yfp-gender-btn {
  color: var(--text-dark-dim);
}

.yfp-gender-btn--women.active,
.yfp-gender-btn--women:hover {
  background: var(--women-primary);
  color: white;
}

.yfp-gender-btn--men.active,
.yfp-gender-btn--men:hover {
  background: var(--men-primary);
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   VISUAL-RICH REDESIGN — Landing Page v2
═══════════════════════════════════════════════════════════════ */

/* ─── HERO SPLIT LAYOUT ─────────────────────────────────────── */

.yfp-hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 580px;
}

.yfp-hero-text-col { z-index: 1; }

.yfp-hero-photos-col {
  position: relative;
  height: 520px;
}

.yfp-hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 100%;
}

.yfp-hero-photo-a {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  margin-top: 0;
}

.yfp-hero-photo-b {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  margin-top: 48px;
}

.yfp-hero-photo-a img,
.yfp-hero-photo-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yfp-floating-result-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  min-width: 200px;
}

html[data-theme="dark"] .yfp-floating-result-card {
  background: #1F2937;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.yfp-floating-result-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.yfp-floating-result-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
  font-family: var(--font-display);
}

html[data-theme="dark"] .yfp-floating-result-text strong {
  color: var(--text-dark);
}

.yfp-floating-result-text span {
  font-size: 0.75rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-floating-result-text span {
  color: var(--text-dark-dim);
}

.yfp-floating-rating-card {
  position: absolute;
  top: 24px;
  right: -20px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  text-align: center;
  z-index: 10;
}

html[data-theme="dark"] .yfp-floating-rating-card {
  background: #1F2937;
}

.yfp-floating-rating-card .yfp-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.yfp-floating-rating-card .yfp-rating-num {
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-floating-rating-card .yfp-rating-num {
  color: var(--text-dark);
}

.yfp-floating-rating-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-floating-rating-card small {
  color: var(--text-dark-dim);
}

/* ─── RESULTS TRANSFORMATION STRIP ─────────────────────────── */

.yfp-strip-section {
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

html[data-theme="dark"] .yfp-strip-section {
  border-color: var(--border-dark);
}

.yfp-strip-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-dim);
  margin-bottom: 20px;
}

html[data-theme="dark"] .yfp-strip-label {
  color: var(--text-dark-dim);
}

.yfp-strip-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 24px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}

.yfp-strip-scroll::-webkit-scrollbar { display: none; }

.yfp-strip-card {
  flex-shrink: 0;
  width: 150px;
  height: 190px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.yfp-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yfp-strip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}

.yfp-strip-card-badge {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.yfp-strip-card-badge small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

/* ─── EXPERT TEAM SECTION ───────────────────────────────────── */

.yfp-expert-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.yfp-expert-roles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.yfp-expert-role-tag {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--text-light);
  border: 1.5px solid var(--border);
}

html[data-theme="dark"] .yfp-expert-role-tag {
  background: var(--surface-dark);
  color: var(--text-dark);
  border-color: var(--border-dark);
}

/* ─── PLAN PREVIEW CARD ─────────────────────────────────────── */

.yfp-plan-preview-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
}

html[data-theme="dark"] .yfp-plan-preview-card {
  background: #1A1A2E;
  border-color: var(--border-dark);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.yfp-plan-preview-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

html[data-theme="dark"] .yfp-plan-preview-head {
  border-color: var(--border-dark);
}

.yfp-plan-preview-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.yfp-plan-preview-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-plan-preview-name {
  color: var(--text-dark);
}

.yfp-plan-preview-sub {
  font-size: 0.78rem;
  color: var(--text-light-dim);
  margin-top: 2px;
}

html[data-theme="dark"] .yfp-plan-preview-sub {
  color: var(--text-dark-dim);
}

.yfp-plan-preview-status {
  margin-left: auto;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.yfp-plan-day-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

html[data-theme="dark"] .yfp-plan-day-row {
  border-color: var(--border-dark);
}

.yfp-plan-day-row:last-of-type { border-bottom: none; }

.yfp-plan-day-tag {
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  min-width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.yfp-plan-day-name {
  flex: 1;
  font-weight: 500;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-plan-day-name {
  color: var(--text-dark);
}

.yfp-plan-day-time {
  font-size: 0.78rem;
  color: var(--text-light-dim);
  font-weight: 500;
}

html[data-theme="dark"] .yfp-plan-day-time {
  color: var(--text-dark-dim);
}

.yfp-plan-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

html[data-theme="dark"] .yfp-plan-preview-stats {
  border-color: var(--border-dark);
}

.yfp-plan-stat-mini {
  text-align: center;
  padding: 10px 6px;
  background: var(--surface);
  border-radius: 12px;
}

html[data-theme="dark"] .yfp-plan-stat-mini {
  background: var(--surface-dark);
}

.yfp-plan-stat-mini strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-plan-stat-mini strong {
  color: var(--text-dark);
}

.yfp-plan-stat-mini small {
  font-size: 0.68rem;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-plan-stat-mini small {
  color: var(--text-dark-dim);
}

/* ─── PLAN SHOWCASE SCREENSHOTS ─────────────────────────────── */

.yfp-showcase-section { position: relative; }

.yfp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.yfp-showcase-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid var(--border-light);
  background: white;
}

html[data-theme="dark"] .yfp-showcase-card {
  background: #1A1A2E;
  border-color: var(--border-dark);
}

.yfp-showcase-card-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

html[data-theme="dark"] .yfp-showcase-card-header {
  border-color: var(--border-dark);
}

.yfp-showcase-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.yfp-showcase-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  flex: 1;
}

html[data-theme="dark"] .yfp-showcase-card-title {
  color: var(--text-dark);
}

.yfp-showcase-card-body {
  padding: 16px;
}

.yfp-exercise-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
}

html[data-theme="dark"] .yfp-exercise-row {
  border-color: var(--border-dark);
  color: var(--text-dark);
}

.yfp-exercise-row:last-child { border-bottom: none; }

.yfp-exercise-num {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--text-light-dim);
}

html[data-theme="dark"] .yfp-exercise-num {
  background: var(--surface-dark);
  color: var(--text-dark-dim);
}

.yfp-exercise-name { flex: 1; font-weight: 500; }

.yfp-exercise-sets {
  font-size: 0.72rem;
  color: var(--text-light-dim);
  font-weight: 600;
}

html[data-theme="dark"] .yfp-exercise-sets { color: var(--text-dark-dim); }

/* ─── FEATURES ROW 6 ────────────────────────────────────────── */

.yfp-features-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}

html[data-theme="dark"] .yfp-features-6 {
  border-color: var(--border-dark);
}

.yfp-feature-6-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

html[data-theme="dark"] .yfp-feature-6-item {
  border-color: var(--border-dark);
}

.yfp-feature-6-item:last-child { border-right: none; }

.yfp-feature-6-item:hover { background: var(--surface); }

html[data-theme="dark"] .yfp-feature-6-item:hover { background: var(--surface-dark); }

.yfp-feature-6-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yfp-feature-6-item h4 {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-light);
  margin: 0;
}

html[data-theme="dark"] .yfp-feature-6-item h4 { color: var(--text-dark); }

/* ─── SPLIT 2-COL CARDS ─────────────────────────────────────── */

.yfp-split2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.yfp-split2-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

html[data-theme="dark"] .yfp-split2-card {
  background: var(--bg-secondary-dark);
  border-color: var(--border-dark);
}

.yfp-split2-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.yfp-split2-card-body {
  padding: 28px;
}

.yfp-split2-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-split2-card-body h3 { color: var(--text-dark); }

.yfp-split2-card-body p {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

html[data-theme="dark"] .yfp-split2-card-body p { color: var(--text-dark-dim); }

/* ─── STATS GIANT ───────────────────────────────────────────── */

.yfp-stats-giant {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
}

html[data-theme="dark"] .yfp-stats-giant {
  border-color: var(--border-dark);
}

.yfp-stats-giant-item {
  padding: 40px 24px;
  border-right: 1px solid var(--border-light);
}

html[data-theme="dark"] .yfp-stats-giant-item {
  border-color: var(--border-dark);
}

.yfp-stats-giant-item:last-child { border-right: none; }

.yfp-stats-giant-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.yfp-stats-giant-desc {
  font-size: 0.85rem;
  color: var(--text-light-dim);
  line-height: 1.5;
}

html[data-theme="dark"] .yfp-stats-giant-desc { color: var(--text-dark-dim); }

/* ─── BENEFIT CHIPS ─────────────────────────────────────────── */

.yfp-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.yfp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.yfp-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.yfp-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.yfp-chip--blue   { background: #EFF6FF; color: #1D4ED8; }
.yfp-chip--green  { background: #F0FDF4; color: #15803D; }
.yfp-chip--pink   { background: #FDF2F8; color: #BE185D; }
.yfp-chip--orange { background: #FFF7ED; color: #C2410C; }
.yfp-chip--purple { background: #F5F3FF; color: #6D28D9; }
.yfp-chip--teal   { background: #F0FDFA; color: #0F766E; }
.yfp-chip--red    { background: #FEF2F2; color: #B91C1C; }
.yfp-chip--indigo { background: #EEF2FF; color: #4338CA; }

html[data-theme="dark"] .yfp-chip--blue   { background: rgba(29,78,216,0.15); color: #93C5FD; }
html[data-theme="dark"] .yfp-chip--green  { background: rgba(21,128,61,0.15); color: #86EFAC; }
html[data-theme="dark"] .yfp-chip--pink   { background: rgba(190,24,93,0.15); color: #F9A8D4; }
html[data-theme="dark"] .yfp-chip--orange { background: rgba(194,65,12,0.15); color: #FED7AA; }
html[data-theme="dark"] .yfp-chip--purple { background: rgba(109,40,217,0.15); color: #C4B5FD; }
html[data-theme="dark"] .yfp-chip--teal   { background: rgba(15,118,110,0.15); color: #5EEAD4; }
html[data-theme="dark"] .yfp-chip--red    { background: rgba(185,28,28,0.15); color: #FCA5A5; }
html[data-theme="dark"] .yfp-chip--indigo { background: rgba(67,56,202,0.15); color: #A5B4FC; }

/* ─── STORIES / TESTIMONIALS GRID ──────────────────────────── */

.yfp-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.yfp-story-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--surface);
}

html[data-theme="dark"] .yfp-story-card {
  background: var(--surface-dark);
}

.yfp-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.yfp-story-card:hover img { transform: scale(1.06); }

.yfp-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: opacity 0.3s ease;
}

.yfp-story-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.yfp-story-card:hover .yfp-story-play { transform: translate(-50%,-50%) scale(1.08); }

.yfp-story-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
}

.yfp-story-name {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.yfp-story-caption {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  margin-top: 2px;
}

.yfp-story-result-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111;
}

/* ─── EXERCISE ATLAS BANNER ─────────────────────────────────── */

.yfp-atlas-banner {
  border-radius: 28px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.yfp-atlas-banner-text { position: relative; z-index: 1; }

.yfp-atlas-banner-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.yfp-atlas-banner-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.yfp-atlas-banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .yfp-hero-split-inner { gap: 40px; }
  .yfp-expert-split { gap: 40px; }
  .yfp-features-6 { grid-template-columns: repeat(3, 1fr); }
  .yfp-feature-6-item:nth-child(3) { border-right: none; }
  .yfp-feature-6-item:nth-child(4) { border-top: 1px solid var(--border-light); }
  .yfp-feature-6-item:nth-child(5) { border-top: 1px solid var(--border-light); }
  .yfp-feature-6-item:nth-child(6) { border-top: 1px solid var(--border-light); border-right: none; }
  .yfp-atlas-banner { padding: 40px 40px; }
  .yfp-atlas-banner-num { font-size: 3.5rem; }
}

@media (max-width: 768px) {
  .yfp-hero-split-inner { grid-template-columns: 1fr; gap: 32px; }
  .yfp-hero-photos-col { height: 320px; }
  .yfp-floating-result-card { left: 8px; min-width: 160px; }
  .yfp-floating-rating-card { right: 8px; }
  .yfp-expert-split { grid-template-columns: 1fr; gap: 40px; }
  .yfp-showcase-grid { grid-template-columns: 1fr; }
  .yfp-features-6 { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .yfp-feature-6-item { border-top: none !important; }
  .yfp-feature-6-item:nth-child(2n) { border-right: none !important; }
  .yfp-feature-6-item:nth-child(2) { border-right: none; }
  .yfp-split2 { grid-template-columns: 1fr; }
  .yfp-stats-giant { grid-template-columns: repeat(2, 1fr); }
  .yfp-stats-giant-item:nth-child(2) { border-right: none; }
  .yfp-stats-giant-item:nth-child(3) { border-top: 1px solid var(--border-light); }
  .yfp-stats-giant-item:nth-child(4) { border-top: 1px solid var(--border-light); border-right: none; }
  .yfp-stats-giant-num { font-size: 2.5rem; }
  .yfp-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .yfp-atlas-banner { flex-direction: column; padding: 36px 28px; text-align: center; }
  .yfp-atlas-banner-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .yfp-hero-photos-col { display: none; }
  .yfp-stories-grid { grid-template-columns: 1fr 1fr; }
  .yfp-stats-giant { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Gender Hero Cards & Path Cards
═══════════════════════════════════════════════════════════════ */

/* ─── GENDER HERO CARDS (homepage hero) ─────────────────────── */

.yfp-gender-hero-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .yfp-gender-hero-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-gender-hero-card:hover {
  transform: translateY(-4px);
}

.yfp-gender-hero-women:hover {
  border-color: var(--women-primary);
  box-shadow: 0 12px 32px rgba(233,30,140,0.15);
}

.yfp-gender-hero-men:hover {
  border-color: var(--men-primary);
  box-shadow: 0 12px 32px rgba(21,101,192,0.15);
}

.yfp-gender-hero-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.yfp-gender-hero-women .yfp-gender-hero-icon { color: var(--women-primary); }
.yfp-gender-hero-men .yfp-gender-hero-icon { color: var(--men-primary); }

.yfp-gender-hero-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

html[data-theme="dark"] .yfp-gender-hero-title { color: white; }

.yfp-gender-hero-sub {
  font-size: 0.78rem;
  color: var(--text-light-dim);
  line-height: 1.4;
}

html[data-theme="dark"] .yfp-gender-hero-sub { color: var(--text-dark-dim); }

.yfp-gender-hero-arrow {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 1rem;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.yfp-gender-hero-card:hover .yfp-gender-hero-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.yfp-gender-hero-women .yfp-gender-hero-arrow { color: var(--women-primary); }
.yfp-gender-hero-men .yfp-gender-hero-arrow { color: var(--men-primary); }

/* ─── PATH CARDS (homepage "Choose Your Path" section) ──────── */

.yfp-path-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  background: var(--surface);
}

html[data-theme="dark"] .yfp-path-card {
  background: var(--surface-dark);
  border-color: var(--border-dark);
}

.yfp-path-card:hover { transform: translateY(-6px); }

.yfp-path-card-women:hover {
  box-shadow: 0 20px 48px rgba(233,30,140,0.18);
  border-color: rgba(233,30,140,0.35);
}

.yfp-path-card-men:hover {
  box-shadow: 0 20px 48px rgba(21,101,192,0.18);
  border-color: rgba(21,101,192,0.35);
}

.yfp-path-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.yfp-path-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yfp-path-card:hover .yfp-path-card-photo img { transform: scale(1.04); }

.yfp-path-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.yfp-path-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yfp-path-card-gender {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.yfp-path-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.25;
  margin: 0;
}

html[data-theme="dark"] .yfp-path-card-title { color: white; }

.yfp-path-card-desc {
  font-size: 0.88rem;
  color: var(--text-light-dim);
  line-height: 1.65;
  margin: 0;
}

html[data-theme="dark"] .yfp-path-card-desc { color: var(--text-dark-dim); }

.yfp-path-card-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yfp-path-card-list li {
  font-size: 0.85rem;
  color: var(--text-light-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

html[data-theme="dark"] .yfp-path-card-list li { color: var(--text-dark-dim); }

.yfp-path-card-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.yfp-path-card:hover .yfp-path-card-cta {
  opacity: 0.9;
  transform: translateX(3px);
}

/* ─── SPLIT2 CARD WITH REAL PHOTO ────────────────────────────── */

.yfp-split2-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

.yfp-split2-card-body {
  padding: 24px;
}

.yfp-split2-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

html[data-theme="dark"] .yfp-split2-card-body h3 { color: white; }

.yfp-split2-card-body p {
  font-size: 0.9rem;
  color: var(--text-light-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}

html[data-theme="dark"] .yfp-split2-card-body p { color: var(--text-dark-dim); }

/* ─── GENDER BREADCRUMB ──────────────────────────────────────── */

.yfp-gender-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light-dim);
  margin-bottom: 20px;
}

html[data-theme="dark"] .yfp-gender-breadcrumb { color: var(--text-dark-dim); }

.yfp-gender-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.yfp-gender-breadcrumb a:hover { color: var(--blue); }

.yfp-gender-breadcrumb--active { font-weight: 600; }

@media (max-width: 768px) {
  .yfp-gender-hero-card { padding: 16px 18px; }
  .yfp-path-card-photo { height: 160px; }
}

@media (max-width: 480px) {
  [style*="grid-template-columns:1fr 1fr"] .yfp-gender-hero-card { padding: 14px 16px; }
}
