/* ============================================
   WEIGHT LOSS PAGE STYLES
   Uses wl- prefix
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.wl-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 20px 0 80px;
  overflow: hidden;
  background: #fdf5f3;
}

.wl-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(196, 122, 101, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(212, 144, 124, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.wl-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  opacity: 0.6;
}

.wl-hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 122, 101, 0.08) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 1;
  animation: float 20s ease-in-out infinite;
}

.wl-hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 144, 124, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.wl-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .wl-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left Content */
.wl-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .wl-hero-content {
    text-align: left;
  }
}

.wl-hero-title {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 1.75rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

/* Override gradient-text to deep purple for weight loss hero */
.wl-hero-section .gradient-text {
  background: linear-gradient(135deg, #6B4FA0 0%, #8B6BBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .wl-hero-title {
    font-size: 4.5rem;
    line-height: 1.08;
  }
}

@media (min-width: 1024px) {
  .wl-hero-title {
    font-size: 5.5rem;
    line-height: 1;
  }
}

.wl-hero-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (max-width: 1023px) {
  .wl-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.wl-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .wl-hero-actions {
    flex-direction: row;
  }
}

@media (max-width: 1023px) {
  .wl-hero-actions {
    justify-content: center;
  }
}

/* Primary CTA — terracotta for weight loss hero */
.wl-hero-section .primary-cta {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.35), 0 4px 10px -2px rgba(196, 122, 101, 0.15);
}

.wl-hero-section .primary-cta:hover {
  box-shadow: 0 15px 35px -3px rgba(196, 122, 101, 0.45), 0 6px 15px -2px rgba(196, 122, 101, 0.2);
}

/* Secondary CTA — subtle warm border */
.wl-hero-section .secondary-cta {
  border-color: rgba(196, 122, 101, 0.3);
  color: var(--terracotta-dark);
}

.wl-hero-section .secondary-cta:hover {
  border-color: var(--terracotta);
  background: rgba(196, 122, 101, 0.05);
}

/* Section badge warm tint */
.wl-hero-section .section-badge {
  background: rgba(196, 122, 101, 0.08);
  border-color: rgba(196, 122, 101, 0.15);
}

.wl-hero-section .pulse-dot span:first-child {
  background: #6B4FA0;
}

.wl-hero-section .pulse-dot span:last-child {
  background: #6B4FA0;
}

/* Hero Testimonial */
.wl-hero-testimonial {
  position: relative;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(196, 122, 101, 0.15);
  max-width: 500px;
  text-align: left;
}

@media (max-width: 1023px) {
  .wl-hero-testimonial {
    margin: 0 auto;
  }
}

.wl-hero-testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(107, 79, 160, 0.3);
}

.wl-hero-testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-slate);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wl-hero-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wl-hero-testimonial-name {
  font-weight: 700;
  color: #111827;
  font-size: 0.9375rem;
}

.wl-hero-testimonial-location {
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* Right Visual - Image Grid */
.wl-hero-images {
  position: relative;
  height: 600px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 1rem;
}

.wl-hero-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(196, 122, 101, 0.15);
  border: 4px solid var(--white);
}

.wl-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-hero-image-1 {
  grid-column: 1 / 7;
  grid-row: 2 / 7;
  z-index: 2;
  transform: rotate(-3deg);
}

.wl-hero-image-2 {
  grid-column: 7 / 13;
  grid-row: 1 / 6;
  z-index: 1;
  transform: rotate(3deg);
}

.wl-hero-image-3 {
  grid-column: 3 / 11;
  grid-row: 6 / 12;
  z-index: 3;
  transform: translateY(-1rem);
}

/* ============================================
   STATS BAR
   ============================================ */
.wl-stats-section {
  position: relative;
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  padding: 3rem 0;
  overflow: hidden;
}

.wl-stats-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.wl-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.wl-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.wl-stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wl-stat-content {
  display: flex;
  flex-direction: column;
}

.wl-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.wl-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.wl-social-proof-bar {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.wl-social-proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 122, 101, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.wl-social-proof-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .wl-social-proof-bar-content {
    flex-direction: row;
    gap: 5rem;
  }
}

.wl-social-proof-bar-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(107, 79, 160, 0.3);
  position: relative;
  transition: transform 0.3s ease;
}

.wl-social-proof-bar-stats:hover {
  transform: scale(1.05);
}

.wl-social-proof-bar-stats::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(107, 79, 160, 0.3);
  animation: spin 30s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wl-social-proof-bar-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.wl-social-proof-bar-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

.wl-social-proof-bar-stars {
  display: flex;
  gap: 0.25rem;
  color: #F4B400;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.wl-social-proof-bar-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .wl-social-proof-bar-text {
    text-align: left;
  }
}

.wl-social-proof-bar-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: rgba(196, 122, 101, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.wl-social-proof-bar-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .wl-social-proof-bar-headline {
    font-size: 2.5rem;
  }
}

