/* ==========================================================================
   THAVIRA GUT CLARITY LANDING PAGE DESIGN SYSTEM
   ========================================================================== */

/* Color Tokens & Base Variables */
:root {
  --color-forest: #314528;
  --color-forest-dark: #314528;
  --color-forest-light: #1b5335;
  --color-mint: #1f8e5c;
  --color-mint-light: #25a169;
  --color-mint-glow: rgba(31, 142, 92, 0.3);

  --color-sage-light: #f3f7f4;
  --color-cream: #fafbf9;
  --color-white: #ffffff;

  --color-amber: #d97706;
  --color-amber-light: #fef3c7;
  --color-amber-bg: #fffbeb;
  --color-amber-border: #fde68a;

  --color-charcoal: #1f2937;
  --color-slate: #4b5563;
  --color-slate-light: #9ca3af;
  --color-border: #e2e8f0;

  --color-danger: #ef4444;
  --color-danger-light: #fee2e2;
  --color-whatsapp: #25d366;

  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-premium:
    0 20px 25px -5px rgba(17, 66, 39, 0.05),
    0 10px 10px -5px rgba(17, 66, 39, 0.02);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-forest-dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--color-slate);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: clamp(48px, 8vw, 96px) 0;
}

.bg-light {
  background-color: var(--color-sage-light);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-white) !important;
}

.text-gray {
  color: var(--color-slate-light) !important;
}

.text-success {
  color: var(--color-mint) !important;
}

.text-danger {
  color: var(--color-danger) !important;
}

.text-whatsapp {
  color: var(--color-whatsapp) !important;
}

.text-underline {
  position: relative;
  display: inline-block;
}

.text-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-mint);
  border-radius: var(--radius-full);
}

