:root {
  --medical-50: #f4f7f6;
  --medical-100: #eef2f0;
  --medical-600: #2d6a4f;
  --medical-800: #1b4332;
  --medical-900: #081c15;
  --gold-400: #d4af37;
  --gold-500: #c5a028;
  --alert: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --deep-green: #ff6d1f;
  --medical-green: #1b4332;
  --herbal-green: #2d6a4f;
  --soft-green: #f4f7f6;
  --gold: #fff;
  --alert-red: #ef4444;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lp-nav {
  background: #020044;
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 90;
}

.line-through {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}

section.texture-bg {
  /* 	background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    background-color: #1e0069; */
  /* background-image: url(
    data:image/svg + xml,
    %3Csvgwidth="60"height="60"viewBox="0 0 60 60"xmlns="http://www.w3.org/2000/svg"%3E%3Cgfill="none"fill-rule="evenodd"%3E%3Cgfill="%232d6a4f"fill-opacity="0.03"%3E%3Cpathd="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E
  ); */
  /* padding: 40px 0 60px; */
}
section.is-right,
.section-padding {
  padding: 80px 0;
  background-image: linear-gradient(
    -225deg,
    #000639 0%,
    #131b62 53%,
    #000639 100%
  ) !important;
}

.premium-hero-module .hero-inner-wrapper {
  /*   background: linear-gradient(145deg, #0f172a 0%, #020617 100%); */
  background-image: linear-gradient(
    -225deg,
    #000639 0%,
    #131b62 53%,
    #000639 100%
  ) !important;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

section.padding-section {
  padding: 80px 0;
  background: #000639;
}
section.texture-bg h2,
section.pl-hero h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000 !important;
}

/* Global Styles */
.planto-lp-body {
  /* font-family: "Lato", sans-serif; */
  color: var(--gray-800);
  background-color: #f8fafc;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*     .planto-lp-body h1, .planto-lp-body h2, .planto-lp-body h3, .planto-lp-body h4 {
        font-family: 'Merriweather', serif;
    } */

.lp-container {
  /* width: 100%;
  max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

/* Base Setup */
.pl-wrapper {
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.pl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section-padding {
  padding: 90px 0;
}

@media (min-width: 768px) {
  .md-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md-flex-row {
    flex-direction: row;
  }
}

/* Trust Header */
.trust-header {
  background: var(--medical-900);
  color: white;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--medical-600);
}

/* Buttons */
.btn-main {
  background: var(--medical-800);
  color: white;
  padding: 5px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-main:hover {
  background: var(--medical-900);
  transform: translateY(-2px);
}

.btn-alert {
  background: var(--alert);
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

/* Animations & Effects */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hover-card {
  background: linear-gradient(135deg, #000639, #141f7a) !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 25px #000639;
  transition: 0.3s;
}
.hover-card h3,
.hover-card p,
.hover-card i {
  color: #fff;
}
.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Prescription Section Styles */
.check-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.check-item.selected {
  background: #f0fdf4;
  border-color: var(--medical-600);
  transform: scale(1.02);
}

/* Popups */
.fixed-bottom {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}
.sales-popup {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 250px;
  margin-bottom: 10px;
  border-left: 4px solid var(--medical-600);
}

/* 3. RESET & BASE STYLES */
/*     .pl-wrapper { color: var(--text-dark); background: #fff; line-height: 1.6; overflow-x: hidden; }
    .pl-wrapper h1, .pl-wrapper h2, .pl-wrapper h3 { margin: 0; }
    .pl-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
    .hidden { display: none !important; } */

/* Layout Helpers */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .md-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md-flex-row {
    flex-direction: row;
  }
}

/* Utility Classes */
/*     .text-center { text-align: center; } */
/*     .section-padding { padding: 80px 0; } */

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

/* 4. ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.btn-pulse {
  animation: pulse 2s infinite;
}

/* 5. SPECIFIC SECTION STYLES */

/* Hero */
.pl-hero {
  background: var(--soft-green);
  padding: 60px 0;
  border-bottom: 5px solid var(--medical-green);
}
.pl-hero-img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Interactive Quiz */
.quiz-box {
  background: #030c60;
  color: var(--white);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.quiz-option {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quiz-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}
.quiz-option.selected {
  background: var(--gold);
  color: var(--deep-green);
  font-weight: bold;
}

/* Buttons */
.pl-btn {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.pl-btn-primary {
  background: var(--gold);
  color: var(--deep-green);
}
.pl-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Pricing */
/*     .price-card { background: var(--white); padding: 40px; border-radius: 20px; border: 1px solid #eee; position: relative; transition: var(--transition); display: flex; flex-direction: column; }
    .price-card.featured { border: 3px solid var(--gold); transform: scale(1.05); z-index: 2; }
    .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--deep-green); padding: 5px 20px; border-radius: 20px; font-weight: bold; font-size: 12px; } */

/* Accordion FAQ */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  color: var(--text-light);
}
.faq-item.active .faq-answer {
  height: auto;
  padding-top: 15px;
}

/* NEW SECTIONS STYLING */

/* Interactive Wheel */
.wheel-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}
.wheel-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}
.wheel-item:hover {
  transform: scale(1.2);
  background: var(--gold);
  color: white;
}
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--medical-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

/* Comparison Slider Visualization */
.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #eee;
  border-radius: 15px;
  overflow: hidden;
}
.visual-box {
  background: white;
  padding: 40px;
  text-align: center;
}
.blood-flow {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.blood-inner {
  position: absolute;
  height: 100%;
  background: var(--alert-red);
  left: 0;
  top: 0;
  width: 0%;
  transition: 2s;
}

/* Floating Dock */
.pl-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-green);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold);
}
.dock-item {
  color: white;
  text-decoration: none;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
}
.dock-item i {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
}