.wl-social-proof-bar-subtext {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 600px;
}

@media (max-width: 1023px) {
  .wl-social-proof-bar-subtext {
    margin: 0 auto;
  }
  .wl-social-proof-bar-stats {
    width: 10rem;
    height: 10rem;
  }
  .wl-social-proof-bar-number {
    font-size: 2.5rem;
  }
}

/* ============================================
   REVSLIDER OVERRIDE (Weight Loss)
   ============================================ */
.wl-revslider-section {
  margin-top: 0;
}

.wl-revslider-section .revslider-overlay {
  pointer-events: none;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.wl-results-section {
  padding: 6rem 0;
  background: var(--white);
}

.wl-results-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wl-results-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1rem;
}

.wl-results-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.wl-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .wl-results-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
  }
}

.wl-results-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.wl-results-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wl-results-card-featured {
  background: linear-gradient(135deg, #fdf5f3, #ffffff);
  border: 2px solid rgba(196, 122, 101, 0.3);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.15);
}

.wl-results-featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.wl-results-stars {
  justify-content: center;
  margin-bottom: 1rem;
  color: #F4B400;
}

.wl-results-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wl-results-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.wl-results-sublabel {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.wl-results-featured-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #6B4FA0;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wl-results-featured-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.25rem;
}

.wl-results-featured-sublabel {
  font-size: 1rem;
  color: var(--text-slate);
}

.wl-results-icon {
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.wl-results-featured-icon {
  font-size: 3rem;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.wl-results-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-slate);
  font-style: italic;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.wl-features-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.wl-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wl-features-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1rem;
}

.wl-features-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta-soft), var(--terracotta-dark));
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
}

.wl-features-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.wl-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .wl-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.wl-features-image-wrapper {
  position: relative;
}

.wl-features-image-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.15);
  border: 4px solid var(--white);
}

.wl-features-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-features-badge {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.wl-features-badge-rating {
  top: 2rem;
  right: -1rem;
}

.wl-features-badge-patients {
  bottom: 2rem;
  left: -1rem;
}

.wl-features-badge i {
  color: var(--terracotta);
  font-size: 1.25rem;
}

.wl-features-badge-text {
  font-weight: 700;
  color: #111827;
  font-size: 0.9375rem;
}

.wl-features-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wl-features-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(196, 122, 101, 0.15);
  transition: all 0.3s ease;
}

.wl-features-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.1);
  border-color: var(--terracotta-soft);
}

.wl-features-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.wl-features-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.wl-features-card-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.wl-features-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.wl-features-credentials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.wl-features-credential {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-slate);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(196, 122, 101, 0.2);
}

.wl-features-credential i {
  color: var(--terracotta);
}

/* Features section CTAs */
.wl-features-section .primary-cta {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 10px 25px -3px rgba(196, 122, 101, 0.35);
}

.wl-features-section .secondary-cta {
  border-color: rgba(196, 122, 101, 0.3);
  color: var(--terracotta-dark);
}

.wl-features-section .secondary-cta:hover {
  border-color: var(--terracotta);
  background: rgba(196, 122, 101, 0.05);
}

/* ============================================
   CTA BAR
   ============================================ */
.wl-cta-bar {
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.wl-cta-bar-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.wl-cta-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .wl-cta-bar-content {
    flex-direction: column;
    text-align: center;
  }
}

.wl-cta-bar-text {
  color: var(--white);
}

.wl-cta-bar-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.wl-cta-bar-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

.wl-cta-bar-button {
  background: var(--white);
  color: var(--brand-dark);
  border: none;
}

.wl-cta-bar-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* ============================================
   JOURNEY SECTION — Tab + Card Grid
   ============================================ */
.wl-journey-section {
  padding: 8rem 0;
  background: var(--brand-light);
  position: relative;
  overflow: hidden;
}

.wl-journey-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.wl-journey-title {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: 1.75rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.wl-journey-title .gradient-text {
  background: linear-gradient(135deg, #6B4FA0 0%, #8B6BBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-journey-accent-text {
  color: #374151;
}

@media (min-width: 768px) {
  .wl-journey-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .wl-journey-title {
    font-size: 5.5rem;
    line-height: 1;
  }
}

.wl-journey-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

@media (min-width: 768px) {
  .wl-journey-description {
    font-size: 1.1875rem;
  }
}

@media (min-width: 1024px) {
  .wl-journey-description {
    font-size: 1.25rem;
  }
}

/* Numbered Tabs Navigation */
.wl-journey-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: #ffffff;
  border-radius: 80px;
  padding: 8px;
  margin: 0 auto 74px;
  max-width: 1390px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(196, 122, 101, 0.1);
}

@media (min-width: 768px) {
  .wl-journey-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wl-journey-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-radius: 72px;
  background: transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wl-journey-tab:hover {
  background: rgba(196, 122, 101, 0.08);
}

.wl-journey-tab-active {
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.12), rgba(184, 105, 79, 0.08));
}

