/* 
 * Magnetic Dating Lab - Custom Styles
 * For Kajabi Theme
 */

/* CSS Custom Properties */
:root {
  /* Core Colors */
  --rose-deep: #b4537c;
  --rose-accent: #c85a7f;
  --teal-deep: #1a5c6b;
  --teal-medium: #2c7a8c;
  --terracotta: #d4745e;
  --ivory-warm: #faf7f2;
  --blush-soft: #efe3e3;
  --white-pure: #ffffff;
  --charcoal: #3a3a3a;
  --gold-champagne: #c7a76c;

  /* Button Colors */
  --btn-primary: #1a5c6b;
  --btn-secondary: #b4537c;
  --btn-tertiary: #d4745e;

  /* Accents */
  --slate-warm: #5b5b5b;
  --sage-muted: #8c9b8e;

  /* Typography */
  --font-serif: "Playfair Display", Cormorant, serif;
  --font-sans: "Inter", Montserrat, sans-serif;

  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(58, 58, 58, 0.08);
  --shadow-elevated: 0 4px 20px rgba(26, 92, 107, 0.15), 0 1px 3px rgba(26, 92, 107, 0.1);
  --shadow-cta: 0 6px 24px rgba(180, 83, 124, 0.25);
  --shadow-cta-hover: 0 8px 32px rgba(180, 83, 124, 0.35);
  --shadow-hero: 0 20px 60px rgba(58, 58, 58, 0.2);
  --shadow-testimonial: 0 2px 12px rgba(180, 83, 124, 0.12);
  --shadow-sticky: 0 -2px 16px rgba(26, 92, 107, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* MDL-specific typography additions */
.mdl-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mdl-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* MDL Trust Badges */
.mdl-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 48px;
  flex-wrap: wrap;
  max-width: 600px;
}

.mdl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.mdl-trust-icon {
  color: var(--gold-champagne);
  font-size: 16px;
}

/* MDL Hero Styles */
.mdl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-deep), var(--rose-deep));
}

.mdl-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.mdl-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 92, 107, 0.75), rgba(180, 83, 124, 0.75));
  z-index: 2;
  animation: gradientPulse 3s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 0.8; }
}

.mdl-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white-pure);
  text-align: center;
  width: 100%;
}

.mdl-hero-stat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(199, 167, 108, 0.95);
  color: var(--charcoal);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

@media (min-width: 768px) {
  .mdl-hero-stat {
    bottom: 40px;
    right: 40px;
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* MDL Cards */
.mdl-card {
  background: var(--white-pure);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-elevated);
  transition: all 200ms var(--ease-out);
  position: relative;
}

.mdl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(26, 92, 107, 0.15), 0 2px 6px rgba(26, 92, 107, 0.1);
}

.mdl-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.mdl-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.mdl-card-description {
  color: var(--charcoal);
  line-height: 1.6;
}

.mdl-card-badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white-pure);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* MDL Stat Counters */
.mdl-stat {
  text-align: center;
  padding: 24px;
}

.mdl-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--rose-accent);
  display: block;
  margin-bottom: 8px;
}

.mdl-stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  font-weight: 600;
}

/* MDL Timeline */
.mdl-timeline {
  max-width: 800px;
  margin: 48px auto;
  position: relative;
}

.mdl-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-champagne);
}

.mdl-timeline-item {
  position: relative;
  padding-left: 64px;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateX(0);
  transition: all 600ms var(--ease-out);
}

.mdl-timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--btn-primary);
  color: var(--white-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(26, 92, 107, 0.3);
}

.mdl-timeline-content h4 {
  color: var(--charcoal);
  margin-bottom: 8px;
}

/* MDL Testimonial Styles */
.mdl-testimonial-card {
  background: var(--white-pure);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-testimonial);
  border: 2px solid var(--rose-accent);
}

.mdl-testimonial-quote {
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
  color: var(--charcoal);
}

