/* ============================================
   Weight Loss Page — Chislehurst Pharmacy Group
   Uses homepage design system exclusively
   ============================================ */

/* ============================================
   SCROLL-REVEAL ANIMATION SYSTEM
   ============================================ */

/* Base hidden state — applied by JS, animated on scroll */
.wl-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-reveal.wl-reveal-left {
  transform: translateX(-50px);
}

.wl-reveal.wl-reveal-right {
  transform: translateX(50px);
}

.wl-reveal.wl-reveal-scale {
  transform: scale(0.92);
}

.wl-reveal.wl-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children inside grids */
.wl-stagger-children .wl-reveal:nth-child(1) { transition-delay: 0s; }
.wl-stagger-children .wl-reveal:nth-child(2) { transition-delay: 0.1s; }
.wl-stagger-children .wl-reveal:nth-child(3) { transition-delay: 0.2s; }
.wl-stagger-children .wl-reveal:nth-child(4) { transition-delay: 0.3s; }
.wl-stagger-children .wl-reveal:nth-child(5) { transition-delay: 0.4s; }
.wl-stagger-children .wl-reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   HERO ENTRANCE CHOREOGRAPHY
   ============================================ */
.wl-hero-content .wl-hero-badge,
.wl-hero-content .wl-hero-title,
.wl-hero-content .wl-hero-subtitle,
.wl-hero-content .wl-hero-actions,
.wl-hero-content .wl-hero-trust {
  opacity: 0;
  transform: translateY(30px);
  animation: wlHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wl-hero-content .wl-hero-badge   { animation-delay: 0.15s; }
.wl-hero-content .wl-hero-title   { animation-delay: 0.3s; }
.wl-hero-content .wl-hero-subtitle { animation-delay: 0.45s; }
.wl-hero-content .wl-hero-actions  { animation-delay: 0.6s; }
.wl-hero-content .wl-hero-trust    { animation-delay: 0.75s; }

@keyframes wlHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero visual — slide in from right */
.wl-hero-visual .wl-hero-img-stack {
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  animation: wlHeroVisualIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes wlHeroVisualIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}


/* ============================================
   PROOF BAR — number counter animation
   ============================================ */
.wl-proof-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-proof-item.wl-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .wl-reveal,
  .wl-hero-content .wl-hero-badge,
  .wl-hero-content .wl-hero-title,
  .wl-hero-content .wl-hero-subtitle,
  .wl-hero-content .wl-hero-actions,
  .wl-hero-content .wl-hero-trust,
  .wl-hero-visual .wl-hero-img-stack,
  .wl-proof-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   HERO
   ============================================ */
.wl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 100px;
}

.wl-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.wl-hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.wl-hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -180px;
}

.wl-hero-orb-2 {
  width: 450px;
  height: 450px;
  bottom: -180px;
  left: -120px;
}

.wl-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* Badge */
.wl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wl-hero-badge svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.wl-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.wl-hero-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 580px;
}

.wl-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.wl-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px !important;
  font-size: 17px !important;
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.4);
}

.wl-btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 17px;
}

.wl-hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.wl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
}

.wl-trust-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual */
.wl-hero-visual {
  position: relative;
}

.wl-hero-img-stack {
  position: relative;
}

.wl-hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wl-hero-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.wl-hero-img-main img {
  height: 480px;
}

.wl-hero-img-secondary {
  position: absolute;
  bottom: -32px;
  left: -40px;
  width: 54%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.wl-hero-img-secondary img {
  height: 180px;
}


/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.wl-proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
  box-shadow: 0 2px 16px rgba(10, 47, 138, 0.06);
}

.wl-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.wl-proof-item {
  text-align: center;
  flex-shrink: 0;
}

.wl-proof-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.wl-proof-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.wl-proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ============================================
   VS SECTION — Premium (matches destinations-section)
   ============================================ */
.wl-vs-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 100px 0 120px;
}

.wl-vs-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.wl-vs-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.wl-vs-orb-1 {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -140px;
}

.wl-vs-orb-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -120px;
}

.wl-vs-container {
  position: relative;
  z-index: 2;
}

/* Header */
.wl-vs-header {
  text-align: center;
  margin-bottom: 56px;
}

.wl-vs-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wl-vs-pill svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.wl-vs-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.wl-vs-br-md {
  display: none;
}

@media (min-width: 768px) {
  .wl-vs-br-md { display: block; }
}

.wl-vs-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Stats Row */
.wl-vs-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

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

.wl-vs-stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.wl-vs-stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.wl-vs-stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  font-family: 'Inter', sans-serif;
}

.wl-vs-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* Cards Grid */
.wl-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Card Shared */
.wl-vs-card {
  border-radius: 24px;
  padding: 44px 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.wl-vs-card:hover {
  transform: translateY(-6px);
}

/* Problem Card */
.wl-vs-card-problem {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wl-vs-card-problem:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Solution Card */
.wl-vs-card-solution {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.15);
}

.wl-vs-card-solution:hover {
  box-shadow: 0 24px 64px rgba(10, 47, 138, 0.25);
}

/* Card Badge */
.wl-vs-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  width: fit-content;
}