/* Section Header Typography */
.section-header {
  margin-bottom: clamp(32px, 5vw, 56px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--color-mint);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background-color: rgba(31, 142, 92, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-label-alert {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--color-amber);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background-color: var(--color-amber-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtext {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--color-slate);
  line-height: 1.5;
}

.highlight {
  color: var(--color-mint);
}

.comparison-split {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 20px;
  align-items: center;
}

.comparison-side {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.old-side {
  border: 1px solid #fed7aa;
}

.new-side {
  border: 1px solid #bbf7d0;
}

.side-title {
  padding: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.old-title {
  background: #fff7ed;
  color: #c2410c;
}

.new-title {
  background: #ecfdf5;
  color: #15803d;
}

.compare-item {
  padding: 13px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 17px;
  line-height: 1.6;
}

.compare-item:last-child {
  border-bottom: none;
}

.compare-item i {
  margin-top: 4px;
  font-size: 20px;
  flex-shrink: 0;
}

.success {
  background: #fcfffd;
}

.vs-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: auto;
}

@media (max-width: 768px) {
  .comparison-split {
    grid-template-columns: 1fr;
  }

  .vs-badge {
    margin: 10px auto;
  }
}

/* Custom Buttons & Interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #314528;
  color: var(--color-white);
  padding: 16px 36px;
  font-size: clamp(16px, 2vw, 18px);
  box-shadow: 0 4px 14px var(--color-mint-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 142, 92, 0.4);
}

.btn-secondary {
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 16px 32px;
  font-size: 16px;
  animation: animatedgradient 3s ease infinite alternate;
}

.btn-secondary:hover {
  background-color: var(--color-forest-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 66, 39, 0.3);
}

.btn-nav {
  background-color: var(--color-forest);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  background-color: var(--color-mint);
  transform: scale(1.03);
}

.btn-full-width {
  width: 100%;
}

/* Animations */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 142, 92, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(31, 142, 92, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 142, 92, 0);
  }
}

.pulse-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.animate-pulse-icon {
  animation: pulseIcon 1.5s infinite;
}

.journey-section .section-heading {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 80px;
}

.journey-section .eyebrow {
  background: #dcfce7;
  color: #15803d;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.journey-section .section-heading h2 {
  font-size: 60px;
  line-height: 1.05;
  margin: 20px 0;
  font-weight: 900;
  color: #111827;
}

.journey-section .section-heading h2 span {
  color: #16a34a;
}

.journey-section .section-heading p {
  font-size: 20px;
  color: #6b7280;
}

.journey-section .journey-path {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.journey-section .journey-card {
  width: 360px;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.journey-section .elevated {
  transform: translateY(-40px);
}

.journey-section .image-wrap {
  position: relative;
  height: 240px;
}

.journey-section .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section .team-carousel-container {
    height: 565px;
}

.logo-flex{
  width: 100px;
}
.logo-area {
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.journey-section .step-pill {
  position: absolute;
  left: 20px;
  top: 20px;
  background: #111827;
  color: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
}

.journey-section .green {
  background: #16a34a;
}

.journey-section .content {
  padding: 10px;
}

.journey-section .content h3 {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 800;
  color: #111827;
}

.journey-section .content p {
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 18px;
}

.journey-section .highlight {
  display: inline-block;
  background: #fff7ed;
  color: #c2410c;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.journey-section .success-tag {
  background: #dcfce7;
  color: #166534;
}

.journey-section .connector {
  width: 70px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 100px;
  position: relative;
}

.journey-section .connector::after {
  content: "→";
  position: absolute;
  right: -8px;
  top: -14px;
  font-size: 28px;
  color: #9ca3af;
}

.journey-section .connector.active {
  background: #22c55e;
}

.journey-section .connector.active::after {
  color: #22c55e;
}

.journey-section .success {
  border: 2px solid #bbf7d0;
}

@media (max-width: 1100px) {
  .journey-section .journey-path {
    flex-direction: column;
  }

  .journey-section .connector {
    width: 4px;
    height: 70px;
  }

  .journey-section .connector::after {
    content: "↓";
    top: auto;
    bottom: -18px;
    left: -10px;
  }

  .journey-section .elevated {
    transform: none;
  }

  .journey-section .section-heading h2 {
    font-size: 40px;
  }

  .journey-section .journey-card {
    width: 100%;
    max-width: 500px;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.tag {
  display: inline-block;
  background: #fff7ed;
  color: #c2410c;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-head h2 {
  font-size: 54px;
  line-height: 1.05;
  margin: 20px 0 14px;
  color: #18181b;
  font-weight: 900;
}

.section-head p {
  color: #71717a;
  font-size: 20px;
}

.loops-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.loop-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #e7e5e4;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.loop-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: #fff7ed;
  border-radius: 18px;
  margin-bottom: 20px;
}

.loop-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: #18181b;
  font-weight: 800;
}

.cycle {
  position: relative;
  height: 220px;
  width: 220px;
  margin: auto;
  border: 3px dashed #f59e0b;
  border-radius: 50%;
}

.cycle span {
  position: absolute;
  background: white;
  border: 1px solid #fde68a;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  text-align: center;
}

.cycle span:nth-child(1) {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.cycle span:nth-child(2) {
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}

.cycle span:nth-child(3) {
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
  width: max-content;
}

.restart {
  text-align: center;
  margin-top: 25px;
  color: #dc2626;
  font-weight: 800;
  font-size: 15px;
}

.check {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;
}

.root-cause-box h4 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #14532d;
  font-weight: 900;
}

.root-cause-box p {
  color: #166534;
  line-height: 1.7;
  font-size: 17px;
}

@media (max-width: 768px) {
  .section-head h2 {
    font-size: 38px;
  }

  .loops-grid {
    grid-template-columns: 1fr;
  }

  .cycle {
    width: 180px;
    height: 180px;
  }

  .root-cause-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   SECTION STYLING
   ========================================================================== */

/* SECTION 00 — Qualifier Bar */

.live-dot {
  width: 12px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8ef4b6 0%, #3fc96d 70%, #2d9d52 100%);
  animation: dotGlow 1.4s infinite ease-in-out;
  box-shadow: 0 0 6px rgba(63, 201, 109, 0.7);
}

@keyframes dotGlow {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(0.85);
    opacity: 0.8;
  }
}

.qualifier-bar {
  background-color: #e7ffe5;
  padding: 10px 0;
  text-align: center;
}

.qualifier-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.warning-icon {
  color: var(--color-amber);
  font-size: 16px;
  display: flex;
  align-items: center;
}

.qualifier-text {
  font-size: 13px;
  font-weight: 600;
  color: #307f4a;
  margin: 0;
  letter-spacing: -0.01em;
}

/* SECTION 01 — Navigation */
.main-nav {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 100;
  padding: 12px 0;
}

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

.logo-flex {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  color: var(--color-forest);
  font-size: 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--color-forest);
  letter-spacing: 0.05em;
}

.nav-micro-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-slate);
  margin-top: 2px;
}

/* SECTION 02 — Hero / Above The Fold */
.hero-section {
  background: radial-gradient(
    circle at 10% 20%,
    rgba(244, 248, 245, 1) 0%,
    rgba(250, 251, 249, 1) 90%
  );
  padding: clamp(32px, 6vw, 64px) 0 clamp(48px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--color-border);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

.hero-badge {
  background-color: rgba(31, 142, 92, 0.1);
  color: var(--color-forest-light);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero-headline {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--color-forest-dark);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--color-slate);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta-wrapper {
  width: 100%;
  margin-bottom: 28px;
}

.btn-hero {
  display: inline-block;
  width: auto;
}

.cta-microcopy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-slate);
  font-weight: 500;
}

