/* ==========================================================================
   HEALTH AYURVEDA - PROVENIX PLUS LANDING PAGE (HINDI DEVANAGARI EDITION)
   Theme: Nuvica Medical UI Design System (Soft Blue, Frosted Glass, Green Accents)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,600;0,700;0,800;1,700&display=swap');

:root {
  --bg-gradient-start: #f1f7fd;
  --bg-gradient-mid: #e1effa;
  --bg-gradient-end: #f4f9fe;
  
  --primary-navy: #0e243f;
  --primary-navy-dark: #091728;
  --secondary-slate: #48617d;
  --muted-blue: #7d96b3;
  
  --accent-green: #10b981;
  --accent-green-hover: #059669;
  --accent-green-light: #ecfdf5;
  --accent-green-border: rgba(16, 185, 129, 0.3);
  
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;
  --accent-red-light: #fef2f2;
  --accent-red-border: rgba(239, 68, 68, 0.3);
  
  --card-glass-bg: rgba(255, 255, 255, 0.88);
  --card-glass-bg-hover: rgba(255, 255, 255, 0.96);
  --card-glass-border: rgba(255, 255, 255, 0.9);
  --card-glass-border-subtle: rgba(215, 230, 245, 0.6);
  
  --shadow-subtle: 0 10px 30px -8px rgba(14, 36, 63, 0.06), 0 4px 10px rgba(14, 36, 63, 0.03);
  --shadow-hover: 0 20px 40px -10px rgba(14, 36, 63, 0.12), 0 8px 18px rgba(14, 36, 63, 0.05);
  --shadow-glow-green: 0 0 25px rgba(16, 185, 129, 0.35);
  --shadow-glow-red: 0 0 25px rgba(239, 68, 68, 0.25);
  
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --font-main: 'Noto Sans Devanagari', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 40%, var(--bg-gradient-end) 100%);
  color: var(--primary-navy);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Atmospheric Glow Background Elements */