.mdl-testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: var(--gold-champagne);
  opacity: 0.5;
  font-family: var(--font-serif);
}

.mdl-testimonial-author {
  font-weight: 600;
  color: var(--charcoal);
}

.mdl-testimonial-role {
  font-size: 14px;
  color: var(--slate-warm);
}

/* MDL Pricing Box */
.mdl-pricing-box {
  max-width: 600px;
  margin: 48px auto;
  background: var(--white-pure);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-elevated);
  border: 2px solid var(--gold-champagne);
  text-align: center;
  transition: all 300ms var(--ease-out);
  opacity: 0;
  transform: scale(0.9);
}

.mdl-pricing-box.active {
  opacity: 1;
  transform: scale(1);
  animation: priceGlow 2s ease-in-out 0.5s;
}

@keyframes priceGlow {
  0%, 100% { box-shadow: var(--shadow-elevated); }
  50% { box-shadow: 0 8px 40px rgba(199, 167, 108, 0.4), 0 0 20px rgba(199, 167, 108, 0.3); }
}

.mdl-pricing-box:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(199, 167, 108, 0.3);
}

.mdl-pricing-amount {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 16px 0;
}

/* MDL Accordion */
.mdl-accordion-item {
  background: var(--white-pure);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all 300ms var(--ease-out);
}

.mdl-accordion-item:hover {
  box-shadow: var(--shadow-elevated);
}

.mdl-accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 200ms var(--ease-out);
  min-height: 44px;
}

.mdl-accordion-header:hover {
  background: rgba(239, 227, 227, 0.5);
}

.mdl-accordion-icon {
  color: var(--gold-champagne);
  font-size: 24px;
  transition: transform 300ms var(--ease-out);
  flex-shrink: 0;
}

.mdl-accordion-item.active .mdl-accordion-icon {
  transform: rotate(180deg);
}

.mdl-accordion-item.active {
  border-left: 4px solid var(--rose-accent);
  box-shadow: var(--shadow-elevated);
}

.mdl-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out);
}

.mdl-accordion-item.active .mdl-accordion-content {
  max-height: 1000px;
}

.mdl-accordion-body {
  padding: 0 24px 24px;
  color: var(--charcoal);
}

/* MDL Guarantee Badge */
.mdl-guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold-champagne);
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  animation: gentlePulse 3s ease-in-out infinite;
  margin: 24px auto;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* MDL Sticky CTA Bar */
.mdl-sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--teal-deep), var(--rose-deep));
  color: var(--white-pure);
  padding: 16px;
  box-shadow: var(--shadow-sticky);
  z-index: 9999;
  transition: bottom 300ms var(--ease-out);
}

.mdl-sticky-cta.visible {
  bottom: 0;
}

.mdl-sticky-cta-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .mdl-sticky-cta-content {
    flex-direction: row;
  }
}

/* MDL Reveal Animations */
.mdl-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 600ms var(--ease-out);
}

.mdl-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.mdl-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 700ms var(--ease-out);
}

.mdl-reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* MDL Section Backgrounds */
.mdl-section-white {
  background: var(--white-pure);
}

.mdl-section-blush {
  background: var(--blush-soft);
}

.mdl-section-ivory {
  background: var(--ivory-warm);
}

.mdl-section-gradient {
  background: linear-gradient(135deg, var(--rose-accent), var(--teal-medium));
  color: var(--white-pure);
}

.mdl-section-deep {
  background: linear-gradient(135deg, var(--teal-deep), var(--rose-deep));
  color: var(--white-pure);
}

/* MDL Grid Layouts */
.mdl-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .mdl-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mdl-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .mdl-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mdl-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mdl-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .mdl-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mdl-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MDL Button Enhancements */
.mdl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  min-height: 44px;
  position: relative;
  overflow: hidden;
}

.mdl-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 600ms ease;
}

.mdl-btn:hover::before {
  left: 100%;
}

.mdl-btn-primary {
  background: var(--btn-primary);
  color: var(--white-pure);
  box-shadow: var(--shadow-cta);
}

