/* ==========================================================================
   VITAMINO INDIA PVT LTD. - Core Design System & Global Styles
   Brand: VITAMIN O
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..800;1,9..40,400..800&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Color Palette */
  --primary-green: #0B5D32;
  --primary-green-dark: #074022;
  --primary-green-light: #127943;
  --brand-orange: #E87511;
  --brand-orange-hover: #cf6409;
  --cream-bg: #F8F5EC;
  --cream-card: #FFFFFF;
  --sage-light: #EEF4E8;
  --text-dark: #18251C;
  --text-muted: #56685B;
  --border-light: rgba(11, 93, 50, 0.12);
  --gold-accent: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-editorial: 'Playfair Display', serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --header-height: 90px;
  --header-sticky-height: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transition & Shadow */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 12px rgba(24, 37, 28, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 93, 50, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 93, 50, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

/* Exclude Logos from Box Rounded Corners */
.brand-logo img,
.header-logo img,
.footer-logo img,
.mobile-nav-logo img,
.marquee-item img {
  border-radius: 0 !important;
}

/* Master Global Image Rounded Corners Rule (Ultra-Curved 22px) */
.product-card-img img,
.product-card-img-wrapper img,
.product-detail-img img,
.hero-image-podium img,
.showcase-visual img,
.quality-visual img,
.about-visual img,
.feature-img img,
.spec-modal-img img,
#compareModal img,
.gallery-img img,
.qa-timeline-step img {
  border-radius: 22px !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.font-editorial {
  font-family: var(--font-editorial);
}

.text-green {
  color: var(--primary-green);
}

.text-orange {
  color: var(--brand-orange);
}

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

.text-muted {
  color: var(--text-muted);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 93, 50, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 93, 50, 0.35);
}

.btn-orange {
  background-color: var(--brand-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 117, 17, 0.25);
}

.btn-orange:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 117, 17, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon-arrow svg {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-arrow svg {
  transform: translate(3px, -3px);
}

/* Announcement Top Bar */
.announcement-bar {
  background-color: var(--primary-green-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-item a:hover {
  color: var(--brand-orange);
}

/* Navigation Header */
/* Navigation Header (Luxury Glassmorphic Design) */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 3px solid var(--primary-green);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  height: var(--header-height, 80px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(11, 93, 50, 0.08);
}

.main-header.scrolled {
  height: var(--header-sticky-height, 70px);
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--primary-green);
  box-shadow: 0 8px 30px rgba(11, 93, 50, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

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

.brand-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition-fast);
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(11, 93, 50, 0.12));
}

.main-header.scrolled .brand-logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text-dark);
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--primary-green);
  background-color: var(--sage-light);
  box-shadow: inset 0 -3px 0 0 rgba(11, 93, 50, 0.3);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary-green);
  font-weight: 800;
  background-color: var(--sage-light);
  box-shadow: inset 0 -3px 0 0 var(--primary-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions .btn {
  padding: 9px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(232, 117, 17, 0.25);
  transition: all var(--transition-fast);
}

.header-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 117, 17, 0.35);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.mobile-nav-link.active {
  color: var(--primary-green);
}

/* QA Parameter Cards System (High-Contrast & Luxury Styling) */
.qa-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.qa-param-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qa-param-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.qa-param-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qa-param-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  color: var(--primary-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.qa-param-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-green);
}

.qa-param-badge {
  display: inline-block;
  background: var(--primary-green-dark);
  color: var(--gold-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.qa-param-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Specification Tables General */
.spec-table-wrapper {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.spec-table th {
  background: var(--sage-light);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-green);
}

.spec-table tr:hover td {
  background: rgba(11, 93, 50, 0.02);
}

/* Hero Pagination Dots System */
.hero-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  position: relative;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(11, 93, 50, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
}

.hero-dot.active {
  width: 38px;
  background: var(--primary-green);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(11, 93, 50, 0.3);
}

.hero-dot:hover {
  background: var(--brand-orange);
}

.hero-ambient-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  pointer-events: none;
  z-index: 0;
  animation: heroRingPulse 8s infinite ease-in-out;
}

.hero-ring-1 {
  width: 550px;
  height: 550px;
  top: -120px;
  right: -120px;
}

.hero-ring-2 {
  width: 750px;
  height: 750px;
  bottom: -220px;
  left: -220px;
  animation-delay: 4s;
}

@keyframes heroRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

@keyframes floatBadgeBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-glow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(11, 93, 50, 0.15) 50%, transparent 75%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: heroRingPulse 6s infinite ease-in-out;
}