.wl-vs-badge-muted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wl-vs-badge-glow {
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.1) 0%, rgba(90, 127, 196, 0.1) 100%);
  color: var(--primary-blue);
  border: 1px solid rgba(10, 47, 138, 0.2);
}

/* Card Title */
.wl-vs-card-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 28px;
}

.wl-vs-card-problem .wl-vs-card-title {
  color: var(--white);
}

.wl-vs-card-solution .wl-vs-card-title {
  color: var(--primary-blue);
}

/* List */
.wl-vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.wl-vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wl-vs-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.wl-vs-list li span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.wl-vs-card-problem .wl-vs-list li strong {
  color: var(--white);
}

.wl-vs-card-problem .wl-vs-list li span {
  color: rgba(255, 255, 255, 0.65);
}

.wl-vs-card-solution .wl-vs-list li strong {
  color: var(--text-dark);
}

.wl-vs-card-solution .wl-vs-list li span {
  color: var(--text-gray);
}

/* Icons */
.wl-vs-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.wl-vs-icon-bad {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wl-vs-icon-good {
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.12) 0%, rgba(90, 127, 196, 0.08) 100%);
  color: var(--primary-blue);
  border: 1px solid rgba(10, 47, 138, 0.2);
}

/* CTA */
.wl-vs-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.3);
  width: fit-content;
}

.wl-vs-cta:hover {
  transform: translateY(-2px) translateX(4px);
  box-shadow: 0 8px 24px rgba(10, 47, 138, 0.4);
}

.wl-vs-cta svg {
  transition: transform 0.3s;
}

.wl-vs-cta:hover svg {
  transform: translateX(4px);
}

/* ============================================
   ELIGIBILITY NOTE
   ============================================ */
.wl-eligibility-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  margin-top: 40px;
}

.wl-eligibility-note svg {
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  margin-top: 2px;
}

.wl-eligibility-note p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================
   LOCATION SEO TEXT
   ============================================ */
.location-seo {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(10, 47, 138, 0.04);
  border-radius: 10px;
  border-left: 3px solid var(--primary-blue);
}

/* ============================================
   WHY US PILLARS (inside team stats area)
   ============================================ */
.wl-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.wl-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s;
}

.wl-pillar:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.wl-pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.wl-pillar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wl-pillar-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.wl-pillar-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */
.wl-faq-grid {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 138, 0.1);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(10, 47, 138, 0.04);
}

.wl-faq-item:hover {
  border-color: rgba(10, 47, 138, 0.2);
  box-shadow: 0 4px 20px rgba(10, 47, 138, 0.08);
}

.wl-faq-item[open] {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.12);
}

.wl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.wl-faq-question::-webkit-details-marker {
  display: none;
}

.wl-faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.01em;
  flex: 1;
  padding-right: 16px;
}

.wl-faq-chevron {
  color: var(--primary-blue);
  transition: transform 0.3s;
  flex-shrink: 0;
  opacity: 0.7;
}

.wl-faq-item[open] .wl-faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.wl-faq-answer {
  padding: 0 28px 28px;
}

.wl-faq-answer p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.75;
}

/* ============================================
   JOURNEY SECTION — line spacing fix
   ============================================ */
.how-it-works .section-title.gradient-text {
  padding-bottom: 16px;
  margin-bottom: 24px;
}

/* ============================================
   WHY CHOOSE US — Pharmacist + Stats + Pillars
   ============================================ */
.team-section .section-subtitle {
  margin-bottom: 48px;
}

.team-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 0;
}

.pharmacist-hero { position: relative; }

.pharmacist-image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.pharmacist-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.pharmacist-profile-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px;
  margin-top: -60px;
  margin-left: 16px;
  margin-right: 16px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.profile-header { margin-bottom: 12px; }

.profile-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.profile-title {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
}