/* Buttons */
.pl-btn {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}
.pl-btn-primary {
  background: var(--gold);
  color: var(--deep-green);
}
.pl-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Quiz Box Styles */
/*.quiz-box { background: var(--medical-green); color: var(--white); border-radius: 25px; padding: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); max-width: 700px; margin: 0 auto; position: relative; }*/
/*.quiz-option { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 15px 25px; border-radius: 12px; margin-bottom: 15px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: space-between; }*/
/*.quiz-option:hover { background: rgba(255,255,255,0.2); transform: translateX(10px); }*/

/* Animated Border Card */
.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3px; /* Space for the animated border */
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(45deg, #000639, #000639, #000639);
  background-size: 300% 300%;
  animation: borderRotate 6s ease infinite;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Inner Layout */
.content-side,
.image-side {
  /*     background: white; */
  padding: 40px;
}

.content-side {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-side {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}

/* Typography */

.headline {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight {
  color: #32c1ff;
}

.quote-box {
  border-left: 4px solid #000639 !important;
  padding-left: 20px;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
}

.description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-btn {
  background: var(--dark);
  color: white;
  padding: 0px 27px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
  width: fit-content;
}

.cta-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Image Styling */
.image-border-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.image-border-wrap:hover {
  transform: scale(1.03);
}

.doctor-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.05);
}

/* Entrance Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.yml-hero {
  background: #000639;
  color: white;
  padding: 100px 0;
  position: relative;
}
.yml-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--yml-navy), transparent);
}
.yml-hero-badge {
  background: var(--yml-gold);
  color: black;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
}
.yml-hero-img {
  border-radius: 30px;
  box-shadow: 0 0 50px rgba(14, 165, 233, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

section.yml-doctor {
  background-image: linear-gradient(
    -225deg,
    #000639 0%,
    #131b62 53%,
    #000639 100%
  ) !important;
  color: white;
  border-radius: 40px;
  margin: 50px 0;
}
.yml-doc-frame {
  background: white;
  border-radius: 30px;
  padding: 15px;
}

/* PARENT WRAPPER - All styles scoped here */
.premium-hero-module {
  /*padding: 60px 0;*/
  overflow: hidden;
}

/* LEFT CONTENT COLUMN */
.premium-hero-module .hero-text-content {
  padding: 2rem;
}

.premium-hero-module .hero-main-headline {
  font-size: clamp(2.5rem, 5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.premium-hero-module .hero-accent-highlight {
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-hero-module .hero-testimonial-quote {
  font-size: 1.1rem;
  color: #94a3b8;
  border-left: 3px solid #3a7bd5;
  padding-left: 25px;
  margin: 2rem 0;
  line-height: 1.6;
  font-style: italic;
}

.premium-hero-module .hero-action-trigger {
  background: #ffffff;
  color: #020617;
  padding: 16px 45px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.premium-hero-module .hero-action-trigger:hover {
  transform: translateY(-5px);
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

/* RIGHT VISUAL COLUMN */
.premium-hero-module .hero-visual-display {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px;
}

.premium-hero-module .hero-image-card {
  width: 85%;
  background: #ffffff;
  padding: 12px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: rotate(2deg);
  transition: transform 0.6s ease;
}

.premium-hero-module .hero-image-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.premium-hero-module .hero-image-card img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  filter: grayscale(20%);
}

/* FLOATING INTERACTIVE TAG */
.premium-hero-module .hero-status-pill {
  position: absolute;
  top: 15%;
  right: 5%;
  background: rgba(58, 123, 213, 0.9);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(58, 123, 213, 0.3);
  animation: heroFloat 4s ease-in-out infinite;
  z-index: 10;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-20px) rotate(-2deg);
  }
}

.btn-custom-call {
  color: #008a3d;
  border: 3px solid #008a3d;
  border-radius: 8px;
  padding: 5px 7px;
  display: flex;
  box-shadow:
    rgba(0, 0, 0, 0.2) 0 3px 5px -1px,
    rgba(0, 0, 0, 0.14) 0 6px 10px 0,
    rgba(0, 0, 0, 0.12) 0 1px 18px 0 !important;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-custom-call span {
  font-size: clamp(0.99rem, 4.3vw, 2rem);
}

.btn-custom-call i {
  font-size: clamp(1rem, 4.3vw, 2.5rem) !important;
}

.btn-custom-call:hover {
  background-color: #008a3d;
  color: white;
}

/* Order Button (Red) */
.btn-custom-order {
  background-color: #c92a2a;
  color: white;
  border-radius: 12px;
  border: 2px solid #990000;
  padding: 5px 10px 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  flex-grow: 1;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(181, 0, 0, 0.93);
  -moz-box-shadow: 0px 0px 7px 0px rgba(181, 0, 0, 0.93);
  box-shadow: 0px 0px 7px 0px rgba(181, 0, 0, 0.93) !important;
  position: relative;
  overflow: hidden;
}

.order-info small {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  display: block;
  margin-bottom: -4px;
}

.order-price {
  font-size: 1.3rem;
  font-weight: 800;
}

.book-badge {
  background-color: #8f1e1e;
  padding: 8px 7px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-custom-order:hover {
  background-color: #b02525;
  color: white;
}

/* Shine Animation for Both Buttons */
.btn-custom-order::before,
.btn-custom-call:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shine 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Slightly softer shine for call button on hover */
.btn-custom-call:hover::before {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

:root {
  --yml-navy: #0a192f;
  --yml-gold: #c5a059;
  --yml-medical-blue: #0ea5e9;
  --yml-soft-bg: #f8fafc;
  --yml-accent-red: #ef4444;
}

.yml-land-page {
  color: var(--yml-navy);
  overflow-x: hidden;
}

/* --- SECTION 3: AYURVEDIC SCIENCE (Clinical & Botanical) --- */
.yml-science {
  padding: 80px 0;
  background: white;
}
.yml-science-blob {
  position: relative;
  background: #f0f9ff;
  border-radius: 50%;
  padding: 40px;
}

/* --- SECTION 4: INGREDIENT SPOTLIGHT (Interactive Grid) --- */
.yml-ingredients {
  background: var(--yml-soft-bg);
  padding: 80px 0;
}
.yml-ing-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}
.yml-ing-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}
.yml-ing-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* --- SECTION 6: THE 3-STEP FLOW (Progressive) --- */
.yml-flow {
  padding: 80px 0;
  text-align: center;
}
.yml-step-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(14, 165, 233, 0.1);
  line-height: 1;
}

/* --- SECTION 8: CLINICAL STATS (Data Driven) --- */
.yml-stats {
  background: #000639;
  color: white;
  padding: 60px 0;
}
.yml-stat-circle {
  border: 4px solid var(--yml-gold);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 800;
  font-size: 1.5rem;
}

/* --- SECTION 9: TRUST BADGES (Certification) --- */
.yml-trust {
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
}
.yml-trust img {
  filter: grayscale(1);
  opacity: 0.6;
  height: 40px;
  transition: 0.3s;
}
.yml-trust img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* --- SECTION 11: FINAL CTA (Urgency) --- */
.yml-cta {
  background: linear-gradient(45deg, var(--yml-navy), #1e1b4b);
  color: white;
  padding: 100px 0;
  text-align: center;
}
/* Responsive Fixes */
@media (max-width: 768px) {
  .yml-doc-frame {
    transform: scale(1);
    margin-top: 30px;
  }
  .yml-hero-text {
    text-align: center;
  }
}

.pro-timer-wrapper {
  padding: 0;
  box-sizing: border-box;
}

.pro-timer-header {
  font-size: 7.9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e53935;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-live-dot {
  height: 8px;
  width: 8px;
  background-color: #e53935;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-red 2s infinite;
}

.pro-timer-container {
  display: flex;
  gap: 7px;
  justify-content: flex-start;
}

.pro-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  border-radius: 8px;
  width: 50px;
  padding: 3px 2px;
  border: 1px solid #e1e3e5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.pro-time-number {
  font-size: 14px;
  font-weight: 700;
  color: #e53935;
  line-height: 1.1;
}

.pro-time-label {
  font-size: 9px;
  color: #e53935;
  text-transform: uppercase;
  font-weight: 500;
}

.pro-timer-separator {
  font-size: 20px;
  font-weight: 700;
  color: #ccc;
  margin-top: 4px;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(229, 57, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}

@media (max-width: 480px) {
  .pro-timer-container {
    /*justify-content: space-between;*/
  }
  /*.pro-time-block {*/
  /*    width: 23%; */
  /*}*/
  .pro-timer-separator {
    display: none;
  }
}