.floating-hero-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(11, 93, 50, 0.15);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  white-space: nowrap;
}

.float-badge-1 {
  top: 8%;
  right: -10px;
  animation: floatBadgeBounce 4s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 12%;
  right: -20px;
  animation: floatBadgeBounce 4.5s ease-in-out infinite 1s;
}

.float-badge-3 {
  top: 25%;
  left: -25px;
  animation: floatBadgeBounce 5s ease-in-out infinite 0.5s;
}

/* Pillars Card System (About Us) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  background: var(--sage-light);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Timeline Vertical System (About Us) */
.corporate-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 0;
}

.corporate-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--primary-green);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

.timeline-node {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary-green);
}

.timeline-item:nth-child(odd) .timeline-node {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-node {
  left: -10px;
}

.timeline-content-box {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* Credential Strip / Marquee */
.credential-marquee {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand-orange);
  border-radius: 50%;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Counter Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sector Solutions Matrix Tabs */
.sector-tabs-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sector-tab-btn {
  padding: 14px 24px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sector-tab-btn:hover,
.sector-tab-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(11, 93, 50, 0.2);
}

/* B2B Superiority Cards Grid */
.superiority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.superiority-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.superiority-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-green);
}

.superiority-icon {
  width: 54px;
  height: 54px;
  background: var(--sage-light);
  color: var(--primary-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* FAQ Accordion Component */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--primary-green);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--sage-light);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-orange);
  color: var(--white);
}

.faq-body {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

/* Testimonial Card Component */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--gold-accent);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
}

/* Quiz Recommender Widget */
.quiz-option-card {
  background: var(--cream-bg);
  padding: 20px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.quiz-option-card:hover,
.quiz-option-card.selected {
  border-color: var(--primary-green);
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0 6px 20px rgba(11, 93, 50, 0.12);
  transform: translateY(-3px);
}

/* Lipid Bar Components */
.lipid-bar-container {
  margin-bottom: 16px;
}

.lipid-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.lipid-progress-bg {
  height: 10px;
  background: rgba(11, 93, 50, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.lipid-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--brand-orange) 100%);
  border-radius: var(--radius-full);
  transition: width 0.6s ease;
}

/* Compare Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 720px;
  max-height: 82vh;
  border-radius: var(--radius-md);
  overflow-y: auto;
  padding: 28px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-bg);
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2DDD0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  animation: floatPulse 3s infinite ease-in-out;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background-color: #20bd5a;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Footer */
.main-footer {
  background-color: var(--primary-green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 30px;
  font-size: 0.925rem;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: 'VITAMIN O';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-heading);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  user-select: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  max-height: 55px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--brand-orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-link a:hover {
  color: var(--brand-orange);
}

/* Step-by-Step 7-Stage QA Pipeline Layout System */
.qa-timeline-pipeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Vertical Connecting Line Track */
.qa-timeline-pipeline::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 28px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--brand-orange) 50%, var(--gold-accent) 100%);
  border-radius: var(--radius-full);
  z-index: 1;
}

.qa-timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  z-index: 2;
}

.qa-timeline-step:last-child {
  margin-bottom: 0;
}

.qa-step-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--white), 0 4px 14px rgba(11, 93, 50, 0.25);
  transition: all var(--transition-fast);
  z-index: 2;
}

.qa-timeline-step:hover .qa-step-number {
  background: var(--brand-orange);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--white), 0 6px 20px rgba(232, 117, 17, 0.4);
}