.profile-badge svg { color: #fbbf24; }

.profile-bio {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-profile-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-profile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-profile-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-profile-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
}

/* Stats grid */
.team-stats-premium { display: flex; flex-direction: column; gap: 24px; }

.stats-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card-hero {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s;
}

.stat-card-hero:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.stat-icon-hero {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.stat-icon-hero svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.stat-number-hero {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.stat-label-hero {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  line-height: 1.4;
}

/* Pillars */
.wl-pillars-premium {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-pillar-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s;
}

.wl-pillar-card:hover {
  background: rgba(255,255,255,0.1);
}

.wl-pillar-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.wl-pillar-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.wl-pillar-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .team-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pharmacist-image { max-width: 280px; }
}

@media (max-width: 640px) {
  .stats-grid-premium { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER CTA BLOCK (integrated)
   ============================================ */
.wl-footer-cta-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 0;
  text-align: center;
}
.wl-footer-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.wl-footer-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.wl-footer-cta-orb-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.wl-footer-cta-orb-2 { width: 500px; height: 500px; bottom: -200px; left: -100px; }
.wl-footer-cta-inner {
  position: relative;
  z-index: 2;
}
.wl-footer-cta-top {
  padding-bottom: 56px;
}
/* Badges row */
.wl-cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.wl-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
/* Title */
.wl-footer-cta-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.wl-footer-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px;
}
/* CTA buttons */
.wl-footer-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.wl-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.wl-btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.wl-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.wl-btn-cta-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
}
/* Checks row */
.wl-cta-checks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 600;
}
/* Divider */
.wl-footer-cta-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  margin: 0 auto;
  max-width: 900px;
}
/* Newsletter row */
.wl-footer-newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 56px;
  text-align: left;
}
.wl-footer-newsletter-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.wl-footer-newsletter-text p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
}

/* Remove old problem-section overrides for services-section gradient-text */

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

  .wl-hero-title {
    font-size: 42px;
  }

  .wl-hero-img-main img {
    height: 360px;
  }

  .wl-hero-img-secondary {
    width: 45%;
    bottom: -24px;
    left: -20px;
  }

  .wl-hero-img-secondary img {
    height: 150px;
  }


  .wl-vs-grid {
    grid-template-columns: 1fr;
  }

  .wl-proof-grid {
    gap: 16px;
  }

  .wl-proof-divider {
    display: none;
  }
}

@media (max-width: 1024px) {
  .wl-footer-newsletter-row {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .wl-footer-newsletter-text { text-align: center; }
}

@media (max-width: 768px) {
  .wl-footer-cta-block { padding: 56px 0 0; }
  .wl-footer-cta-title { font-size: 30px; }
  .wl-footer-cta-sub { font-size: 16px; }
  .wl-footer-cta-buttons { flex-direction: column; }
  .wl-btn-cta-white,
  .wl-btn-cta-ghost { width: 100%; justify-content: center; }
  .wl-cta-checks { flex-direction: column; gap: 8px; }
  .wl-cta-badges { gap: 8px; }
  .wl-cta-badge { font-size: 11px; padding: 6px 14px; }
  .wl-footer-newsletter-row { padding: 36px 0 44px; }

  .wl-hero {
    padding: 56px 0 80px;
  }

  .wl-hero-title {
    font-size: 32px;
  }

  .wl-hero-subtitle {
    font-size: 17px;
  }

  .wl-hero-actions {
    flex-direction: column;
  }

  .wl-btn-hero-primary,
  .wl-btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .wl-hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .wl-hero-img-secondary {
    display: none;
  }


  .wl-proof-grid {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 24px;
  }

  .wl-proof-divider {
    display: none;
  }

  .wl-vs-section {
    padding: 72px 0 80px;
  }

  .wl-vs-title {
    font-size: 32px;
  }

  .wl-vs-desc {
    font-size: 16px;
  }

  .wl-vs-stat-number {
    font-size: 36px;
  }

  .wl-vs-card {
    padding: 28px 24px;
  }

  .wl-vs-card-title {
    font-size: 20px;
  }

  .wl-faq-question span {
    font-size: 16px;
  }

  .wl-pillars {
    gap: 12px;
  }

  .location-seo {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .wl-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wl-proof-number {
    font-size: 22px;
  }

  .wl-vs-stat-number {
    font-size: 28px;
  }
}

/* ============================================
   COMPLIANCE DISCLAIMERS
   - Short asterisk footnote under the stats bar
   - Full "Important information" block before the FAQ
   ============================================ */

/* Short footnote sits on the white .wl-proof-bar background.
   Muted slate colour for "small print" feel while still meeting
   4.5:1 contrast against white for WCAG AA legibility. */
.wl-disclaimer-footnote {
  margin: 18px auto 0;
  max-width: 900px;
  padding: 0 16px;
  font-size: 12.5px;
  line-height: 1.55;
  font-style: italic;
  color: #64748B;
  text-align: center;
}

/* Full "Important information" block — distinct visual treatment
   so it reads as an official notice, not body copy. Light neutral
   background, subtle border, no aggressive framing. */
.wl-disclaimer-section {
  padding: 48px 0 24px;
  background: var(--white);
}
.wl-disclaimer-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 3px solid var(--primary-blue);
  border-radius: 12px;
}
.wl-disclaimer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-blue);
}
.wl-disclaimer-heading svg {
  flex-shrink: 0;
  color: var(--primary-blue);
}
.wl-disclaimer-body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  font-style: italic;
  color: #475569;
}
@media (max-width: 640px) {
  .wl-disclaimer-footnote { font-size: 11.5px; padding: 0 12px; }
  .wl-disclaimer-section { padding: 32px 0 16px; }
  .wl-disclaimer-block { padding: 20px 20px; }
  .wl-disclaimer-body { font-size: 12.5px; }
}