.cta-microcopy i {
  font-size: 14px;
}

.hero-trust-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  width: 100%;
}

.trust-dot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-forest);
}

.trust-dot-item i {
  color: var(--color-mint);
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.trust-pill {
  background-color: #ecffec;
  border: 1px solid green;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: green;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Call Card Component */
.call-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.call-card-header {
  background-color: var(--color-forest);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-card-header h3 {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-indicator {
  background-color: rgba(37, 211, 102, 0.2);
  color: var(--color-whatsapp);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-indicator::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  display: inline-block;
}

.call-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.grid-box {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.grid-box:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}

.grid-box:nth-child(1),
.grid-box:nth-child(2) {
  border-bottom: 1px solid var(--color-border);
}

.box-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-slate-light);
  letter-spacing: 0.05em;
}

.box-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.text-primary-color .box-value {
  color: var(--color-mint);
  font-size: 18px;
}

.call-card-footer {
  background-color: var(--color-sage-light);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-forest);
}

.call-card-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Medical Graphic Composition */
.medical-composition {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.composition-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background-color: rgba(31, 142, 92, 0.06);
  border-radius: 50%;
  z-index: 1;
}

.graphic-gut {
  position: absolute;
  width: 200px;
  z-index: 2;
  transform: translate(-60px, 40px);
  opacity: 0.95;
  mix-blend-mode: multiply;
}

.graphic-doctor {
  position: absolute;
  width: 240px;
  border-radius: 50%;
  border: 6px solid var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transform: translate(60px, -20px);
}

.doctor-badge-floating {
  position: absolute;
  bottom: 30px;
  right: 20px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.doctor-badge-floating i {
  color: var(--color-mint);
  font-size: 24px;
}

.doctor-badge-floating div {
  display: flex;
  flex-direction: column;
}

.doctor-badge-floating strong {
  font-size: 13px;
  color: var(--color-forest-dark);
}

.doctor-badge-floating span {
  font-size: 11px;
  color: var(--color-slate-light);
}

/* SECTION 03 — Is This You? Symptom Recognition Grid */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.symptom-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.2);
}

.symptom-image-container {
  width: 100%;
  height: 140px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
}

.symptom-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.symptom-card:hover .symptom-image {
  transform: scale(1.05);
}

.symptom-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
}

.symptom-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.5;
  flex-grow: 1;
}

.symptom-impact {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 4px 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.symptom-footer {
  max-width: 600px;
  margin: 0 auto;
}

.commitment-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 24px;
}