.wl-journey-tab-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(196, 122, 101, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.wl-journey-tab:hover .wl-journey-tab-counter {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(196, 122, 101, 0.45);
}

.wl-journey-tab-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #262b23;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-family: var(--font-primary);
}

@media (max-width: 767px) {
  .wl-journey-tab-title {
    font-size: 1.0625rem;
  }

  .wl-journey-tab-counter {
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
  }
}

/* Content Cards Grid */
.wl-journey-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 10;
}

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

.wl-journey-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 15px 26px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.wl-journey-card:hover {
  transform: translateY(-8px);
}

.wl-journey-card-image {
  margin: 0 0 20px 0;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 280px;
}

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

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

.wl-journey-card-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: #262b23;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.wl-journey-card-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.wl-faq-section {
  padding: 6rem 0;
  background: var(--white);
}

.wl-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wl-faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1rem;
}

.wl-faq-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta-soft), var(--terracotta-dark));
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
}

.wl-faq-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.wl-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wl-faq-item {
  background: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wl-faq-item:hover {
  border-color: rgba(196, 122, 101, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.wl-faq-item.wl-faq-active {
  border-color: var(--terracotta);
  box-shadow: 0 10px 15px -3px rgba(196, 122, 101, 0.1);
}

.wl-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.wl-faq-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.wl-faq-question-text {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.wl-faq-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(196, 122, 101, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.wl-faq-item.wl-faq-active .wl-faq-icon {
  transform: rotate(45deg);
}

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

.wl-faq-item.wl-faq-active .wl-faq-answer {
  max-height: 300px;
  padding: 0 2rem 2rem 6rem;
}

.wl-faq-answer p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .wl-faq-question {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .wl-faq-item.wl-faq-active .wl-faq-answer {
    padding: 0 1.25rem 1.5rem 1.25rem;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.wl-testimonials-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.wl-testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wl-testimonials-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1rem;
}

.wl-testimonials-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta-soft), var(--terracotta-dark));
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
}

.wl-testimonials-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.wl-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.wl-testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(196, 122, 101, 0.08);
  text-align: center;
  position: relative;
  margin-top: 2rem;
}

.wl-testimonial-circle {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -5rem auto 1.5rem;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(196, 122, 101, 0.2);
}

.wl-testimonial-circle-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}

.wl-testimonial-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.wl-testimonial-quote {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.wl-testimonial-stars {
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #F4B400;
}

.wl-testimonial-author {
  font-weight: 700;
  color: #111827;
  font-size: 0.9375rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.wl-final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #6B4FA0, #8B6BBF);
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.wl-final-cta-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.wl-final-cta-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.wl-final-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.wl-final-cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.wl-final-cta-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.wl-final-cta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wl-final-cta-badge i {
  font-size: 1rem;
}

.wl-final-cta-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.wl-final-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.wl-final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 639px) {
  .wl-final-cta-actions {
    flex-direction: column;
  }
}

.wl-final-cta-button-white {
  background: linear-gradient(135deg, #C47A65, #B8694F);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wl-final-cta-button-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.wl-final-cta-button-outlined {
  color: #2D1B4E;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.wl-final-cta-button-outlined:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.wl-final-cta-checks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.wl-final-cta-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.wl-final-cta-check i {
  color: var(--white);
}

/* ============================================
   PREMIUM SOCIAL PROOF (NEW)
   ============================================ */
.wl-features-social-proof-premium {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(196, 122, 101, 0.2);
  box-shadow: 0 10px 30px rgba(196, 122, 101, 0.1);
  transition: transform 0.3s ease;
}

.wl-features-social-proof-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.15);
  border-color: rgba(196, 122, 101, 0.4);
}

.wl-social-avatars {
  display: flex;
  align-items: center;
}

.wl-social-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wl-social-img:first-child {
  margin-left: 0;
}

.wl-social-count {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -1rem;
  color: var(--white);
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wl-social-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wl-social-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #F4B400;
  font-size: 0.875rem;
}

.wl-social-rating {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.wl-social-text {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.wl-social-text strong {
  color: var(--terracotta-dark);
  font-weight: 700;
}

@media (max-width: 640px) {
  .wl-features-social-proof-premium {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .wl-social-content {
    align-items: center;
  }
}

/* ============================================
   WEIGHT LOSS CALCULATOR (shortcode override)
   Constrains the blog-embedded calculator for
   the full-width weight loss page layout
   ============================================ */

.wl-calculator-section {
  padding: 60px 0;
  background: #fff;
}

.wl-calculator-section .mj-calc {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.wl-calculator-section .mj-calc-form {
  text-align: center;
}

.wl-calculator-section .mj-calc-input-group {
  display: inline-block;
  text-align: left;
}

.wl-calculator-section .mj-calc-results {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.wl-calculator-section .mj-calc-disclaimer {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