.ambient-glow-1 {
  position: fixed;
  top: -150px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(162, 217, 255, 0.45) 0%, rgba(240, 248, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  top: 45%;
  left: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(175, 230, 215, 0.35) 0%, rgba(240, 248, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-3 {
  position: fixed;
  bottom: 0;
  right: -50px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190, 225, 255, 0.4) 0%, rgba(240, 248, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Main Container */
.site-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.site-header {
  padding: 22px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(241, 247, 253, 0.9);
  margin-bottom: 25px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 70, 30, 0.14));
  transition: transform 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 26px;
  font-weight: 900;
  color: #0c4323;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-badge {
  font-size: 11px;
  font-weight: 800;
  background: #008744;
  color: #fff;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.brand-subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--secondary-slate);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Nuvica Styled Buttons */
.btn-nuvica-dark {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 10px 16px 10px 24px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(14, 36, 63, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nuvica-dark:hover {
  background: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 36, 63, 0.25);
}

.btn-circle-arrow {
  width: 32px;
  height: 32px;
  background: var(--accent-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn-nuvica-dark:hover .btn-circle-arrow {
  transform: rotate(45deg);
}

/* Pill Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: 0 4px 14px rgba(14, 36, 63, 0.05);
}

.pill-badge.green-accent {
  background: var(--accent-green-light);
  color: #065f46;
  border-color: var(--accent-green-border);
}

.pill-badge.red-accent {
  background: var(--accent-red-light);
  color: #991b1b;
  border-color: var(--accent-red-border);
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Top Sticky Urgency Countdown Banner */
.sticky-timer-bar {
  background: linear-gradient(90deg, #0e243f 0%, #173860 50%, #0e243f 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(14, 36, 63, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.sticky-timer-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.timer-left-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.discount-tag {
  background: #ff4757;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  animation: pulseTag 1.8s infinite;
}

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

.timer-desc {
  font-size: 14.5px;
  font-weight: 600;
}

.timer-digits-box {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.time-unit {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 12px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 20px;
  font-weight: 800;
  color: #a7f3d0;
  min-width: 44px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.time-sep {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.timer-cta-btn {
  background: var(--accent-green);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.timer-cta-btn:hover {
  background: var(--accent-green-hover);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   HERO SECTION ("Hero Product Capsule Open Hote Huwe")
   ========================================================================== */
.hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-main-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--primary-navy);
}

.hero-main-title span.highlight-green {
  color: #059669;
  position: relative;
}

.hero-lead-text {
  font-size: 17px;
  color: var(--secondary-slate);
  line-height: 1.65;
  max-width: 540px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-stat-ribbon {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 220, 240, 0.7);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--secondary-slate);
  font-weight: 600;
}

/* HERO VISUAL SHOWCASE - SPLIT: BOTTLE + OPEN CAPSULE BURST */
.hero-visual-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.hero-showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
  align-items: stretch;
  margin-top: 12px;
}

/* Hero Bottle Container */
.hero-product-bottle-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px 12px 18px;
  box-shadow: 0 10px 25px rgba(14, 36, 63, 0.08);
  border: 1px solid rgba(220, 235, 250, 0.9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero-main-bottle-img {
  width: 100%;
  max-width: 210px;
  height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 50, 20, 0.2));
  transition: transform 0.4s ease;
}

.hero-product-bottle-wrap:hover .hero-main-bottle-img {
  transform: scale(1.05);
}

.bottle-name-tag {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 800;
  margin-top: 10px;
  white-space: nowrap;
}

/* Hero Open Capsule Burst Container */
.hero-capsule-burst-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.18);
  height: 330px;
  display: flex;
  flex-direction: column;
}

.hero-capsule-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-capsule-burst-wrap:hover .hero-capsule-img {
  transform: scale(1.05);
}

.capsule-caption-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(14, 36, 63, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
}

.floating-pill-tag {
  position: absolute;
  top: -14px;
  left: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(220, 235, 250, 0.9);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 11;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
}

.floating-satisfaction-pill {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(14, 36, 63, 0.14);
  border: 1px solid rgba(220, 235, 250, 0.9);
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doctor-avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-green);
}

.float-stat-content h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
  line-height: 1.2;
}

.float-stat-content p {
  font-size: 11.5px;
  color: var(--secondary-slate);
  margin: 0;
}

/* ==========================================================================
   DOCTOR VIDEO SECTION (Center Doctor Video)
   ========================================================================== */
.doctor-section {
  margin: 70px 0;
  text-align: center;
}

.section-header-centered {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #047857;
  background: #d1fae5;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--secondary-slate);
  line-height: 1.6;
}

.doctor-card-container {
  background: var(--card-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-subtle);
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  text-align: left;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(14, 36, 63, 0.25);
  background: #000;
}

.video-player-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-overlay-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url('../images/doctor-thumb.jpg') center/cover no-repeat;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-overlay-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.play-pulse-btn {
  width: 68px;
  height: 68px;
  background: #ffffff;
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

.video-overlay-preview:hover .play-pulse-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 16px rgba(16, 185, 129, 0.3);
}

.overlay-video-title {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  color: #fff;
  z-index: 2;
  text-align: center;
}

.overlay-video-title h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.overlay-video-title p {
  font-size: 12px;
  opacity: 0.85;
}

.doctor-info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doctor-credentials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.doctor-name-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
}

.doctor-specialty {
  font-size: 14px;
  color: var(--secondary-slate);
  font-weight: 600;
}

.doctor-quote {
  font-size: 14.5px;
  color: #334e68;
  line-height: 1.65;
  border-left: 3px solid var(--accent-green);
  padding-left: 14px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.doctor-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doctor-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-navy);
}

.check-green-icon {
  color: var(--accent-green);
  font-weight: 800;
  font-size: 16px;
}

.cross-red-icon {
  color: var(--accent-red);
  font-weight: 800;
  font-size: 16px;
}

/* ==========================================================================
   TRANSFORMATION & MEDICAL ANATOMY ACTION (9:16 VERTICAL PHOTOS)
   ========================================================================== */
.transformation-section {
  margin: 50px 0 40px;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 36px;
}

.transform-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

/* Pain State Card (Left) */
.transform-card.pain-card {
  border: 2px solid var(--accent-red-border);
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.transform-card.pain-card:hover {
  box-shadow: var(--shadow-glow-red);
}

/* Relief State Card (Right) */
.transform-card.relief-card {
  border: 2px solid var(--accent-green-border);
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.9) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.transform-card.relief-card:hover {
  box-shadow: var(--shadow-glow-green);
}

.transform-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.transform-state-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}

.pain-card .transform-state-title {
  color: #991b1b;
}

.relief-card .transform-state-title {
  color: #065f46;
}

.transform-state-sub {
  font-size: 13.5px;
  color: var(--secondary-slate);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* 9:16 VERTICAL PHOTO CONTAINER */
.transform-photo-wrap-916 {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  background: #000;
}

.transform-photo-wrap-916 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.transform-card:hover .transform-photo-wrap-916 img {
  transform: scale(1.04);
}

.photo-overlay-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.pain-card .photo-overlay-tag {
  background: rgba(185, 28, 28, 0.92);
}

.relief-card .photo-overlay-tag {
  background: rgba(5, 150, 105, 0.92);
}

/* Bullet Lists */
.transform-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.transform-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--primary-navy);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Center Bridge Connector */
.transform-connector-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px;
}