/* SECTION 04 — The Recurring Relief Loop */
.loop-section {
  background: linear-gradient(135deg, #f0f7f3 0%, #e8f5ee 50%, #f5f9f6 100%);
  border-top: 1px solid #c8e6d4;
  border-bottom: 1px solid #c8e6d4;
}

.loop-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.loop-box {
  background-color: #ffffff;
  border: 1px solid rgba(17, 66, 39, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(17, 66, 39, 0.06);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.loop-box:hover {
  box-shadow: 0 8px 32px rgba(17, 66, 39, 0.12);
  transform: translateY(-3px);
}

.loop-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.loop-box:nth-child(1)::before {
  background-color: #38bdf8;
}

/* Acidity blue */
.loop-box:nth-child(2)::before {
  background-color: #c084fc;
}

/* H Pylori purple */
.loop-box:nth-child(3)::before {
  background-color: #4ade80;
}

/* IBS green */
.loop-box:nth-child(4)::before {
  background-color: #fbbf24;
}

/* Constipation amber */

.loop-box-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.badge-acid {
  background-color: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-hpylori {
  background-color: rgba(192, 132, 252, 0.15);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.3);
}

.badge-ibs {
  background-color: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-const {
  background-color: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.loop-steps-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 991px) {
  .loop-steps-visual {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.loop-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  background-color: #f8faf9;
  border: 1px solid rgba(17, 66, 39, 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.loop-step:hover {
  background-color: #f0f7f3;
  transform: translateY(-2px);
}

.step-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.step-suppress .step-icon-badge {
  background-color: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.step-relief .step-icon-badge {
  background-color: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.step-relapse .step-icon-badge {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.step-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-lbl {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  color: var(--color-slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.loop-arrow-divider {
  color: rgba(17, 66, 39, 0.3);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .loop-arrow-divider {
    transform: rotate(90deg);
    margin: 0 auto;
    height: 12px;
  }
}

.reframe-box {
  background-color: var(--color-amber-bg);
  border: 1px solid var(--color-amber-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 40px 0px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.journey-section {
  padding: 0px;
}

.journey-section .content h3 {
  font-size: 22px;
  text-align: center;
}

.journey-section .content p {
  text-align: center;
}

.journey-section .highlight {
  padding: 6px 14px;
  border-radius: 100px;
  text-align: center;
  font-size: 12px;
}

.reframe-icon {
  background-color: var(--color-amber);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.reframe-content h4 {
  color: #92400e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.reframe-content p {
  color: #b45309;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.loop-footer {
  margin-top: 24px;
}

/* SECTION 05 — The Thavira Root-Cause Clarity Method */
.step-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 48px auto;
  max-width: 1200px;
}

@media (max-width: 991px) {
  .step-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
  }
}

.step-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(31, 142, 92, 0.2);
}

.step-card-image-container {
  width: 100%;
  height: 200px;
  background-color: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.step-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.step-card:hover .step-card-image {
  transform: scale(1.04);
}

.step-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-card-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  color: var(--color-mint);
  background-color: rgba(31, 142, 92, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-forest-dark);
}

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

/* Comparison Table */
.comparison-wrapper {
  margin: clamp(33px, 8vw, 72px) auto;
  max-width: 800px;
}

.comparison-heading {
  margin-bottom: 24px;
  font-size: 20px;
}

.comparison-table {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-sage-light);
  border-bottom: 2px solid var(--color-border);
}

.table-col {
  padding: 16px 24px;
  font-size: 14px;
}

.col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-slate);
  text-align: center;
}

.col-title.highlight-col {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row .table-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.old-val {
  color: var(--color-slate);
  border-right: 1px solid var(--color-border);
}

.new-val {
  font-weight: 600;
  color: var(--color-forest-dark);
}

/* Interactive Tabs */
.condition-tabs-wrapper {
  margin: 48px auto;
  max-width: 850px;
}

.tabs-heading {
  font-size: 18px;
  margin-bottom: 20px;
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab-btn {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-slate);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}

.tabs-content-container {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

.tab-content h4 {
  font-size: 18px;
  color: var(--color-mint);
  margin-bottom: 10px;
}

.tab-content p {
  font-size: 15px;
  line-height: 1.6;
}

.bridge-line {
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bridge-line p {
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 24px;
}

/* SECTION 06 — Doctor-Led Team / Authority */
.authority-section {
  background: linear-gradient(135deg, #f5f9f6 0%, #edf5f0 50%, #f0f7f3 100%);
  border-top: 1px solid #c8e6d4;
  border-bottom: 1px solid #c8e6d4;
}

.authority-section .section-title {
  color: var(--color-forest-dark);
}

.authority-section .section-label {
  color: var(--color-mint);
}

.authority-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: center;
}

.authority-intro .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-forest-dark);
  margin-bottom: 16px;
}

.authority-intro .body-text {
  font-size: 15px;
  color: var(--color-slate);
  margin-bottom: 24px;
}

.philosophy-block {
  background-color: rgba(17, 66, 39, 0.04);
  border: 1px solid rgba(17, 66, 39, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
}

.philosophy-block h4 {
  color: var(--color-mint);
  font-size: 16px;
  margin-bottom: 8px;
}

.philosophy-block p {
  font-size: 14px;
  color: var(--color-slate);
  line-height: 1.5;
}

.doctor-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctor-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.doctor-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 142, 92, 0.2);
}

.doc-image-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(31, 142, 92, 0.2);
  box-shadow: 0 4px 12px rgba(17, 66, 39, 0.1);
}

.doc-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doc-info h4 {
  color: var(--color-forest-dark);
  font-size: 18px;
}

.doc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-mint);
}

.doc-exp,
.doc-cert {
  font-size: 12px;
  color: var(--color-slate);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doc-desc {
  font-size: 13px;
  color: var(--color-slate);
  margin-top: 8px;
  line-height: 1.5;
}

.medical-disclaimer {
  color: white;
}

/* Process Reminder Pipeline */
.process-reminder-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.process-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-mint);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
}

.step-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
}

.process-separator {
  color: var(--color-slate-light);
}

/* SECTION 07 — What You'll Understand In The Call */
.discovery-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.discovery-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.discovery-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.discovery-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: rgba(17, 66, 39, 0.08);
  border-radius: 50%;
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discovery-item p {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-top: 2px;
}

.outcome-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.outcome-header {
  background-color: var(--color-forest);
  padding: 20px 24px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.outcome-header i {
  font-size: 20px;
}

.outcome-header h3 {
  color: var(--color-white);
  font-size: 16px;
}

.outcome-list {
  list-style: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.outcome-list li i {
  color: var(--color-mint);
  font-size: 16px;
  margin-top: 2px;
}

.outcome-footer {
  padding: 0 24px 24px 24px;
}

/* SECTION 08 — Who This Call Is For / Not For */
.qualification-section {
  background-color: var(--color-forest-dark);
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.qual-col {
  border-radius: var(--radius-md);
  padding: 32px;
}

.qual-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qual-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qual-col ul li {
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.qual-col ul li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}

.qual-col.for-you {
  background-color: white;
  border: 1px solid rgba(31, 142, 92, 0.15);
}

.qual-col.for-you h3 {
  color: var(--color-mint-light);
}

.qual-col.for-you ul li::before {
  content: "\f00c";
  color: var(--color-mint-light);
}

.qual-col.not-for-you {
  background-color: white;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.qual-col.not-for-you h3 {
  color: #ed0d0d;
}

.filter-line p {
  color: white;
}

.qual-col.not-for-you ul li::before {
  content: "\f00d";
  color: #ed0d0d;
}

.copyright {
  color: white;
}

.filter-line {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.filter-line p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* SECTION 09 — What You Get In The ₹199 Gut Clarity Call */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 32px;
}

.inclusions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.inclusion-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.inclusion-num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-mint);
  background-color: rgba(31, 142, 92, 0.06);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inclusion-text h4 {
  font-size: 15px;
  color: var(--color-forest-dark);
  margin-bottom: 4px;
}

.inclusion-text p {
  font-size: 13px;
  line-height: 1.5;
}

/* Featured Price Card */
.price-card-column {
  position: sticky;
  top: 24px;
  align-self: start;
}

.price-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-forest);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--color-forest);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.price-value-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--color-mint);
}

.price-period {
  font-size: 12px;
  color: var(--color-slate);
  font-weight: 600;
}

.price-card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.p-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
}

.p-feature i {
  color: var(--color-mint);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.checkout-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.payment-trust {
  font-size: 11px;
  color: var(--color-slate-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* SECTION 10 — Real Patient Proof */
.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.hero-video-box {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  height: 240px;
  cursor: pointer;
  overflow: hidden;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-thumbnail-container:hover .video-poster {
  transform: scale(1.05);
}

.play-trigger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.video-thumbnail-container:hover .play-trigger-btn {
  background-color: var(--color-mint);
  color: var(--color-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption-overlay {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 3;
  color: var(--color-white);
}

.video-caption-overlay h4 {
  color: var(--color-white);
  font-size: 16px;
}

.video-caption-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.video-quote {
  padding: 20px;
  font-style: italic;
  font-size: 14px;
  color: var(--color-charcoal);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.video-quote::before {
  content: "“";
  font-family: var(--font-heading);
  font-size: 60px;
  color: rgba(31, 142, 92, 0.08);
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
}

.condition-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proof-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 142, 92, 0.2);
}

.proof-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.proof-profile-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.proof-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.proof-meta strong {
  font-size: 14px;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.proof-location {
  font-size: 11px;
  color: var(--color-slate-light);
}

.proof-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  color: var(--color-forest);
  background-color: rgba(17, 66, 39, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-left: auto;
}

.proof-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-slate);
  font-style: italic;
  margin: 0;
}

/* WhatsApp Carousel Snap Scroll Setup */
.whatsapp-carousel-wrapper {
  margin: 56px auto;
  position: relative;
  max-width: 960px;
}

.carousel-heading {
  font-size: 18px;
  margin-bottom: 24px;
}

.whatsapp-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
  /* Firefox */
}

.whatsapp-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.whatsapp-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background-color: #f0f2f5;
  /* Classic WA Background */
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.wa-header {
  background-color: #075e54;
  color: var(--color-white);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wa-avatar-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wa-avatar-info strong {
  font-size: 12px;
}

.wa-avatar-info span {
  font-size: 9px;
  opacity: 0.8;
}

.wa-badge {
  background-color: #128c7e;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.wa-body-img-wrapper {
  padding: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23dfdfdf' fill-opacity='0.3'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: #e5ddd5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.wa-chat-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  object-fit: contain;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.carousel-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-control-btn:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
  border-color: var(--color-forest);
}

/* Proof Number Bar */
.proof-number-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.num-item {
  text-align: center;
}

.num-value {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--color-mint);
  display: block;
}

.num-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-slate-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-footer {
  max-width: 600px;
  margin: 0 auto;
}

.closing-proof-line {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 24px;
}

/* SECTION 11 — Clarity Assurance / Risk Reduction */
.assurance-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.assurance-step-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px;
  text-align: center;
}

.assurance-step-card .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(31, 142, 92, 0.08);
  color: var(--color-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px auto;
}

.assurance-step-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.assurance-step-card p {
  font-size: 13px;
  line-height: 1.5;
}

.assurance-box-card {
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 32px auto;
}

.assurance-box-icon {
  background-color: #0284c7;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.assurance-box-content h4 {
  color: #0369a1;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.assurance-box-content p {
  color: #075985;
  font-size: 14px;
  line-height: 1.5;
}

.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto 32px auto;
  font-size: 13px;
  color: var(--color-slate);
  background-color: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-forest);
}

.safety-note i {
  color: var(--color-forest);
  font-size: 16px;
  margin-top: 2px;
}

.policy-links-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SECTION 12 — FAQ / Objection Handling */
.faq-section {
  background: linear-gradient(135deg, #f5f9f6 0%, #edf5f0 50%, #f0f7f3 100%);
  border-top: 1px solid #c8e6d4;
}

.faq-section .section-title {
  color: var(--color-forest-dark) !important;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-forest-dark);
  user-select: none;
}

.faq-question:hover {
  background-color: #f8faf9;
}

.faq-toggle {
  font-size: 14px;
  color: var(--color-mint);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(31, 142, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  display: none;
}

.faq-answer p {
  color: var(--color-slate);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active {
  background-color: #f8faf9;
  border-color: rgba(31, 142, 92, 0.25);
  box-shadow: 0 2px 12px rgba(17, 66, 39, 0.06);
}

.faq-item.active .faq-question {
  color: var(--color-mint);
}

.faq-item.active .faq-answer {
  display: block;
}

/* SECTION 13 — Final Binary Close */
.binary-section {
  background: #1b5335;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.binary-card {
  max-width: 850px;
  margin: 0 auto;
}

.binary-badge {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-amber);
  background-color: var(--color-amber-light);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 16px;
}

.binary-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 32px;
}

.options-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.option-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.option-box h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.left-option h4 {
  color: var(--color-slate-light);
}

.left-option p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.right-option {
  border-color: rgba(31, 142, 92, 0.4);
  background-color: rgba(31, 142, 92, 0.05);
}

.right-option h4 {
  color: var(--color-mint-light);
}

.right-option p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.option-divider {
  color: white;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.binary-cta-area {
  margin-bottom: 32px;
}

.binary-proof-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-sage-light);
}

.binary-proof-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.binary-proof-strip i {
  color: var(--color-mint-light);
}

.urgency-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-amber);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* SECTION 14 — Footer + Disclaimer */
.main-footer {
  background-color: var(--color-forest-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.medical-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: justify;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}

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

.link-sep {
  color: rgba(255, 255, 255, 0.15);
}

.support-text {
  font-weight: 500;
}

/* STICKY MOBILE CTA BAR */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 5px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
  /* Controlled via JS and breakpoints */
}