.qa-step-card {
  flex: 1;
  background: var(--cream-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.qa-timeline-step:hover .qa-step-card {
  background: var(--white);
  border-color: var(--primary-green);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.qa-step-card-final {
  border: 2px solid var(--primary-green);
  background: linear-gradient(135deg, rgba(248, 245, 236, 1) 0%, rgba(238, 244, 232, 1) 100%);
}

.qa-step-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 4px;
}

.qa-step-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.qa-step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin: 0;
}

.qa-step-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.qa-step-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
}

.qa-step-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .qa-timeline-pipeline::before {
    left: 20px;
    top: 30px;
    bottom: 30px;
  }

  .qa-timeline-step {
    gap: 14px;
  }

  .qa-step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    box-shadow: 0 0 0 4px var(--white), 0 3px 10px rgba(11, 93, 50, 0.2);
  }

  .qa-step-card {
    padding: 18px 20px;
  }

  .qa-step-title {
    font-size: 1.1rem;
  }
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  fill: var(--brand-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.developer-link {
  color: var(--brand-orange) !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.developer-link:hover {
  color: var(--gold-accent) !important;
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Mobile Nav Drawer Developer Watermark Badge */
.mobile-nav-watermark {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-nav-watermark a {
  color: var(--brand-orange) !important;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.mobile-nav-watermark a:hover {
  color: var(--gold-accent) !important;
  text-decoration: underline;
}

/* ==========================================================================
   PHONE RESPONSIVE DECLUTTER OVERHAUL (MOBILE-ONLY < 767px)
   ========================================================================== */
@media (max-width: 991px) {
  #heroGridWrapper {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content>div {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 32px 0 44px !important;
  }

  #heroTitle {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
  }

  #heroDesc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }

  .hero-content>div {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-content .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Hide floating badges ONLY ON PHONES to eliminate clutter & overlap */
  .floating-hero-pill {
    display: none !important;
  }

  .hero-ambient-ring {
    display: none !important;
  }

  .hero-image-podium {
    max-width: 100% !important;
    padding: 24px 14px 44px !important;
    border-radius: 20px !important;
  }

  #heroImg {
    height: 320px !important;
    max-height: 320px !important;
  }

  /* Live card on phone podium */
  .hero-image-podium>div:last-child {
    bottom: -18px !important;
    width: 92% !important;
    padding: 12px 16px !important;
  }

  #heroCardTitle {
    font-size: 1.1rem !important;
  }

  #heroCardSub {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  #heroTitle {
    font-size: 1.8rem !important;
  }

  .hero-image-podium {
    padding: 20px 10px 40px !important;
    border-radius: 18px !important;
  }

  #heroImg {
    height: 290px !important;
    max-height: 290px !important;
  }

  #heroCardTitle {
    font-size: 1.025rem !important;
  }

  #heroCardSub {
    font-size: 0.725rem !important;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM GLOBAL SELECT DROPDOWN STYLING & UI/UX ENHANCEMENT
   ========================================================================== */
select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: var(--white) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B5D32' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 18px 18px !important;
  padding: 14px 46px 14px 20px !important;
  border-radius: 12px !important;
  border: 1.5px solid var(--border-light) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: var(--primary-green) !important;
  box-shadow: 0 4px 12px rgba(11, 93, 50, 0.05) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
}

select:hover {
  border-color: var(--primary-green) !important;
  box-shadow: 0 6px 20px rgba(11, 93, 50, 0.12) !important;
  transform: translateY(-1px) !important;
}

select:focus {
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25), 0 8px 24px rgba(11, 93, 50, 0.15) !important;
  transform: translateY(-1px) !important;
}

select option {
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  padding: 12px 16px !important;
}

/* Custom Dropdown Class for Showcase Section */
.showcase-select-dropdown {
  width: 100% !important;
  max-width: 520px !important;
  padding: 16px 50px 16px 24px !important;
  font-size: 1.05rem !important;
  border: 2px solid var(--gold-accent) !important;
  background-color: var(--cream-bg) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18) !important;
}

.showcase-select-dropdown:hover {
  background-color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(11, 93, 50, 0.18) !important;
}