.bridge-capsule-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--accent-green);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  animation: pulseBridge 2s infinite ease-in-out;
}

@keyframes pulseBridge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(16, 185, 129, 0.5); }
}

.bridge-arrow-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #065f46;
  text-align: center;
}

.bridge-arrow-icon {
  font-size: 24px;
  color: var(--accent-green);
  animation: moveArrowRight 1.5s infinite;
}

@keyframes moveArrowRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.bridge-days-badge {
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Animated Medical Prostate Diagram Container */
.prostate-animation-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 50px;
  overflow: hidden;
}

.prostate-animation-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   INGREDIENTS SECTION (Photos + Names + Mechanism)
   ========================================================================== */
.ingredients-section {
  margin: 80px 0;
}

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

.ingredient-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: var(--card-glass-bg-hover);
}

.ingredient-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: #f8fafc;
}

.ingredient-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ingredient-card:hover .ingredient-img-wrap img {
  transform: scale(1.08);
}

.ingredient-meta-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: #047857;
  background: #ecfdf5;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.ingredient-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.ingredient-botanical-name {
  font-size: 12.5px;
  color: var(--muted-blue);
  font-style: italic;
  margin-bottom: 10px;
}

.ingredient-card-desc {
  font-size: 13.5px;
  color: var(--secondary-slate);
  line-height: 1.6;
}

/* ==========================================================================
   HOW TO USE SECTION
   ========================================================================== */
.how-to-use-section {
  margin: 80px 0;
}

.how-to-use-card-container {
  background: linear-gradient(135deg, #0e2b48 0%, #15385f 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 20px 45px -10px rgba(14, 36, 63, 0.3);
  position: relative;
  overflow: hidden;
}

.how-to-use-card-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.how-to-use-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.how-to-use-header h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.how-to-use-header p {
  font-size: 15px;
  opacity: 0.88;
}

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

.step-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.step-box:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.step-badge-num {
  width: 44px;
  height: 44px;
  background: var(--accent-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.step-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 13.5px;
  opacity: 0.88;
  line-height: 1.55;
}

/* ==========================================================================
   BENEFITS SECTION (Medical indicator cards)
   ========================================================================== */
.benefits-section {
  margin: 80px 0;
}

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

.benefit-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefit-icon-box {
  width: 54px;
  height: 54px;
  background: #ecfdf5;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-green);
  border: 1px solid var(--accent-green-border);
}

.benefit-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.benefit-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  color: var(--secondary-slate);
  line-height: 1.6;
}

/* ==========================================================================
   UGC SECTION (Customer Review Images & Testimonials)
   ========================================================================== */
.ugc-section {
  margin: 80px 0;
}

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

.ugc-card {
  background: var(--card-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

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

.ugc-user-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ugc-user-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ugc-user-details h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
}

.ugc-verified-tag {
  font-size: 11.5px;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ugc-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 10px;
}

.ugc-text {
  font-size: 14px;
  color: #334e68;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}

.ugc-outcome-pill {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================================================
   ORDER NOW SECTION & QUICK COD FORM (2-Minute Timer & 25% Discount)
   ========================================================================== */
.order-section {
  margin: 80px 0 60px;
  scroll-margin-top: 100px;
}

.order-box-container {
  background: var(--card-glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 25px 50px -12px rgba(14, 36, 63, 0.18), var(--shadow-glow-green);
  position: relative;
  overflow: hidden;
}

.order-timer-highlight-banner {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.order-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-banner-text h4 {
  font-size: 18px;
  font-weight: 800;
}

.order-banner-text p {
  font-size: 13.5px;
  opacity: 0.92;
}

.order-countdown-live {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-timer-badge {
  background: #ffffff;
  color: #065f46;
  font-family: monospace;
  font-size: 22px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: pulseTimer 1s infinite alternate;
}

@keyframes pulseTimer {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.order-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.order-product-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-product-img-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(14, 36, 63, 0.06);
  border: 1px solid rgba(220, 235, 250, 0.9);
}

.order-product-img {
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.order-benefit-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-navy);
  border: 1px solid #e2e8f0;
}

/* Quick Order Form Inputs */
.quick-order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
}

.form-input, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--primary-navy);
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

/* Package Selection Cards */
.package-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.package-radio-label {
  position: relative;
  cursor: pointer;
  display: block;
}

.package-radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.package-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}

.package-radio-label input:checked + .package-card {
  border-color: var(--accent-green);
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.pkg-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #059669;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pkg-duration {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 4px;
}

.pkg-bottles {
  font-size: 11.5px;
  color: var(--secondary-slate);
}

.pkg-discount-tag {
  font-size: 11px;
  font-weight: 800;
  color: #dc2626;
  margin-top: 4px;
}

.btn-submit-order {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-full);
  font-size: 17.5px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.25s ease;
  width: 100%;
  margin-top: 8px;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(16, 185, 129, 0.45);
}

.cod-guarantee-text {
  text-align: center;
  font-size: 13px;
  color: var(--secondary-slate);
  font-weight: 600;
}

/* ==========================================================================
   LICENSES & CERTIFICATIONS SECTION
   ========================================================================== */
.licenses-section {
  margin: 50px 0 40px;
  text-align: center;
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.license-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease;
}

.license-card:hover {
  transform: translateY(-3px);
}

.license-icon {
  font-size: 28px;
}

.license-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
}

/* ==========================================================================
   FOOTER (STRICT: COPYRIGHT HEALTH AYURVEDA ONLY. NO ADDRESS, NO PRIVACY)
   ========================================================================== */
.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(200, 220, 240, 0.7);
  text-align: center;
  margin-top: 30px;
}