.mdl-btn-primary:hover {
  background: #226b7d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
}

.mdl-btn-secondary {
  background: var(--btn-secondary);
  color: var(--white-pure);
  box-shadow: var(--shadow-cta);
}

.mdl-btn-secondary:hover {
  background: #c05d88;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
}

.mdl-btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}

.mdl-btn-arrow:hover::after {
  transform: translateX(4px);
}

/* MDL Pull Quote */
.mdl-pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 48px auto;
  position: relative;
  padding: 0 48px;
}

.mdl-pull-quote::before,
.mdl-pull-quote::after {
  content: '"';
  position: absolute;
  font-size: 72px;
  color: var(--gold-champagne);
  opacity: 0.5;
  font-family: var(--font-serif);
}

.mdl-pull-quote::before {
  top: -20px;
  left: 0;
}

.mdl-pull-quote::after {
  bottom: -40px;
  right: 0;
}

/* Utility Classes */
.mdl-text-center {
  text-align: center;
}

.mdl-text-rose {
  color: var(--rose-accent);
}

.mdl-text-teal {
  color: var(--teal-deep);
}

.mdl-text-gold {
  color: var(--gold-champagne);
}

.mdl-bg-white {
  background-color: var(--white-pure);
}

.mdl-bg-blush {
  background-color: var(--blush-soft);
}

/* Responsive Images */
.mdl-img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.mdl-img-rounded {
  border-radius: 12px;
}

.mdl-img-circle {
  border-radius: 50%;
}

/* ========================================
 * GENERIC CLASSES (from source HTML)
 * These match the exact structure in the landing page
 * ======================================== */

/* Section Backgrounds with Responsive Padding */
.section-white {
  background: var(--white-pure);
  padding: 40px 4%;
}

.section-blush {
  background: var(--blush-soft);
  padding: 40px 4%;
}

.section-ivory {
  background: var(--ivory-warm);
  padding: 40px 4%;
}

.section-gradient {
  background: linear-gradient(135deg, var(--rose-accent), var(--teal-medium));
  color: var(--white-pure);
  padding: 40px 4%;
}

/* Tablet */
@media (min-width: 768px) {
  .section-white,
  .section-blush,
  .section-ivory,
  .section-gradient {
    padding: 60px 3%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section-white,
  .section-blush,
  .section-ivory,
  .section-gradient {
    padding: 80px 2%;
  }
}

/* Container with Responsive Padding */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Tablet */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

/* Support for uppercase headings */
.section-header h2[style*="text-transform: uppercase"],
.section-header h2[style*="TEXT-TRANSFORM: UPPERCASE"] {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 3.5vw, 38px);
}

/* Mobile-specific heading adjustments */
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .section-header h2[style*="text-transform: uppercase"] {
    font-size: 24px;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .section-header h2 {
    font-size: 36px;
  }
  
  .section-header h2[style*="text-transform: uppercase"] {
    font-size: 32px;
  }
}

.section-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 8px;
}