.sticky-mobile-cta.show {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-left {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-mint);
  line-height: 1.1;
}

.sticky-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-slate);
}

.btn-sticky {
  background-color: var(--color-mint);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* VIDEO MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  z-index: 10002;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mockup Video Player */
.mock-player {
  background-color: #000;
  aspect-ratio: 9/16;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--color-white);
}

.mock-player-logo {
  padding: 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.mock-player-logo i {
  color: var(--color-mint);
}

.mock-player-center {
  margin: auto;
  text-align: center;
  padding: 24px;
  z-index: 2;
}

.mock-player-pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(31, 142, 92, 0.2);
  border: 2px solid var(--color-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  animation: pulseGlow 1.5s infinite;
}

.mock-player-center h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 4px;
}

.mock-player-center p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.mock-player-subtitles {
  position: absolute;
  bottom: 60px;
  left: 16px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.mock-player-subtitles p {
  color: var(--color-white);
}

.mock-player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
}

.control-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.control-left i {
  cursor: pointer;
}

.progress-bar-mock {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 38%;
  height: 100%;
  background-color: var(--color-mint);
}

.control-right {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.control-right i {
  cursor: pointer;
}

.left-option h4 {
  color: white;
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 83px;
  left: 0px;
  right: 0px;
  z-index: 9999;
}

.consultation-bar {
  background: #ffffff;
  border-radius: 100px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 4px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.consultation-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.consultation-meta {
  font-size: 14px;
  color: #6b7280;
}

.consultation-meta strong {
  color: #16a34a;
}

.consultation-btn {
  background: #314528;
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: 0.3s;
}

.consultation-btn:hover {
  transform: translateY(-2px);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.team-section {
  background: #f4eee5;
  padding: 40px 20px;
  overflow: hidden;
}

.team-section .container {
  max-width: 1200px;
  margin: auto;
}

.team-section .heading {
  text-align: center;
  margin-bottom: 0px;
}

.team-section .heading h2 {
  font-size: 52px;
  font-weight: 800;
  color: #0f2744;
}

.team-section .eyebrow {
  color: #c9a66b;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.team-section .subheading {
  font-size: 22px;
}

.team-section .team-carousel-container {
  position: relative; 
  max-width: 1000px;
  margin: auto;
}

.team-section .team-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-section .team-card {
  position: absolute;
  width: 320px;
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  left: 50%;
  top: 50%;
  transition: 0.5s ease;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-section .team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section .card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.team-section .pill {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  margin-bottom: 12px;
  font-size: 12px;
  background-color: rgba(49, 69, 40, 0.7);
}

/* Active */
.team-section .team-card.active {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  opacity: 1;
}

/* Left */
.team-section .team-card.prev {
  transform: translate(calc(-50% - 260px), -50%) scale(0.85);
  opacity: 0.5;
  z-index: 1;
}

/* Right */
.team-section .team-card.next {
  transform: translate(calc(-50% + 260px), -50%) scale(0.85);
  opacity: 0.5;
  z-index: 1;
}

.team-section .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.team-section .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.team-section .dot.active {
  background: #0f2744;
}

.team-section h3,
.team-section p {
  color: white;
}

@media (max-width: 768px) {
  .team-section team-carousel-container {
    height: 500px;
  }

  .team-section .team-card {
    width: 250px;
    height: 400px;
  }

  .team-section .team-card.prev {
    transform: translate(calc(-50% - 120px), -50%) scale(0.8);
  }

  .team-section .team-card.next {
    transform: translate(calc(-50% + 120px), -50%) scale(0.8);
  }

  .team-section .heading h2 {
    font-size: 34px;
  }

  .logo-area {
            display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
  }

  .logo-flex{
    width: 70px;
  }
}

@media (max-width: 768px) {
  .consultation-bar {
    padding: 6px 6px 6px 23px
  }

  .consultation-title {
    font-size: 18px;
  }

  .consultation-meta {
    font-size: 12px;
  }

  .consultation-btn {
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 100px;
  }

   .team-section .team-carousel-container { 
  height: 450px; 
}
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* Medium Devices (Tablets, less than 991px) */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .authority-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .discovery-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .checkout-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .price-card-column {
    position: static;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Small Devices (Mobile landscape, less than 767px) */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

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

  .nav-actions {
    display: none;
    /* Hide nav button on mobile to save space */
  }

  .logo-text {
    font-size: 18px;
  }

  .qualifier-text {
    font-size: 11px;
  }

  .qualifier-bar {
    padding: 6px 0;
  }

  /* Mobilify hero stacking order */
  .hero-content {
    align-items: stretch;
  }

  .hero-headline {
    text-align: center;
    font-size: 24px;
  }

  .hero-subheadline {
    text-align: center;
  }

  .hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
  }

  .cta-microcopy {
    justify-content: center;
  }

  .hero-trust-dots {
    justify-content: center;
  }

  .hero-trust-line {
    justify-content: center;
  }

  .medical-composition {
    height: 280px;
  }

  .composition-bg {
    width: 220px;
    height: 220px;
  }

  .graphic-gut {
    width: 140px;
    transform: translate(-40px, 30px);
  }

  .graphic-doctor {
    width: 170px;
    transform: translate(40px, -15px);
  }

  .doctor-badge-floating {
    bottom: 10px;
    right: 0px;
    padding: 6px 12px;
  }

  .doctor-badge-floating i {
    font-size: 18px;
  }

  .doctor-badge-floating strong {
    font-size: 11px;
  }

  .doctor-badge-floating span {
    font-size: 9px;
  }

  /* Loop section stacking */
  .loop-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .loop-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .loop-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 4px 0;
  }

  /* Old Way table stacking */
  .table-header-row {
    grid-template-columns: 1fr;
  }

  .table-col.col-title:first-child {
    border-bottom: 1px solid var(--color-border);
  }

  .table-row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid var(--color-border);
  }

  .old-val {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  /* Tabs on mobile styling */
  .tab-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* Doctor cards stacking */
  .doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .doc-info {
    align-items: center;
  }

  /* Process pipeline column stack */
  .process-reminder-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .process-step {
    justify-content: center;
  }

  .process-separator {
    transform: rotate(90deg);
    text-align: center;
    margin: 2px 0;
  }

  /* Qualification two-col stacking */
  .qualification-grid {
    grid-template-columns: 1fr;
  }

  /* Checkout inclusions mobile */
  .inclusion-item {
    padding: 16px;
  }

  .price-card {
    padding: 24px;
  }

  /* Proof mobile slider */
  .condition-proof-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding: 10px 16px 24px 16px !important;
    scrollbar-width: none !important;
    margin-bottom: 20px !important;
    grid-template-columns: none !important;
  }

  .condition-proof-grid::-webkit-scrollbar {
    display: none !important;
  }

  .proof-number-bar {
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
  }

  /* Option stacking on binary card */
  .options-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .option-box {
    min-height: auto;
  }

  .option-divider {
    margin: 4px auto;
    transform: rotate(90deg);
  }

  /* Footer bottom stacking */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .main-footer {
    display: block;
    margin-bottom: 108px;
  }

  .link-sep {
    display: none;
  }

  /* Sticky mobile bar activates */
  .sticky-mobile-cta {
    display: block;
    background-color: black;
  }

  .nav-container,
  .logo-flex,
  .hero-badge {
    justify-content: center;
    align-items: center;
  }

  .symptom-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding: 10px 16px 24px 16px !important;
    scrollbar-width: none !important;
    margin-bottom: 24px !important;
    grid-template-columns: none !important;
  }

  .symptom-grid::-webkit-scrollbar {
    display: none !important;
  }

  .symptom-card {
    flex: 0 0 72% !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
  }

  .symptom-desc,
  .section-label,
  .section-title {
    text-align: center;
  }

  .proof-card {
    flex: 0 0 75% !important;
    scroll-snap-align: start !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
  }

  .proof-card-header {
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .call-card-footer span {
    flex-direction: column;
  }

  .proof-badge {
    text-align: center;
    width: auto !important;
    margin-left: auto !important;
  }

  .medical-disclaimer,
  .authority-intro .body-text,
  .philosophy-block h4,
  .philosophy-block p,
  .tab-content h4,
  .tab-content p {
    text-align: center;
  }

  .loop-box-badge {
    align-self: center !important;
  }

  .loop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .journey-section .content {
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .journey-section .journey-path {
    gap: 12px;
  }

  .journey-section .connector {
    height: 30px;
  }

  .nav-micro-label {
    text-align: center;
  }
}

.section-testimonials {
  background: #f4eee5;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #16324f;
}

.heading span {
  color: #2e7d32;
}

.divider {
  width: 60px;
  height: 6px;
  background: #2e7d32;
  border-radius: 20px;
  margin: 20px auto 0;
}

/* Scroll Container */
.testimonial-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;

  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.video-card {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.15);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Desktop Grid */
@media (min-width: 768px) {
  .testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }

  .video-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .heading h2 {
    font-size: 28px;
  }
}