.copyright-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-slate);
}

/* Success Modal */
.order-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 36, 63, 0.75);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-modal.active {
  display: flex;
}

.modal-content-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background: #ecfdf5;
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
  border: 2px solid var(--accent-green);
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--secondary-slate);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-order-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
  font-size: 13.5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.btn-modal-close {
  background: var(--primary-navy);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS (Mobile First for Meta Ads)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-main-title {
    font-size: 38px;
  }
  
  .hero-stat-ribbon {
    justify-content: center;
  }

  .hero-visual-card {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .doctor-card-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .transform-connector-bridge {
    flex-direction: row;
    padding: 10px 0;
  }

  .bridge-arrow-icon {
    transform: rotate(90deg);
  }
  
  .ingredients-grid,
  .benefits-grid,
  .ugc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .licenses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .order-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0 12px;
  }
  
  .brand-logo-img {
    height: 54px;
  }
  
  .brand-name {
    font-size: 20px;
  }
  
  .btn-nuvica-dark {
    padding: 8px 12px 8px 18px;
    font-size: 13px;
  }
  
  .btn-circle-arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .sticky-timer-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 14px;
  }
  
  .timer-left-content {
    flex-direction: column;
    gap: 6px;
  }
  
  .hero-main-title {
    font-size: 28px;
  }

  .hero-showcase-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-product-bottle-wrap {
    padding: 16px;
  }

  .hero-main-bottle-img {
    height: 240px;
    max-width: 190px;
  }

  .hero-capsule-burst-wrap {
    height: 260px;
  }
  
  .floating-satisfaction-pill {
    left: 10px;
    bottom: -15px;
    padding: 6px 12px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ingredients-grid,
  .benefits-grid,
  .ugc-grid {
    grid-template-columns: 1fr;
  }
  
  .licenses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-options-grid {
    grid-template-columns: 1fr;
  }
  
  .order-box-container {
    padding: 24px 16px;
  }

  .prostate-animation-card {
    padding: 12px;
  }
}


.capsule-burst-container{position:relative;width:100%;aspect-ratio:1/1;border-radius:28px;overflow:hidden;background:#f4fbff;display:flex;align-items:center;justify-content:center;}
.capsule-burst-img{width:100%;height:100%;object-fit:contain;display:block;padding:10px;}
.floating-overlay-bottle{position:absolute;bottom:-8px;left:50%;transform:translateX(-50%);width:min(260px,62%);height:auto;object-fit:contain;filter:drop-shadow(0 18px 32px rgba(0,0,0,.22));z-index:5;pointer-events:none;}
@media(max-width:768px){.floating-overlay-bottle{width:min(210px,60%);bottom:-4px;}}