/* Tablet */
@media (min-width: 768px) {
  .section-intro {
    font-size: 18px;
    padding: 0;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section-intro {
    font-size: 20px;
  }
}

/* Grid Layouts with Full Responsive Support */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

/* Mobile landscape and small tablets */
@media (min-width: 600px) {
  .grid-2 {
    gap: 24px;
  }
}

/* Tablets and up - 2 columns */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .grid-2 {
    gap: 32px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

@media (min-width: 600px) {
  .grid-3 {
    gap: 24px;
  }
}

/* Small tablets - 2 columns */
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 3 columns */
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

/* Small mobile landscape */
@media (min-width: 480px) {
  .grid-4 {
    gap: 24px;
  }
}

/* Tablets - 2 columns */
@media (min-width: 600px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

/* Large desktop - more gap */
@media (min-width: 1280px) {
  .grid-4 {
    gap: 32px;
  }
}

/* Card Component with Responsive Padding */
.card {
  background: var(--white-pure);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-elevated);
  transition: all 200ms var(--ease-out);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Tablet */
@media (min-width: 768px) {
  .card {
    padding: 28px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .card {
    padding: 32px;
  }
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(26, 92, 107, 0.15), 0 2px 6px rgba(26, 92, 107, 0.1);
}

/* Disable hover transform on touch devices */
@media (hover: none) {
  .card:hover {
    transform: none;
  }
}

.card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card h4 {
    font-size: 19px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .card h4 {
    font-size: 20px;
  }
}

.card p {
  color: var(--slate-warm);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

@media (min-width: 768px) {
  .card p {
    font-size: 16px;
  }
}

/* Card Icon */
.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 600ms var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 600ms var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 600ms var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 700ms var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 48px auto;
  max-width: 900px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--blush-soft);
}

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

.feature-icon {
  color: var(--teal-deep);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item div {
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
}

.feature-item strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Button Styles with Responsive Sizing */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  min-height: 48px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* Small tablets */
@media (min-width: 600px) {
  .btn {
    width: auto;
    max-width: none;
    padding: 15px 32px;
  }
}

/* Tablets and Desktop */
@media (min-width: 768px) {
  .btn {
    padding: 16px 36px;
    font-size: 17px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .btn {
    padding: 16px 40px;
    font-size: 18px;
  }
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 600ms ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--btn-primary);
  color: var(--white-pure);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: #226b7d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
}

.btn-secondary {
  background: var(--btn-secondary);
  color: var(--white-pure);
  box-shadow: var(--shadow-cta);
}

.btn-secondary:hover {
  background: #c05d88;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
}

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 200ms var(--ease-out);
  margin-left: 4px;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* Trust Strip (Hero) */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 48px;
  flex-wrap: wrap;
  max-width: 600px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  color: var(--white-pure);
}

.trust-icon {
  color: var(--gold-champagne);
  font-size: 16px;
}

/* As Seen In Section */
.as-seen-in-wrapper {
  margin-top: 48px;
  text-align: center;
}

.as-seen-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  font-weight: 600;
}

.as-seen-in-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.trust-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.trust-logo:hover {
  opacity: 1;
}

/* Hero Stat Badge */
.hero-stat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(199, 167, 108, 0.95);
  color: var(--charcoal);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

@media (min-width: 768px) {
  .hero-stat {
    bottom: 40px;
    right: 40px;
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* Hero Subhead */
.hero-subhead {
  font-size: 20px;
  line-height: 1.6;
  margin: 24px auto 32px;
  max-width: 700px;
  opacity: 0.95;
}

/* Underline Accent */
.underline-accent {
  position: relative;
  display: inline-block;
}

.underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--gold-champagne);
  border-radius: 2px;
}

/* Card Border Accent */
.card-border-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--rose-accent), var(--teal-medium));
  border-radius: 12px 0 0 12px;
}

/* Testimonial Scroll Container */
.testimonial-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonial-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.testimonial-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 12px;
  scroll-snap-align: start;
}

/* Bonus Value Badge */
.bonus-value-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terracotta);
  color: var(--white-pure);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ Styles */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--blush-soft);
  padding: 24px 0;
  transition: all 300ms var(--ease-out);
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  transition: color 200ms ease;
}

.faq-question:hover {
  color: var(--rose-accent);
}

.faq-question span:last-child {
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--gold-champagne);
}

.faq-item.active .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.faq-answer div {
  color: var(--charcoal);
  line-height: 1.6;
}

/* Pricing Details */
.pricing-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.price {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 8px;
}

.payment-plan {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.pricing-details {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 32px;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0.7;
  font-size: 14px;
}

.final-message {
  margin-top: 48px;
  font-size: 18px;
  font-style: italic;
  opacity: 0.9;
}

/* Total Value Display */
.total-value {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose-accent);
  margin-bottom: 32px;
}
