* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #30385c;
  --yellow-color: #ffd700;
  --grey-color: #f0f6f7;
  --pink-color: #f472b6;
  --green-color: #a1d1c7;
  --red-color: #dc2626;
  --header-background-primary: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    #8b7355 50%,
    #a0826d 100%
  );
  --main-font-color: #0855a1;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    sans-serif;
  background: #000;
  overflow: hidden;
}

.template-container {
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

.progress-bar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 200;
  overflow: hidden;
  backdrop-filter: blur(2px);
}


/* ============================================
   NAVIGATION PANEL - RIGHT BOTTOM
   ============================================ */

.nav-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-panel.hidden {
  transform: translateX(200%);
  opacity: 0;
  pointer-events: none;
}

.nav-buttons-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

/* Common button styles */
.play-pause-btn,
.nav-btn,
.settings-btn,
.hide-nav-btn {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.play-pause-btn:hover,
.nav-btn:hover,
.settings-btn:hover,
.hide-nav-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.play-pause-btn:active,
.nav-btn:active,
.settings-btn:active,
.hide-nav-btn:active {
  transform: scale(0.95);
}

.play-pause-btn svg,
.nav-btn svg,
.settings-btn svg,
.hide-nav-btn svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  fill: currentColor;
}

.play-pause-btn .play-icon {
  margin-left: 2px;
}

.nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Show Navigation Button (when panel is hidden) */
.show-nav-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.show-nav-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.show-nav-btn svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  fill: currentColor;
}

/* Settings Panel */
.settings-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 300px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 301;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

.settings-panel.expanded {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  padding: 1.5rem;
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.settings-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
}

.close-settings-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
  padding: 0;
}

.close-settings-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-settings-btn svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  fill: currentColor;
}

.settings-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.setting-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.setting-item label {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-group input {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.input-group input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.input-group input::-webkit-inner-spin-button,
.input-group input::-webkit-outer-spin-button {
  opacity: 1;
}

.input-unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  min-width: 35px;
}

.setting-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  line-height: 1.4;
}

.apply-settings-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.apply-settings-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.apply-settings-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-panel {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .play-pause-btn,
  .nav-btn,
  .settings-btn,
  .hide-nav-btn {
    width: 44px;
    height: 44px;
  }

  .play-pause-btn svg,
  .settings-btn svg,
  .hide-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .settings-panel {
    width: 280px;
    bottom: 65px;
  }

  .show-nav-btn {
    width: 44px;
    height: 44px;
    bottom: 15px;
    right: 15px;
  }

  .show-nav-btn svg {
    width: 20px;
    height: 20px;
  }
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
  width: 0%;
  animation: progressAnimation linear forwards;
  transform-origin: left;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

@keyframes progressAnimation {
  0% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none; /* No transition on slide change */
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: none; /* No transform animation */
  will-change: auto;
}

.video-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  z-index: 10;
  transform: none; /* No transform animation */
  transition: none; /* No transition on slide change */
}

.video-slide > * {
  width: 100%;
  min-height: 100dvh;
  background: white;
}

/* Page visibility animations */
/* .video-slide:not(.active) section,
.video-slide:not(.active) [class*='container']:not(.heart-infographic-container),
.video-slide:not(.active) [class*='wrapper'],
.video-slide:not(.active) h1,
.video-slide:not(.active) h2,
.video-slide:not(.active) h3,
.video-slide:not(.active) p,
.video-slide:not(.active) .top-banner,
.video-slide:not(.active) .banner,
.video-slide:not(.active) .card,
.video-slide:not(.active) .panel,
.video-slide:not(.active) .temple,
.video-slide:not(.active) img:not(.heartbeat-gif):not(.person-image),
.video-slide:not(.active) .pillar,
.video-slide:not(.active) .drug-card,
.video-slide:not(.active) .stat-item,
.video-slide:not(.active) .feature-item {
  opacity: 0;
  animation: none !important;
} */

/* .video-slide.active.animating section,
.video-slide.active section {
  opacity: 1;
  animation: pageFadeIn 0.8s ease-out forwards;
} */

.video-slide.active.animating [class*='container']:not(.heart-infographic-container),
.video-slide.active [class*='container']:not(.heart-infographic-container) {
  opacity: 1;
  animation: containerSlideIn 0.6s ease-out 0.05s both;
}

.video-slide.active.animating [class*='wrapper'],
.video-slide.active [class*='wrapper'] {
  opacity: 1;
  animation: wrapperFadeIn 0.5s ease-out 0.05s both;
}

.video-slide.active.animating h1,
.video-slide.active.animating h2,
.video-slide.active.animating h3,
.video-slide.active h1,
.video-slide.active h2,
.video-slide.active h3 {
  opacity: 1;
  animation: headingSlideDown 0.6s ease-out 0.1s both;
}

.video-slide.active.animating p,
.video-slide.active p {
  opacity: 1;
  animation: textFadeIn 0.5s ease-out 0.15s both;
}

.video-slide.active.animating .top-banner,
.video-slide.active.animating .banner,
.video-slide.active.animating .sequencing-banner,
.video-slide.active.animating .slogan-banner:not(#section-8 .slogan-banner),
.video-slide.active .top-banner,
.video-slide.active .banner,
.video-slide.active .sequencing-banner,
.video-slide.active .slogan-banner:not(#section-8 .slogan-banner) {
  opacity: 1;
  animation: bannerSlideDown 0.7s ease-out 0s both;
}

/* Exclude page 8 from global slogan-banner animation */
#section-8 .slogan-banner {
  animation: none !important;
}

.video-slide.active.animating .card,
.video-slide.active.animating .panel,
.video-slide.active.animating .sequencing-panel,
.video-slide.active.animating .temple,
.video-slide.active .card,
.video-slide.active .panel,
.video-slide.active .sequencing-panel,
.video-slide.active .temple {
  opacity: 1;
  animation: cardSlideUp 0.6s ease-out 0.05s both;
}

.video-slide.active.animating img:not(.heartbeat-gif):not(.person-image),
.video-slide.active img:not(.heartbeat-gif):not(.person-image) {
  opacity: 1;
  animation: imageFadeIn 0.8s ease-out 0.1s both;
}

/* Person images will be visible through animations */

/* Ensure logo is visible when slide is active */
.video-slide.active .logo-container img {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure people collage wrapper is visible */
.video-slide.active .people-collage-wrapper,
.video-slide.active .people-collage {
  opacity: 1 !important;
  visibility: visible !important;
}

.video-slide.active.animating li,
.video-slide.active.animating .item,
.video-slide.active.animating .benefit-item,
.video-slide.active li,
.video-slide.active .item,
.video-slide.active .benefit-item {
  opacity: 1;
  animation: itemFadeIn 0.5s ease-out 0.1s both;
}

.video-slide.active.animating .pillar,
.video-slide.active.animating .drug-card,
.video-slide.active.animating .stat-item,
.video-slide.active.animating .feature-item,
.video-slide.active .pillar,
.video-slide.active .drug-card,
.video-slide.active .stat-item,
.video-slide.active .feature-item {
  opacity: 1;
  animation: staggerFadeIn 0.6s ease-out 0.05s both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes containerSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wrapperFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes headingSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bannerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes circleExpand {
  0% {
    opacity: 0;
    transform: scale(0);
    visibility: visible;
  }
  50% {
    opacity: 0.9;
    transform: scale(1.25);
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}

@keyframes heartPulseContinuous {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes heartPage3Entry {
  0% {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.5);
    width: 300px;
    height: 300px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    opacity: 1;
    z-index: 10000;
    box-shadow: 0 0 100px rgba(220, 38, 38, 0.8);
  }
  30% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(3);
    width: 360px;
    height: 360px;
    background: rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 120px rgba(220, 38, 38, 0.6);
  }
  60% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(3.2);
    width: 384px;
    height: 384px;
    background: rgba(220, 38, 38, 0.4);
    box-shadow: 0 0 80px rgba(220, 38, 38, 0.4);
  }
  90% {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    opacity: 1;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  }
  100% {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    opacity: 1;
    z-index: 10000;
    box-shadow: none;
  }
}

/* Stagger delays */
.video-slide.active .pillar:nth-child(1) {
  animation-delay: 0.05s;
}
.video-slide.active .pillar:nth-child(2) {
  animation-delay: 0.1s;
}
.video-slide.active .pillar:nth-child(3) {
  animation-delay: 0.15s;
}
.video-slide.active .pillar:nth-child(4) {
  animation-delay: 0.2s;
}
.video-slide.active .pillar:nth-child(5) {
  animation-delay: 0.25s;
}
.video-slide.active .pillar:nth-child(n + 6) {
  animation-delay: 0.3s;
}

/* Page spacing adjustments */
.video-slide #section-1 {
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  position: relative; /* Ensure heartbeat can be positioned relative to viewport */
  overflow: visible; /* Ensure heartbeat is not clipped */
}

.video-slide #section-4 {
  padding: 1rem 0.5rem;
}
.video-slide #section-5 {
  padding: 1rem 0.5rem;
}
.video-slide #section-6 {
  padding: 1rem 0.5rem;
}
.video-slide #section-7 {
  padding: 1rem 0.5rem;
}
.video-slide #section-8 {
  padding: 1rem 0.5rem;
}
/* Section animations */
.video-slide:not(.active) section {
  opacity: 0;
  transform: translateY(20px);
}

.video-slide.active section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Stagger section animations */
.video-slide.active #section-1 {
  transition-delay: 0s;
}
.video-slide.active #section-2 {
  transition-delay: 0.1s;
}
.video-slide.active #section-3 {
  transition-delay: 0.2s;
}
.video-slide.active #section-4 {
  transition-delay: 0.1s;
}
.video-slide.active #section-5 {
  transition-delay: 0.1s;
}
.video-slide.active #section-6 {
  transition-delay: 0.1s;
}
.video-slide.active #section-7 {
  transition-delay: 0.1s;
}
.video-slide.active #section-8 {
  transition-delay: 0.1s;
}
.video-slide.active #section-9 {
  transition-delay: 0.1s;
}
.video-slide.active #section-10 {
  transition-delay: 0.1s;
}
.video-slide #section-10 {
  padding: 1rem 0.5rem;
}

@media (max-width: 768px) {
  /* .video-slide #section-1,
  .video-slide #section-2,
  .video-slide #section-3,
  .video-slide #section-4,
  .video-slide #section-5,
  .video-slide #section-6,
  .video-slide #section-7,
  .video-slide #section-8,
  .video-slide #section-9,
  .video-slide #section-10 {
    padding: 0.5rem 0.25rem;
  } */
}

.suboptimal-pulse {
  display: inline-block;
  animation: subtlePulse 2.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes subtlePulse {
  0%,
  100% {
    transform: scale(1);
    color: #dc2626;
  }
  50% {
    transform: scale(1.05);
    color: #ef4444;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
  }
}

#section-1 {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background-color: white;
  overflow-x: hidden; /* Prevent horizontal scroll */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  /* HEARTBEAT ANIMATION */
  .heartbeat-animation {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    max-width: 600px;
    height: 120px;
    z-index: 1000 !important; 
    opacity: 1 !important; 
    pointer-events: none;
    visibility: visible !important;
    display: block !important;
  }

  .video-slide.active .heartbeat-animation,
  #section-1 .heartbeat-animation {
    opacity: 1 !important; 
    visibility: visible !important;
    display: block !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1000 !important; 
    pointer-events: none !important;
  }

  .video-slide:not(.active) .heartbeat-animation {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .heartbeat-line {
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 1;
  }

  .heartbeat-path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: heartbeatDraw 2s ease-in-out infinite;
    opacity: 1 !important;
    visibility: visible !important;
    stroke: #dc2626 !important;
    stroke-width: 3 !important;
    fill: none !important;
  }

  /* SVG Heart Pulse Animation */


  .heartbeat-animation .heartbeat-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    opacity: 0.6 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }

  .heartbeat-animation .heartbeat-path {
    stroke: #dc2626;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1 !important;
  }

  @keyframes heartbeatLineDraw {
    from {
      stroke-dashoffset: 1000;
    }
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes heartbeatScale {
    0% {
      transform: scale(0.9);
      opacity: 0.6;
    }
    25% {
      transform: scale(1.1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1);
      opacity: 0.5;
    }
    75% {
      transform: scale(1.1);
      opacity: 0.8;
    }
    100% {
      transform: scale(0.9);
      opacity: 0.6;
    }
  }

  /* ============================================
     FADE + SLIDE-IN TEXT ANIMATIONS
     ============================================ */

  /* Directive-based animations */

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeSlideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeSlideInScale {
    from {
      opacity: 0;
      transform: scaleX(0);
    }
    to {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  /* ============================================
     MOBILE STYLES (Base - Below 768px)
     ============================================ */

  /* Heartbeat Animation - Mobile */
  .heartbeat-animation {
    max-width: 400px;
    height: 80px;
    opacity: 0.6 !important;
  }

  .heartbeat-animation .heartbeat-line {
    height: 80px !important;
  }

  .heartbeat-animation .heartbeat-path {
    stroke-width: 2.5 !important;
  }

  /* Logo Container - Mobile */
  .logo-container {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .logo-container img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    display: block;
    border-radius: 0.25rem;
    background-color: transparent;
    padding: 0.25rem;
    transition: all 0.3s ease;
    touch-action: manipulation;
  }

  .logo-container img:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

  /* Header Banner Container - Mobile */
  .header-banner-container {
    position: absolute;
    top: 2rem;
    transform: translateX(-50%);
    width: 92%;
    max-width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    box-sizing: border-box;
  }

  /* .header-banner-container .banner-wrapper {
    flex: 1;
    width: 100%;
    max-width: 100%;
  } */

  .header-banner-container h1 {
    font-size: 0.6rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    background-color: var(--primary-color);
    border-radius: 1.5rem;
    padding: 0.875rem 1.125rem;
    color: var(--yellow-color);
    transition: all 0.3s ease;
    word-break: break-word;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.02em;
    word-spacing: 0.1em;
    width: 100%;
    box-sizing: border-box;
  }

  /* People Collage Wrapper - Mobile */
  .people-collage-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: white;
    position: relative;
    z-index: 0;
    /* margin-top: 5rem; */
    box-sizing: border-box;
  }

  .people-collage {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: white;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* People Strip - Mobile (4 images) */
  .people-strip {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
    height: 70vh;
    overflow: hidden;
    position: relative;
    background-color: white;
    margin: 0;
    padding: 0;
    border: 1px solid white;
    box-sizing: border-box;
    border-radius: 0.125rem;
    touch-action: pan-x;
    -webkit-tap-highlight-color: transparent;
  }

  .people-strip img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
  }

  /* Person Image Styling - Mobile */
  .person-image {
    filter: grayscale(20%) brightness(0.9);
    opacity: 0;
    visibility: visible !important;
    display: block !important;
    transition: filter 0.3s ease, transform 0.3s ease;
    animation-fill-mode: both;
  }

  /* Set initial transform based on position - odd from top, even from bottom */
  /* Default: all start from top */
  .person-image {
    transform: translateY(-100%);
    opacity: 0;
  }

  /* Even children (2nd, 4th, 6th, 8th) start from bottom */
  .people-strip:nth-child(even) .person-image {
    transform: translateY(100%);
  }

  /* When slide is not active, keep hidden */
  .video-slide:not(.active) .person-image {
    opacity: 0 !important;
    animation: none !important;
    visibility: hidden !important;
  }

  .people-strip:active .person-image {
    transform: scale(0.98);
  }

  /* Animation Keyframes */
  @keyframes slideInFromTop {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideInFromBottom {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* People Collage Wrapper Animation - slides in from top */
  .people-collage-wrapper {
    opacity: 0;
    transform: translateY(-100%);
  }

  /* When slide is active, animate wrapper from top */
  .video-slide.active .people-collage-wrapper {
    opacity: 1;
    transform: translateY(0);
    animation: slideDownFromTop 0.6s ease-out 0s both; /* Reduced from 0.8s to 0.6s */
  }

  /* When slide is not active, reset */
  .video-slide:not(.active) .people-collage-wrapper {
    opacity: 0;
    transform: translateY(-100%);
    animation: none !important;
  }

  @keyframes slideDownFromTop {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Ensure person images container and images are visible when slide is active */
  .video-slide.active .people-strip {
    visibility: visible;
  }

  .video-slide.active .person-image {
    visibility: visible !important;
    display: block !important;
  }

  /* Ensure all person images in active slide are visible */
  .video-slide.active .people-strip .person-image {
    visibility: visible !important;
    display: block !important;
  }

  /* Apply animations - 1st, 3rd, 5th, 7th, 9th from top; 2nd, 4th, 6th, 8th from bottom */
  /* Ensure initial state is set before animation */
  .video-slide.active .people-strip:nth-child(1) .person-image,
  .video-slide.active .people-strip:nth-child(3) .person-image,
  .video-slide.active .people-strip:nth-child(5) .person-image,
  .video-slide.active .people-strip:nth-child(7) .person-image,
  .video-slide.active .people-strip:nth-child(9) .person-image {
    transform: translateY(-100%);
    opacity: 0;
    visibility: visible !important;
    display: block !important;
    animation: slideInFromTop 0.6s ease-out forwards !important; /* Reduced from 0.8s to 0.6s */
  }

  .video-slide.active .people-strip:nth-child(2) .person-image,
  .video-slide.active .people-strip:nth-child(4) .person-image,
  .video-slide.active .people-strip:nth-child(6) .person-image,
  .video-slide.active .people-strip:nth-child(8) .person-image {
    transform: translateY(100%);
    opacity: 0;
    visibility: visible !important;
    display: block !important;
    animation: slideInFromBottom 0.6s ease-out forwards !important; /* Reduced from 0.8s to 0.6s */
  }

  /* Stagger animation delays - images start immediately with faster stagger */
  .video-slide.active .people-strip:nth-child(1) .person-image {
    animation-delay: 0s; /* Start immediately */
  }

  .video-slide.active .people-strip:nth-child(2) .person-image {
    animation-delay: 0.4s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(3) .person-image {
    animation-delay: 0.8s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(4) .person-image {
    animation-delay: 1.2s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(5) .person-image {
    animation-delay: 1.6s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(6) .person-image {
    animation-delay: 1.2s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(7) .person-image {
    animation-delay: 0.8s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(8) .person-image {
    animation-delay: 0.4s; /* Faster stagger */
  }

  .video-slide.active .people-strip:nth-child(9) .person-image {
    animation-delay: 0s; /* Faster stagger - last image completes at 0.4s + 0.6s = 1.0s */
  }

  /* Ensure animation fill mode keeps images visible after animation */
  .video-slide.active .people-strip .person-image {
    animation-fill-mode: forwards !important;
  }

  /* Force final state: ensure all person images reach translateY(0) and opacity 1 */
  /* This ensures the animation completes to the final state */
  .video-slide.active .people-strip:nth-child(1) .person-image,
  .video-slide.active .people-strip:nth-child(2) .person-image,
  .video-slide.active .people-strip:nth-child(3) .person-image,
  .video-slide.active .people-strip:nth-child(4) .person-image,
  .video-slide.active .people-strip:nth-child(5) .person-image,
  .video-slide.active .people-strip:nth-child(6) .person-image,
  .video-slide.active .people-strip:nth-child(7) .person-image,
  .video-slide.active .people-strip:nth-child(8) .person-image,
  .video-slide.active .people-strip:nth-child(9) .person-image {
    animation-fill-mode: forwards !important;
  }

  /* Fallback: Ensure images are visible after all animations complete (max delay 1s + duration 0.8s = 1.8s) */
  .video-slide.active .people-strip .person-image {
    animation-fill-mode: forwards !important;
  }

  /* Gradient Overlay - Mobile */
  .people-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 255, 255, 0.9) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
  }

  /* Bottom Banner - Mobile */
  .bottom-banner-container {
    position: absolute;
    bottom: 12%;
    /* left: 50%; */
    transform: translateX(-50%);
    width: 96%;
    max-width: 700px;
    z-index: 20;
    padding: 0 0.75rem;
    box-sizing: border-box;
  }

  .bottom-banner {
    background-color: var(--grey-color);
    border-radius: 3rem;
    padding: 1.5rem 1.75rem;
    position: relative;
    backdrop-filter: blur(4px);
    border: 0.2rem solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    z-index: 21;
    width: 100%;
    box-sizing: border-box;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bottom-banner-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 3rem;
  }

  @media (min-width: 768px) {
    .bottom-banner-container::before {
      border-radius: 5rem;
    }
  }

  @media (min-width: 1024px) {
    .bottom-banner-container::before {
      border-radius: 7rem;
    }
  }

  @media (min-width: 1280px) {
    .bottom-banner-container::before {
      border-radius: 8rem;
    }
  }

  .banner-content {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    text-align: center;
    opacity: 1;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }

  .banner-content strong {
    color: #111827;
    font-weight: bold;
  }

  .banner-divider {
    border: 0;
    border-top: 2px solid #d1d5db;
    margin: 0.75rem auto;
    width: 90%;
  }

  .banner-highlight {
    font-size: 1rem;
    color: #dc2626;
    /* margin: 0.75rem 0 0 0; */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
    text-align: center;
    opacity: 1;
    /* padding: 0.75rem 1rem; */
    box-sizing: border-box;
    display: inline-block;
    animation: scalePulse 0.5 ease-in-out infinite;
  }

  .banner-highlight strong {
    font-weight: 900;
    color: #dc2626;
    display: inline-block;
  }

  @keyframes scalePulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  /* Alternative blinking animation - uncomment to use instead */
  /* @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  } */

  /* Hidden classes for mobile */
  .hidden-mobile {
    display: none;
  }

  /* ============================================
     TABLET STYLES (768px to 1024px)
     ============================================ */
  @media (min-width: 768px) and (max-width: 1024px) {
    /* Heartbeat Animation - Tablet */
    .heartbeat-animation {
      max-width: 500px;
      height: 100px;
      opacity: 0.6 !important;
    }

    .heartbeat-animation .heartbeat-line {
      height: 100px !important;
    }

    .heartbeat-animation .heartbeat-path {
      stroke-width: 2.8 !important;
    }

    /* Logo Container - Tablet */
    .logo-container {
      top: 1rem;
      right: 1rem;
    }

    .logo-container img {
      width: 3.5rem;
      height: 3.5rem;
      padding: 0.375rem;
    }

    /* Header Banner - Tablet */
    .header-banner-container {
      margin-top: 4rem;
      position: absolute;
      width: 90%;
      max-width: 100%;
      padding: 0 1rem;
    }

    .header-banner-container h1 {
      font-size: 1.25rem;
      line-height: 1.5;
      border-radius: 2rem;
      padding: 1.125rem 1.5rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    /* People Collage - Tablet */
    .people-collage-wrapper {
      /* margin-top: 6rem; */
      width: 100%;
      max-width: 100%;
    }

    .people-collage {
      gap: 0;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .people-strip {
      flex: 0 0 calc(100% / 9);
      width: calc(100% / 9);
      max-width: calc(100% / 9);
      height: 75vh;
      border: 1.5px solid white;
      border-radius: 0.5rem;
    }

    .people-strip::after {
      height: 40%;
    }

    /* Show all 9 images on tablet */
    .hidden-mobile {
      display: flex;
    }

    /* Person Image Hover - Tablet */
    .person-image:hover {
      transform: scale(1.1);
      filter: grayscale(0%) brightness(1);
      cursor: pointer;
    }

    .people-strip:hover .person-image {
      transform: scale(1.1);
    }

    /* Bottom Banner - Tablet */
    .bottom-banner-container {
      bottom: 18%;
      width: 92%;
      max-width: 900px;
      padding: 0 1.25rem;
    }

    .bottom-banner {
      border-radius: 5rem;
      padding: 2rem 2.5rem;
      min-height: 160px;
      box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
    }

    .bottom-banner:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 96px rgba(0, 0, 0, 0.3), 0 12px 48px rgba(0, 0, 0, 0.25),
        0 6px 24px rgba(0, 0, 0, 0.2);
    }

    .banner-content {
      font-size: 1.125rem;
      line-height: 1.6;
      padding: 0 0.25rem;
    }

    .banner-divider {
      margin: 0.875rem auto;
    }

    .banner-highlight {
      font-size: 1.375rem;
      letter-spacing: 0.1em;
      /* padding: 0.875rem 1.25rem; */
      /* margin: 1rem 0 0 0; */
      color: #dc2626;
      font-weight: 900;
    }

    .banner-highlight strong {
      color: #dc2626;
      font-weight: 900;
    }
  }

  /* Extra oval styling for medium tablets */
  @media (min-width: 768px) and (max-width: 1024px) {
    .bottom-banner {
      border-radius: 8rem !important;
      padding: 2.5rem 3rem !important;
      min-height: 180px !important;
    }
  }

  /* ============================================
     DESKTOP STYLES (1024px+)
     ============================================ */
  @media (min-width: 1024px) {
    /* Heartbeat Animation - Desktop */
    .heartbeat-animation {
      max-width: 600px;
      height: 120px;
      opacity: 1 !important;
    }

    .heartbeat-animation .heartbeat-line {
      height: 120px !important;
    }

    .heartbeat-animation .heartbeat-path {
      stroke-width: 3 !important;
    }

    /* Logo Container - Desktop */
    .logo-container {
      top: 2rem;
      right: 2rem;
    }

    .logo-container img {
      width: 5rem;
      height: 5rem;
      padding: 0.5rem;
    }

    /* Header Banner - Desktop */
    .header-banner-container {
      position: absolute;
      max-width: 85%;
      padding: 0 1.5rem;
    }

    .header-banner-container h1 {
      font-size: 1.25rem;
      line-height: 1.625;
      border-radius: 2.5rem;
      padding: 1rem 2rem;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    /* People Collage - Desktop (Full width, 9 images, 90vh) */
    .people-collage-wrapper {
      margin-top: 0;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .people-collage {
      gap: 0;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      justify-content: flex-start;
    }

    .people-strip {
      flex: 0 0 calc(100% / 9);
      width: calc(100% / 9);
      max-width: calc(100% / 9);
      min-width: 0;
      height: 90vh;
      border: 1.5px solid white;
      border-radius: 0;
    }

    /* Show all 9 images on desktop */
    .hidden-mobile {
      display: flex;
    }

    .people-strip::after {
      height: 40%;
    }

    /* Bottom Banner - Desktop */
    .bottom-banner-container {
      bottom: 4%;
      width: 88%;
      max-width: 850px;
      padding: 0 1.5rem;
    }

    .bottom-banner {
      border-radius: 7rem;
      padding: 2rem 2.5rem;
      min-height: 150px;
      box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .bottom-banner:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 96px rgba(0, 0, 0, 0.3), 0 12px 48px rgba(0, 0, 0, 0.25),
        0 6px 24px rgba(0, 0, 0, 0.2);
    }

    .banner-content {
      font-size: 1.125rem;
      padding: 0 0.25rem;
    }

    .banner-divider {
      margin: 0.75rem auto;
    }

    .banner-highlight {
      font-size: 1.25rem;
      letter-spacing: 0.1em;
      /* padding: 0.875rem 1.25rem; */
      /* margin: 1rem 0 0 0; */
      color: #dc2626;
      width: 100%;
      text-align: center;
      font-weight: 900;
    }

    .banner-highlight strong {
      color: #dc2626;
      font-weight: 900;
    }
  }

  /* Desktop Large (1280px to 1440px) */
  @media (min-width: 1280px) and (max-width: 1440px) {
    /* Heartbeat Animation - Desktop Large */
    .heartbeat-animation {
      max-width: 650px;
      height: 130px;
      opacity: 0.5 !important;
    }

    .heartbeat-animation .heartbeat-line {
      height: 130px !important;
    }

    .heartbeat-animation .heartbeat-path {
      stroke-width: 3.2 !important;
    }

    .header-banner-container {
      position: absolute;
      max-width: 600px;
      padding: 0;
    }

    .header-banner-container h1 {
      font-size: 1.5rem;
      border-radius: 2rem;
      padding: 1rem 0.25rem;
    }

    .people-collage-wrapper {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .people-collage {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .people-strip {
      flex: 0 0 calc(100% / 9);
      width: calc(100% / 9);
      max-width: calc(100% / 9);
      height: 90vh;
      border: 2px solid white;
    }

    .people-strip::after {
      height: 45%;
    }

    .bottom-banner-container {
      bottom: 1%;
      width: 90%;
      max-width: 800px;
      padding: 0 1rem;
    }

    .bottom-banner {
      border-radius: 8rem;
      padding: 2rem 2.5rem;
      min-height: 160px;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.25), 0 10px 40px rgba(0, 0, 0, 0.2),
        0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .banner-content {
      font-size: 1.25rem;
    }

    .banner-divider {
      margin: 0.5rem auto;
    }

    .banner-highlight {
      font-size: 2rem;
      letter-spacing: 0.15em;
      padding: 1rem 1.5rem;
      /* margin: 1rem 0 0 0; */
      color: #dc2626;
      font-weight: 900;
    }

    .banner-highlight strong {
      color: #dc2626;
      font-weight: 900;
    }
  }

  /* Max width constraint for desktop */
  @media (min-width: 1440px) {
    #section-1 {
      overflow-x: hidden;
    }

    .people-collage-wrapper {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .people-collage {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }
  }

  /* ============================================
     ACCESSIBILITY & IMAGE OPTIMIZATION
     ============================================ */
  img:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .person-image {
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }
}

@keyframes diagramOpen {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }
  60% {
    opacity: 0.95;
    transform: scale(1.15) translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heartContainerOpen {
  0% {
    opacity: 0;
    transform: scale(0.6) rotate(-15deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.2) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes labelSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartCirclePulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.35);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

#section-2 {
  position: relative;
  width: 100%;
  /* min-height: 100vh;
    min-height: 100dvh; */
  background: #ffffff;
  background-size: 20px 20px;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;

  .page2-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* ============================================
     TOP BANNER
     ============================================ */
  .top-banner {
    width: 100%;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    text-align: center;
    max-width: 100%;
  }

  .banner-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }

  /* ============================================
     MAIN CONTENT AREA
     ============================================ */
  .main-content-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
    align-items: center;
  }

  /* ============================================
     LEFT SECTION - DIAGRAM
     ============================================ */
  .diagram-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7) translateY(20px);
    transition: none;
    visibility: visible;
  }

  .video-slide:not(.active) .diagram-section {
    opacity: 0;
    transform: scale(0.7) translateY(20px);
    visibility: hidden;
  }

  .video-slide.active .diagram-section {
    opacity: 0;
    transform: scale(0.7) translateY(20px);
    visibility: visible;
  }

  .diagram-section.animate-in {
    animation: diagramOpen 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Heart Infographic Container */
  .heart-infographic-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: none;
  }

  .video-slide.active .heart-infographic-container {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }

  .diagram-section.animate-in .heart-infographic-container {
    animation: heartContainerOpen 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards !important;
    opacity: 1 !important;
  }

  /* Section Labels - Above and Below heart-infographic-container */
  .section-label {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: none;
  }

  .video-slide.active .section-label {
    opacity: 0;
    transform: translateY(-10px);
  }

  .diagram-section.animate-in .section-label {
    animation: labelSlideIn 0.8s ease-out forwards !important;
    opacity: 1 !important;
  }

  .first-line-label {
    margin-bottom: 0.75rem;
    animation-delay: 0.1s;
  }

  .second-line-label {
    margin-top: 0.75rem;
    animation-delay: 1.5s;
  }

  /* Heart Wrapper */
  .heart-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Central Heart Area - White Circle */
  .heart-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: white;
    border: 2px solid white;
    z-index: 2;
    box-shadow: 0 0 0 2px white;
    opacity: 0;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .video-slide.active .heart-center-circle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  .diagram-section.animate-in .heart-center-circle {
    animation: heartCirclePulse 0.6s ease-out 0.8s forwards !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Heartbeat GIF inside the circle */

  /* Heart SVG Image inside the circle */
  .heart-center-circle img {
    width: 85% !important;
    height: 85% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    display: block !important;
    margin: auto;
    transform-origin: center center;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 3;
    pointer-events: none;
  }

  /* Make heart image visible even when circle is not animated yet */
  .heart-center-circle img {
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ensure heart image is visible when circle is visible and add pulsing animation */
  .diagram-section.animate-in .heart-center-circle img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    animation: heartPulseContinuous 1.5s ease-in-out infinite;
    animation-delay: 1.4s; /* Start after initial animation completes (0.8s + 0.6s) */
  }

  /* Circular Background with 8 Segments */
  .circle-background {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    visibility: visible;
    display: block;
    /* Create 8 segments using conic-gradient */
    /* Each segment is 45deg (360/8 = 45deg) */
    /* ACEI/ARB/ARNI (22.5deg) and SGLT-2 Inhibitor (67.5deg) have dark green */
    /* Beta Blocker (-67.5deg) and Aldosterone Inhibitor (-22.5deg) have faded green */
    background: conic-gradient(
      from -90deg,
      var(--green-color) -90deg -45deg,
      var(--green-color) -45deg 0deg,
      var(--green-color) 0deg 45deg,
      var(--green-color) 45deg 90deg,
      var(--green-color) 90deg 135deg,
      var(--green-color) 135deg 180deg,
      var(--pink-color) 180deg 225deg,
      var(--pink-color) 225deg 270deg,
      var(--pink-color) 270deg 315deg,
      var(--pink-color) 315deg 360deg
    );
    /* Create inner white circle boundary and outer edge */
    mask: radial-gradient(circle at center, transparent 30%, black 30%, black 98%, transparent 98%);
    -webkit-mask: radial-gradient(
      circle at center,
      transparent 30%,
      black 30%,
      black 98%,
      transparent 98%
    );
    opacity: 0;
    transform: scale(0);
    transition: none;
  }

  .video-slide.active .circle-background {
    opacity: 0;
    transform: scale(0);
    visibility: visible;
  }

  .diagram-section.animate-in .circle-background {
    animation: circleExpand 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Segment Dividing Lines */
  .segment-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 50%;
    background: white;
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(var(--angle));
    z-index: 2;
    pointer-events: none;
  }

  /* GDMT Labels - Directly on Segments */
  .gdmt-labels {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
  }

  .gdmt-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    opacity: 0;
    transform: scale(0.8);
    --radius: 150px;
    transition: none;
  }

  .video-slide.active .gdmt-label {
    opacity: 0;
    transform: scale(0.8);
  }

  .diagram-section.animate-in .gdmt-label {
    animation: labelFadeIn 0.8s ease-out forwards !important;
    opacity: 1 !important;
  }

  /* Stagger GDMT label animations */
  .diagram-section.animate-in .gdmt-label:nth-child(1) {
    animation-delay: 0.8s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(2) {
    animation-delay: 0.9s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(3) {
    animation-delay: 1s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(4) {
    animation-delay: 1.1s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(5) {
    animation-delay: 1.2s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(6) {
    animation-delay: 1.3s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(7) {
    animation-delay: 1.4s;
  }
  .diagram-section.animate-in .gdmt-label:nth-child(8) {
    animation-delay: 1.5s;
  }

  .gdmt-label.first-line {
    --radius: 150px;
  }

  .gdmt-label.second-line {
    --radius: 150px;
  }

  /* Label Text - Directly on segments */
  .label-text {
    font-size: 0.65rem;
    font-weight: 600;
    display: block;
    white-space: normal;
    transform: rotate(calc(-1 * var(--angle)));
    text-align: center;
    max-width: 70px;
    line-height: 1.2;
    word-break: break-word;
  }

  /* Special handling for longer labels */
  .gdmt-label.highlighted .label-text {
    max-width: 75px;
    font-size: 0.6rem;
  }

  /* SGLT-2 Inhibitor */
  .gdmt-label[style*='67.5deg'] .label-text {
    max-width: 70px;
    font-size: 0.6rem;
    line-height: 1.1;
  }

  /* Isordil/Hydralazine - longer text */
  .gdmt-label[style*='112.5deg'] .label-text {
    max-width: 65px;
    font-size: 0.55rem;
    line-height: 1.1;
  }

  /* Aldosterone Inhibitor - longer text */
  .gdmt-label[style*='-22.5deg'] .label-text {
    max-width: 65px;
    font-size: 0.55rem;
    line-height: 1.1;
  }

  /* ACEI/ARB/ARNI - longer text */
  .gdmt-label[style*='22.5deg'] .label-text {
    max-width: 70px;
    font-size: 0.6rem;
    line-height: 1.1;
  }

  /* Highlighted labels (ACEI/ARB/ARNI and SGLT-2 Inhibitor) */
  .gdmt-label.highlighted .label-text {
    font-weight: 900;
    color: #000000;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  }

  .gdmt-label.highlighted.first-line .label-text {
    color: #000000;
  }

  .gdmt-label.highlighted.second-line .label-text {
    color: #000000;
  }

  /* Faded labels (others) - very low opacity and dull colors */
  .gdmt-label.faded {
    opacity: 0.25;
  }

  .gdmt-label.faded .label-text {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .gdmt-label.faded.first-line .label-text {
    color: rgba(255, 255, 255, 0.5);
  }

  .gdmt-label.faded.second-line .label-text {
    color: rgba(255, 255, 255, 0.5);
  }

  /* Position labels in circle */
  .gdmt-label {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
  }

  /* Animation delays for sequential appearance */
  .gdmt-label:nth-child(1) {
    animation-delay: 0.1s;
  }

  .gdmt-label:nth-child(2) {
    animation-delay: 0.2s;
  }

  .gdmt-label:nth-child(3) {
    animation-delay: 0.3s;
  }

  .gdmt-label:nth-child(4) {
    animation-delay: 0.4s;
  }

  .gdmt-label:nth-child(5) {
    animation-delay: 0.5s;
  }

  .gdmt-label:nth-child(6) {
    animation-delay: 0.6s;
  }

  .gdmt-label:nth-child(7) {
    animation-delay: 0.7s;
  }

  .gdmt-label:nth-child(8) {
    animation-delay: 0.8s;
  }

  @keyframes labelFadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) rotate(var(--angle))
        translateY(calc(-1 * var(--radius) - 20px)) scale(0.8);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)))
        scale(1);
    }
  }

  /* Faded labels animation */
  .gdmt-label.faded {
    animation: labelFadeInFaded 0.8s ease-out forwards;
  }

  @keyframes labelFadeInFaded {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) rotate(var(--angle))
        translateY(calc(-1 * var(--radius) - 20px)) scale(0.8);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)))
        scale(1);
    }
  }

  .info-section {
    width: 100%;
    max-width: 600px;
    padding: 1rem;
    z-index: 2;
  }

  .did-you-know-card {
    overflow: hidden;
  }

  /* Header */
  .did-you-know-header {
    background: linear-gradient(
      90deg,
      var(--primary-color) 0%,
      color-mix(in srgb, var(--primary-color) 80%, white) 100%
    );
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 2rem;
    position: relative;
    width: fit-content;
    min-width: 280px;
    margin-left: 0;
    box-shadow: 0 4px 12px rgba(48, 56, 92, 0.25), 0 2px 6px rgba(48, 56, 92, 0.15);
  }

  .lightbulb-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .lightbulb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }

  /* Animated glow effect around lightbulb */
  .lightbulb-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.5) 0%, transparent 70%);
    animation: lightbulbGlow 2s ease-in-out infinite;
    z-index: -1;
  }

  .lightbulb-icon svg {
    filter: drop-shadow(0 0 10px rgba(252, 211, 77, 0.8))
      drop-shadow(0 0 5px rgba(252, 211, 77, 0.6));
    z-index: 1;
    position: relative;
    animation: lightbulbPulse 2s ease-in-out infinite;
  }

  @keyframes lightbulbGlow {
    0%,
    100% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.15);
      opacity: 0.7;
    }
  }

  @keyframes lightbulbPulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  .did-you-know-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
  }

  /* Content */
  .did-you-know-content {
    padding: 1.25rem 1rem;
    margin-top: 0.5rem;
    border: none;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .info-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    padding-left: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    border-bottom: 1px dashed #d1d5db;
    /* margin-bottom: 1rem; */
  }

  .info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
    font-size: 1.25rem;
  }

  .info-list li strong {
    color: #1e293b;
    font-weight: 700;
  }

  /* ============================================
     MOBILE STYLES (max-width: 767px)
     ============================================ */
  @media (max-width: 767px) {
    .top-banner {
      padding: 0.875rem 1rem;
      border-radius: 0.75rem;
    }

    .banner-text {
      font-size: 0.8125rem;
      line-height: 1.3;
    }

    .main-content-area {
      gap: 1.5rem;
    }

    .heart-infographic-container {
      max-width: 100%;
    }

    .heart-wrapper {
      max-width: 100%;
    }

    .heart-center-circle {
      width: 30%;
      height: 30%;
    }


    .circle-background {
      mask: radial-gradient(
        circle at center,
        transparent 30%,
        black 30%,
        black 98%,
        transparent 98%
      );
      -webkit-mask: radial-gradient(
        circle at center,
        transparent 30%,
        black 30%,
        black 98%,
        transparent 98%
      );
    }

    .section-label {
      font-size: 0.625rem;
    }

    .first-line-label {
      margin-bottom: 0.5rem;
    }

    .second-line-label {
      margin-top: 0.5rem;
    }

    .gdmt-label {
      --radius: 120px;
    }

    .label-text {
      font-size: 0.625rem;
      max-width: 60px;
      line-height: 1.2;
    }

    .gdmt-label.highlighted .label-text {
      max-width: 65px;
      font-size: 0.6rem;
    }

    .gdmt-label[style*='67.5deg'] .label-text,
    .gdmt-label[style*='22.5deg'] .label-text {
      max-width: 60px;
      font-size: 0.6rem;
    }

    .gdmt-label[style*='112.5deg'] .label-text,
    .gdmt-label[style*='-22.5deg'] .label-text {
      max-width: 55px;
      font-size: 0.55rem;
    }

    .info-section {
      width: 100%;
      max-width: 100%;
    }

    .did-you-know-header {
      padding: 1rem 1.25rem;
      border-radius: 1.5rem;
      min-width: auto;
      width: 100%;
    }

    .lightbulb-icon {
      width: 36px;
      height: 36px;
    }

    .did-you-know-title {
      font-size: 0.875rem;
      letter-spacing: 0.1em;
    }

    .did-you-know-content {
      padding: 1.25rem 1rem;
      margin-top: 0.5rem;
      border: none;
      border-radius: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .info-list li {
      font-size: 0.8125rem;
      padding-left: 1.25rem;
      padding-bottom: 0.75rem;
      margin-bottom: 0.75rem;
    }
  }

  /* ============================================
     TABLET STYLES (768px to 1024px)
     ============================================ */
  @media (min-width: 768px) and (max-width: 1024px) {
    .top-banner {
      padding: 1.25rem 2rem;
      border-radius: 1.25rem;
      max-width: 75%;
    }

    .banner-text {
      font-size: 1rem;
      line-height: 1.4;
    }

    .diagram-section {
      flex: 1.2;
      max-width: 55%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .heart-infographic-container {
      max-width: 100%;
      width: 100%;
    }

    .heart-wrapper {
      max-width: 100%;
      width: 100%;
    }

    .heart-center-circle {
      width: 26%;
      height: 26%;
    }

    .circle-background {
      mask: radial-gradient(
        circle at center,
        transparent 26%,
        black 26%,
        black 98%,
        transparent 98%
      );
      -webkit-mask: radial-gradient(
        circle at center,
        transparent 26%,
        black 26%,
        black 98%,
        transparent 98%
      );
    }

    .section-label {
      font-size: 0.9375rem;
    }

    .first-line-label {
      margin-bottom: 1.5rem;
    }

    .second-line-label {
      margin-top: 1.5rem;
    }

    .gdmt-label {
      --radius: 180px;
    }

    .label-text {
      font-size: 0.75rem;
      max-width: 90px;
      line-height: 1.3;
    }

    .gdmt-label.highlighted .label-text {
      max-width: 95px;
      font-size: 0.75rem;
    }

    .gdmt-label[style*='67.5deg'] .label-text {
      max-width: 90px;
      font-size: 0.7rem;
    }

    .gdmt-label[style*='112.5deg'] .label-text {
      max-width: 85px;
      font-size: 0.65rem;
    }

    .gdmt-label[style*='-22.5deg'] .label-text {
      max-width: 85px;
      font-size: 0.65rem;
    }

    .gdmt-label[style*='22.5deg'] .label-text {
      max-width: 90px;
      font-size: 0.7rem;
    }

    .did-you-know-header {
      padding: 1.25rem 1.5rem;
      border-radius: 2rem;
      min-width: auto;
      width: 100%;
      max-width: 100%;
      background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        color-mix(in srgb, var(--primary-color) 80%, white) 100%
      );
      box-shadow: 0 4px 12px rgba(48, 56, 92, 0.25), 0 2px 6px rgba(48, 56, 92, 0.15);
    }

    .lightbulb-icon {
      width: 40px;
      height: 40px;
    }

    .did-you-know-title {
      font-size: 1rem;
      letter-spacing: 0.12em;
    }

    .did-you-know-content {
      padding: 1.5rem 1.25rem;
      margin-top: 0.5rem;
      border: none;
      border-radius: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .info-list li {
      font-size: 0.875rem;
      padding-left: 1.5rem;
      padding-bottom: 0.875rem;
      margin-bottom: 0.875rem;
    }
  }

  /* ============================================
     DESKTOP STYLES (1024px+)
     ============================================ */
  @media (min-width: 1024px) {
    .page2-container {
      padding: 1rem;
    }

    .banner-text {
      font-size: 1.125rem;
    }

    .main-content-area {
      flex-direction: row;
      align-items: flex-start;
    }

    .diagram-section {
      flex: 1;
      max-width: 50%;
    }

    .info-section {
      flex: 1;
      max-width: 45%;
    }

    .did-you-know-header {
      padding: 1.75rem 2.5rem;
      border-radius: 3rem;
      min-width: 380px;
      background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        color-mix(in srgb, var(--primary-color) 80%, white) 100%
      );
      box-shadow: 0 4px 12px rgba(48, 56, 92, 0.25), 0 2px 6px rgba(48, 56, 92, 0.15);
      position: absolute;
    }

    .lightbulb-icon {
      width: 52px;
      height: 52px;
    }

    .did-you-know-title {
      font-size: 1.5rem;
      letter-spacing: 0.15em;
    }

    .did-you-know-content {
      padding: 2.5rem;
      border: 1px solid #000;
      border-radius: 1rem;
      margin: 6rem 0rem 0rem 2rem;
    }

    .info-list li {
      font-size: 1.0625rem;
    }
  }

  /* ============================================
     DESKTOP LARGE (1280px+)
     ============================================ */
  @media (min-width: 1280px) {
    .banner-text {
      font-size: 1.25rem;
    }

    .heart-center-circle {
      width: 24%;
      height: 24%;
    }


    .circle-background {
      mask: radial-gradient(
        circle at center,
        transparent 24%,
        black 24%,
        black 98%,
        transparent 98%
      );
      -webkit-mask: radial-gradient(
        circle at center,
        transparent 24%,
        black 24%,
        black 98%,
        transparent 98%
      );
    }

    .section-label {
      font-size: 1.125rem;
    }

    .first-line-label {
      margin-bottom: 1.75rem;
    }

    .second-line-label {
      margin-top: 1.75rem;
    }

    .gdmt-label {
      --radius: 200px;
    }

    .label-text {
      font-size: 0.95rem;
      max-width: 110px;
    }

    .gdmt-label.highlighted .label-text {
      max-width: 115px;
      font-size: 0.9rem;
    }

    .gdmt-label[style*='67.5deg'] .label-text {
      max-width: 110px;
      font-size: 0.9rem;
    }

    .gdmt-label[style*='112.5deg'] .label-text {
      max-width: 105px;
      font-size: 0.85rem;
    }

    .gdmt-label[style*='-22.5deg'] .label-text {
      max-width: 105px;
      font-size: 0.85rem;
    }

    .gdmt-label[style*='22.5deg'] .label-text {
      max-width: 110px;
      font-size: 0.9rem;
    }

    .did-you-know-header {
      padding: 2rem 3rem;
      border-radius: 3.5rem;
      min-width: 420px;
      background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        color-mix(in srgb, var(--primary-color) 80%, white) 100%
      );
      box-shadow: 0 4px 12px rgba(48, 56, 92, 0.25), 0 2px 6px rgba(48, 56, 92, 0.15);
    }

    .lightbulb-icon {
      width: 56px;
      height: 56px;
    }

    .did-you-know-title {
      font-size: 1.625rem;
      letter-spacing: 0.18em;
    }

    .info-list li {
      font-size: 1.125rem;
    }
  }
}

/* ============================================
   PAGE 3 - GDMT FANTASTIC FOUR (ENHANCED)
   ============================================ */

@keyframes shrinkToCenter {
  0% {
    width: 800px;
    height: 800px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.15);
  }
}
@keyframes pulseExpand {
  0% {
    width: 80px;
    height: 80px;
    opacity: 0.8;
    border-width: 2px;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
    border-width: 1px;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes runningPulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes subtlePulse {
  0%,
  100% {
    transform: scale(1);
    color: var(--red-color);
  }
  50% {
    transform: scale(1.05);
    color: var(--red-color);
  }
}
#section-3 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;

  .page3-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }

  /* ============================================
     LARGE SVG HEART ANIMATION
     ============================================ */
  .heart-svg-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
    width: 800px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
  }

  /* Trigger animation when page is active (template4) or when animate-in class is added */
  .video-slide.active .heart-svg-container,
  #section-3.animate-in .heart-svg-container,
  .page3-container.animate-in .heart-svg-container {
    opacity: 1;
    visibility: visible;
    animation: shrinkToCenter 2s ease-in-out forwards;
  }


  /* ============================================
     SEQUENCING BANNER
     ============================================ */
  .sequencing-banner {
    width: 100%;
    max-width: 1200px;
    /* background: linear-gradient(90deg, var(--primary-color) 0%, #8b7355 50%, #a0826d 100%); */
    padding: 1.25rem 2rem;
    /* border-radius: 1rem; */
    margin-bottom: 2rem;
    /* box-shadow: 0 4px 16px rgba(48, 56, 92, 0.25); */
  }

  .sequencing-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  /* ============================================
     INFOGRAPHIC WRAPPER
     ============================================ */
  .infographic-wrapper {
    width: 100%;
    max-width: 1400px;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .infographic-headline {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, var(--primary-color) 0%, #8b7355 50%, #a0826d 100%);
    padding: 1.25rem 3rem;
    margin: -2rem auto 2rem auto;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -1rem;
    display: inline-block;
    width: auto;
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* ============================================
     INFOGRAPHIC FLOW
     ============================================ */
  .infographic-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    box-sizing: border-box;
  }

  /* Ensure wrapper fits viewport */
  @media (max-width: 767px) {
    .infographic-wrapper {
      width: calc(100% - 1rem);
      padding: 1.25rem 1rem 1rem 1rem;
    }

    .sequencing-banner {
      padding: 0.875rem 1rem;
      margin-bottom: 1.5rem;
    }

    .sequencing-text {
      font-size: 0.8125rem;
      line-height: 1.3;
    }

    .infographic-headline {
      font-size: 0.875rem;
      padding: 0.75rem 1.25rem;
      margin: -1rem auto 1rem auto;
      border-radius: 30px;
      letter-spacing: 0.03em;
    }
  }

  /* Desktop: horizontal layout */
  @media (min-width: 1024px) {
    .infographic-flow {
      flex-wrap: nowrap;
      gap: 0rem;
      padding: 0rem;
    }

    .heart-start-section,
    .arrow-section,
    .temple,
    .benefits-section {
      order: 0;
    }
  }

  /* Custom scrollbar for infographic flow */
  .infographic-flow::-webkit-scrollbar {
    height: 8px;
  }

  .infographic-flow::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .infographic-flow::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .infographic-flow::-webkit-scrollbar-thumb:hover {
    background: #1e5a8e;
  }

  /* ============================================
     HEART SECTION - CENTERED
     ============================================ */
  .heart-start-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    order: 1;
    position: relative;
  }

  .heart-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  /* Heart icon container on page 3 - normal state */
  .video-slide[data-page='3'] .heart-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
  }

  .heart-pulse-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .pulse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: pulseExpand 2s ease-out infinite;
  }

  .pulse-1 {
    animation-delay: 0s;
  }

  .pulse-2 {
    animation-delay: 0.8s;
  }

  .pulse-3 {
    animation-delay: 1.6s;
  }


  /* Heart image inside heart-icon-container - similar to page 2 */
  .heart-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
    visibility: visible !important;
    z-index: 3;
    position: relative;
    animation: heartPulseContinuous 1.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  .heart-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0;
    max-width: 180px;
    line-height: 1.4;
  }

  /* ============================================
     ARROW SECTION
     ============================================ */
  .arrow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    order: 2;
  }

  .arrow-text-top {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    max-width: 35%;
    line-height: 1.4;
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(48, 56, 92, 0.1);
  }

  .arrow-container {
    position: relative;
    width: 140px;
    height: 4px;
  }

  .arrow-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(
      90deg,
      var(--primary-color) 0%,
      color-mix(in srgb, var(--primary-color) 80%, white) 100%
    );
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(48, 56, 92, 0.2);
  }

  .arrow-head {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    filter: drop-shadow(2px 0 2px rgba(48, 56, 92, 0.2));
  }

  /* Vertical arrow when wrapping (mobile/tablet) */
  @media (max-width: 1024px) {
    .arrow-container {
      width: 4px;
      height: 60px;
    }

    .arrow-line {
      width: 4px;
      height: 100%;
      background: linear-gradient(
        180deg,
        var(--primary-color) 0%,
        color-mix(in srgb, var(--primary-color) 80%, white) 100%
      );
    }

    .arrow-head {
      right: 50%;
      top: auto;
      bottom: -10px;
      transform: translateX(50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 12px solid var(--primary-color);
      border-bottom: none;
      filter: drop-shadow(0 2px 2px rgba(48, 56, 92, 0.2));
    }
  }

  .all-patients-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      color-mix(in srgb, var(--primary-color) 85%, white) 100%
    );
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(48, 56, 92, 0.25);
    transition: transform 0.3s ease;
  }

  .all-patients-badge:hover {
    transform: scale(1.05);
  }

  .running-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: runningPulse 2s ease-in-out infinite;
  }

  /* ============================================
     BENEFITS SECTION
     ============================================ */
  .benefits-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    order: 4;
    max-width: 280px;
  }

  .benefits-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    text-align: left;
  }

  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    padding: 0.5rem;
  }

  .arrow-down,
  .arrow-up {
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
  }

  .arrow-down {
    color: #ef4444;
  }

  .arrow-up {
    color: #10b981;
  }

  /* ============================================
     GDMT TEMPLE
     ============================================ */
  .temple {
    background: white;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    order: 3;
  }

  .roof {
    background: linear-gradient(135deg, #1e5a8e, #2980b9);
    color: white;
    text-align: center;
    padding: 8px 6px 6px;
    font-size: 8px;
    font-weight: bold;
    position: relative;
    margin: -6px -6px 0 -6px;
    border-radius: 10px 10px 0 0;
    clip-path: polygon(5% 100%, 50% 0%, 95% 100%);
    padding-top: 18px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .roof-text {
    max-width: 60%;
    line-height: 1.2;
  }



  .checkmark::before {
    content: '✓';
    margin-right: 3px;
  }

  .arrow-up::before {
    content: '↑';
    margin-right: 3px;
  }

  /* Horizontal beam between roof and pillars */
  .architrave {
    background: linear-gradient(180deg, #2980b9, #1e5a8e);
    height: 6px;
    margin: 0 -6px;
    border-top: 1.5px solid white;
    border-bottom: 1.5px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 8px;
  }

  .pillar {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Pillar capital (top decorative part) */
  .pillar-capital {
    background: linear-gradient(135deg, #1e5a8e, #2980b9);
    /* padding: 4px 3px; */
    color: white;
    border-radius: 5px 5px 50% 50% / 5px 5px 30% 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 2px;
    width: 90%;
    max-width: 90%;
  }

  .pillar-title {
    font-size: 9px;
    font-weight: bold;
    margin-bottom: 1px;
    line-height: 1.1;
  }

  .pillar-drugs {
    font-size: 7px;
    font-style: italic;
    line-height: 1.1;
    min-height: 10px;
  }

  /* Cylindrical pillar shaft */
  .pillar-shaft {
    background: linear-gradient(
      to right,
      #1e5a8e 0%,
      #2980b9 15%,
      #3498db 30%,
      #5dade2 50%,
      #3498db 70%,
      #2980b9 85%,
      #1e5a8e 100%
    );
    color: white;
    height: 35px;
    width: 55%;
    max-width: 100%;
    position: relative;
    box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.3), inset 2px 0 4px rgba(0, 0, 0, 0.3),
      1px 0 3px rgba(0, 0, 0, 0.2), -1px 0 3px rgba(0, 0, 0, 0.2);
    border-radius: 50% / 5px;
  }

  .pillar-shaft::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  }

  .pillar-shaft::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  }

  .pillar-base {
    background: linear-gradient(135deg, #1e5a8e, #2980b9);
    padding: 3px;
    width: 70%;
    max-width: 100%;
    border-radius: 50% 50% 5px 5px / 30% 30% 5px 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 2px;
    opacity: 0;
    transform: scale(0);
    transform-origin: center bottom;
  }

  .arrow {
    font-size: 14px;
    color: #2980b9;
    margin: 5px 0 3px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .arrow.show {
    opacity: 1;
    visibility: visible;
  }

  .mechanism {
    background: #f8f9fa;
    padding: 3px;
    border-radius: 5px;
    font-size: 7px;
    color: #333;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    line-height: 1.1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mechanism.show {
    opacity: 1;
    visibility: visible;
  }

  .pillar {
    cursor: default;
    transition: none;
  }

  @media (min-width: 480px) {
    .temple {
      padding: 8px;
      min-width: 240px;
      max-width: 340px;
    }

    .roof {
      margin: -8px -8px 0 -8px;
      padding: 10px 8px;
      font-size: 9px;
      min-height: 42px;
      padding-top: 22px;
    }

    .roof-text {
      max-width: 65%;
    }

    .architrave {
      margin: 0 -8px;
      height: 7px;
    }

    .pillars {
      gap: 3px;
    }

    .pillar-title {
      font-size: 10px;
    }

    .pillar-drugs {
      font-size: 8px;
    }

    .pillar-shaft {
      height: 80px;
    }


    .arrow {
      font-size: 16px;
      margin: 7px 0 4px;
    }

    .mechanism {
      font-size: 8px;
      padding: 4px;
      min-height: 26px;
    }
  }

  @media (min-width: 768px) {
    .temple {
      min-width: 280px;
      max-width: 300px;
    }

    .roof {
      margin: -10px -10px 0 -10px;
      padding: 12px 10px;
      font-size: 10px;
      min-height: 48px;
      padding-top: 28px;
    }

    .architrave {
      margin: 0 -10px;
      height: 8px;
    }

    .pillars {
      gap: 3px;
    }

    .pillar-title {
      font-size: 11px;
    }

    .pillar-drugs {
      font-size: 9px;
    }

    .pillar-shaft {
      height: 80px;
    }



    .checkmark::before,
    .arrow-up::before {
      margin-right: 3px;
    }

    .arrow {
      font-size: 18px;
      margin: 8px 0 5px;
    }

    .mechanism {
      font-size: 9px;
      padding: 5px;
      min-height: 30px;
    }
  }

  @media (min-width: 1024px) {
    .temple {
      min-width: 300px;
      max-width: 300px;
      margin-top: 0.3rem;
    }

    .roof {
      font-size: 11px;
      padding-top: 32px;
      min-height: 52px;
    }

    .pillars {
      gap: 4px;
    }

    .pillar-capital {
      padding: 8px 5px;
    }

    .pillar-title {
      font-size: 12px;
    }

    .pillar-drugs {
      font-size: 10px;
    }

    .pillar-shaft {
      height: 58px;
    }


    .arrow {
      font-size: 20px;
      margin: 10px 0 6px;
    }

    .mechanism {
      font-size: 10px;
      padding: 6px;
      min-height: 34px;
    }
  }

  @media (min-width: 1200px) {
    .infographic-wrapper {
      padding: 2.5rem;
      border-radius: 1rem;
    }

    .infographic-headline {
      font-size: 1.75rem;
      padding: 1.5rem 3rem;
      margin: -2.5rem auto 2rem auto;
      border-radius: 50px;
    }

    .temple {
      min-width: 300px;
      max-width: 300px;
    }

    .pillars {
      gap: 5px;
    }

    .pillar-shaft {
      height: 65px;
    }


    .roof {
      font-size: 12px;
      padding-top: 35px;
      min-height: 55px;
    }

    .pillar-title {
      font-size: 13px;
    }

    .pillar-drugs {
      font-size: 11px;
    }

    .arrow {
      font-size: 22px;
    }

    .mechanism {
      font-size: 11px;
      min-height: 38px;
    }
  }

  .highlight-message {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin-top: 1rem;
  }

  .highlight-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--red-color);
    margin: 0;
    padding: 0.1rem 2rem;
    border-radius: 1.25rem;

    position: relative;
    overflow: hidden;
  }

  .highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
  }

  @keyframes shimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }

  .highlight-text strong {
    font-weight: 900;
    /* font-size: 1.5rem; */
    position: relative;
    z-index: 1;
  }

  .suboptimal-pulse {
    display: inline-block;
    animation: subtlePulse 2.5s ease-in-out infinite;
    animation-delay: 2.5s;
  }

  @media (min-width: 768px) and (max-width: 1024px) {

    .infographic-wrapper {
      padding: 1.5rem;
      border-radius: 0.875rem;
    }

    .infographic-headline {
      font-size: 1.1rem;
      padding: 1rem 2rem;
      margin: -1.5rem auto 1.5rem auto;
      border-radius: 40px;
    }

    .infographic-flow {
      flex-wrap: wrap;
      gap: 1rem;
      overflow-x: visible;
      padding: 1rem 0;
      justify-content: center;
    }

    .heart-start-section {
      flex: 1 1 100%;
      max-width: 100%;
      order: 1;
    }

    .arrow-section {
      flex: 1 1 100%;
      justify-content: center;
      flex-direction: row;
      max-width: 100%;
      order: 2;
      margin-right: 5rem;
    }

    .temple {
      flex: 1 1 calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
      order: 3;
    }

    .benefits-section {
      flex: 1 1 calc(50% - 0.5rem);
      max-width: calc(50% - 0.5rem);
      order: 4;
    }

    .heart-icon-container {
      width: 110px;
      height: 110px;
    }

    .pulse-circle {
      width: 110px;
      height: 110px;
    }

    @keyframes pulseExpand {
      0% {
        width: 110px;
        height: 110px;
      }
      100% {
        width: 200px;
        height: 200px;
      }
    }







    .pillar {
      min-height: 170px;
      /* padding: 1.25rem 0.875rem; */
    }



    .benefits-section {
      flex: 0 0 auto;
      min-width: 200px;
      max-width: 280px;
      /* padding: 1.25rem; */
    }

    .benefit-item {
      font-size: 0.8125rem;
      padding: 0rem;
    }
  }

  /* ============================================
     DESKTOP STYLES (1024px+)
     ============================================ */
  @media (min-width: 1024px) {
    .sequencing-banner {
      padding: 1.5rem 2.5rem;
      margin-bottom: 3rem;
    }

    .sequencing-text {
      font-size: 1.375rem;
    }



    .infographic-wrapper {
      padding: 2rem 2rem 0rem 2rem;
      border-radius: 1rem;
    }

    .infographic-headline {
      font-size: 1.625rem;
      padding: 1.25rem 2.5rem;
      margin: -2rem auto 2rem auto;
      border-radius: 50px;
    }

    .infographic-flow {
      flex-wrap: nowrap;
      gap: 0rem;
      overflow-x: visible;
      padding: 0rem;
    }

    .infographic-flow > * {
      flex: 0 1 auto;
      min-width: 0;
    }

    .heart-icon-container {
      width: 140px;
      height: 140px;
    }

    .pulse-circle {
      width: 140px;
      height: 140px;
    }

    .heart-label {
      font-size: 0.9375rem;
      max-width: 220px;
    }

    .arrow-text-top {
      font-size: 0.9375rem;
      padding: 1rem 1.5rem;
    }





    .roof-text {
      font-size: 0.9rem;
    }



    .pillar {
      min-height: 220px;
    }





    .benefits-section {
      flex: 0 0 auto;
      min-width: 260px;
      max-width: 300px;
    }

    .benefits-title {
      font-size: 1.25rem;
    }

    .benefit-item {
      font-size: 1rem;
      padding: 0.5rem;
    }

    .highlight-text {
      font-size: 1.375rem;
      /* padding: 2.5rem 3.5rem; */
    }

    .highlight-text strong {
      font-size: 1.75rem;
    }
  }
}

/* ============================================
   DRUGS HEADER COMPONENT
   ============================================ */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes slideInScale {
  0% {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  60% {
    opacity: 0.9;
    transform: translateX(5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
  }
  70% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.drugs-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;

  .main-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active .main-title {
    animation: fadeInDown 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .main-title strong {
    font-weight: 800;
    color: var(--primary-color);
  }

  .drugs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
  }

  .drug-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 350px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
  }

  .video-slide.active .drug-item:nth-child(1) {
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  }

  .video-slide.active .drug-item:nth-child(2) {
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  }

  .drug-indication {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .drug-indication strong {
    font-weight: 700;
    color: #374151;
  }

  .drug-name-wrapper {
    position: relative;
    display: inline-block;
    margin: 0.5rem 0;
  }

  .rx-symbol {
    position: absolute;
    top: -0.25rem;
    left: -1.5rem;
    font-size: 1.75rem;
    font-weight: 400;
    color: #1e293b;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
    transform-origin: center;
    z-index: 1;
    line-height: 1;
  }

  .video-slide.active .rx-symbol {
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
  }

  .drug-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
    animation: slideInScale 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
  }

  .video-slide.active .drug-name {
    animation: slideInScale 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
  }

  .drug-generic {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards;
  }

  .video-slide.active .drug-generic {
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards;
  }

  .drug-connector {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    padding: 0 1.5rem;
    opacity: 0;
    transform: scale(0.2) rotate(-45deg);
    animation: bounceIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  }

  .video-slide.active .drug-connector {
    animation: bounceIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  }

  .sequencing-banner {
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #8b7355 50%, #a0826d 100%);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(48, 56, 92, 0.25);
  }

  .sequencing-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */
  @media (max-width: 767px) {
    .main-title {
      font-size: 0.9375rem;
      line-height: 1.4;
    }

    .drugs-container {
      gap: 0rem;
    }

    .drug-item {
      min-width: 140px;
      max-width: 160px;
    }

    .drug-name {
      font-size: 1.25rem;
    }

    .rx-symbol {
      font-size: 1rem;
      left: -0.75rem;
    }

    .drug-generic {
      font-size: 0.75rem;
    }

    .drug-connector {
      font-size: 1rem;
      padding: 0 0.5rem;
    }

    .sequencing-banner {
      padding: 0.875rem 1rem;
    }

    .sequencing-text {
      font-size: 0.8125rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .main-title {
      font-size: 1.25rem;
    }

    .drug-name {
      font-size: 2rem;
    }

    .sequencing-text {
      font-size: 1rem;
    }
  }
}

/* ============================================
   PAGE 4 - SEQUENCING COMPARISON
   ============================================ */
@keyframes stepNumberPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    transform: scale(1.15) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes timelineStepAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmerHeader {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

#section-4 {
  position: relative;
  width: 100%;
  background: #ffffff;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(30px);

  #section-4.animate-in {
    animation: page4FadeIn 1s ease-out forwards;
  }

  @keyframes page4FadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .page4-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  /* ============================================
     HEADER SECTION
     ============================================ */

  .sequencing-banner {
    width: 100%;
    max-width: 1200px;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    /* margin-top: 1rem; */
  }

  .sequencing-text {
    font-size: 1.125rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  /* ============================================
     COMPARISON WRAPPER
     ============================================ */
  .comparison-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  }

  /* .video-slide.active .comparison-wrapper {
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
  } */

  .comparison-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 700px;
    display: flex;
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    /* margin: 2rem 0; */
  }

  .comparison-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, #cbd5e1 10%, #cbd5e1 90%, transparent 100%);
    z-index: 2;
    transform: translateX(-50%);
  }

  /* ============================================
     SEQUENCING PANELS
     ============================================ */
  .sequencing-panel {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(30px);
    animation: cardSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active .sequencing-panel.conventional-panel {
    animation: cardSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  }

  .video-slide.active .sequencing-panel.rapid-panel {
    animation: cardSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
  }

  .conventional-panel {
    border-radius: 1.5rem 0 0 1.5rem;
  }

  .rapid-panel {
    border-radius: 0 1.5rem 1.5rem 0;
  }

  .sequencing-panel::-webkit-scrollbar {
    width: 8px;
  }

  .sequencing-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .sequencing-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  .sequencing-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  .panel-header {
    padding: 1.25rem 2rem;
    border-radius: 3rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    animation: fadeInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active .panel-header {
    animation: fadeInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active .conventional-panel .panel-header {
    animation: fadeInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  }

  .video-slide.active .rapid-panel .panel-header {
    animation: fadeInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
  }

  .panel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerHeader 3s ease-in-out infinite;
  }

  .conventional-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 50%, #1e5a8e 100%);
  }

  .rapid-header {
    background: linear-gradient(135deg, #8b7355 0%, #a0826d 50%, #6b5d4f 100%);
  }

  .panel-header h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
  }

  .header-to-step-connector {
    position: absolute;
    /* left: 0; */
    bottom: -50px;
    width: 2px;
    height: 50px;
    background: repeating-linear-gradient(
      to bottom,
      #9ca3af 0px,
      #9ca3af 8px,
      transparent 8px,
      transparent 16px
    );
    z-index: 1;
  }

  /* ============================================
     TIMELINE
     ============================================ */
  .timeline-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0.5rem;
    position: relative;
  }

  .timeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    margin-bottom: 2rem;
    visibility: hidden;
    /* Default animation that runs after delay */
    animation: timelineStepAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
  }

  .timeline-step.animate-in {
    visibility: visible;
    /* Override with immediate animation when class is added */
    animation: timelineStepAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  }

  .step-number-wrapper {
    position: relative;
    flex-shrink: 0;
    z-index: 2;
  }

  .step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #374151;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #6b7280;
    position: relative;
    visibility: visible;
  }

  /* Initial state - step-number starts hidden */
  .video-slide:not(.active) .step-number,
  .video-slide.active .timeline-step:not(.animate-in) .step-number {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: none;
  }

  .step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px dashed #f97316;
    border-radius: 50%;
    z-index: -1;
  }

  .step-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    line-height: 1;
    margin-bottom: 2px;
  }

  .step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    line-height: 1;
  }

  /* Reset step-number when animate-in is removed */
  .timeline-step:not(.animate-in) .step-number {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: none !important;
  }

  .timeline-step.animate-in .step-number {
    /* Override with immediate animation when class is added */
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    visibility: visible !important;
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
  }

  /* Step number animation with delay based on step index */
  .timeline-step.animate-in[data-step-index='0'] .step-number {
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards !important;
  }

  .timeline-step.animate-in[data-step-index='1'] .step-number {
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards !important;
  }

  .timeline-step.animate-in[data-step-index='2'] .step-number {
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards !important;
  }

  .timeline-step.animate-in[data-step-index='3'] .step-number {
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards !important;
  }

  .timeline-step.animate-in[data-step-index='4'] .step-number {
    animation: stepNumberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards !important;
  }



  .step-content {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border-top: none;
    border-right: 4px solid;
    border-bottom: 2px solid #bbbbbb;
    border-left: none;
    border-radius: 3rem;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    min-height: 80px;
    display: flex;
    align-items: center;
    margin-left: -4rem;
    margin-top: -1rem;
    opacity: 1;
    visibility: visible;
  }

  .step-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 2rem;
    width: 80%;
    height: 1px;
    background: #bbbbbb;
    border-radius: 1.25rem 0 0 0;
  }

  .step-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 14%;
    width: 8px;
    height: 8px;
    background: #14b8a6;
    border-radius: 50%;
    z-index: 3;
  }

  .step-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    position: relative;
    padding: 0rem 1rem;
    z-index: 1;
  }

  /* ============================================
     TIMEFRAME
     ============================================ */
  .timeframe {
    padding: 0rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .timeframe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .rapid-timeframe {
    border-color: #8b7355;
  }

  .timeframe strong {
    font-size: 1.125rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
  }

  .conventional-timeframe strong {
    color: var(--primary-color);
  }

  .rapid-timeframe strong {
    color: #8b7355;
  }

  .timeframe {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.6;
  }

  /* ============================================
     REFERENCES
     ============================================ */
  .references {
    width: 100%;
    max-width: 1200px;
    text-align: center;
  }

  .references span {
    font-size: 0.9375rem;
    color: #4b5563;
    /* margin: 0.75rem 0; */
    line-height: 1.7;
    display: block;
  }

  .references strong {
    font-weight: 700;
    color: var(--primary-color);
  }

  .reference-link {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    border-bottom: 1px dotted transparent;
  }

  .reference-link:hover {
    color: #1e5a8e;
    text-decoration: underline;
    border-bottom-color: #1e5a8e;
  }

  .reference-link:active {
    color: #1a4a6e;
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */
  @media (max-width: 767px) {
    #section-4 {
      padding: 1rem 0.5rem;
    }

    .page4-container {
      gap: 1.5rem;
    }

    .sequencing-banner {
      padding: 0.875rem 1rem;
    }

    .sequencing-text {
      font-size: 0.8125rem;
    }



    .comparison-container {
      min-height: auto;
      flex-direction: column;
      gap: 0;
      border-radius: 1rem;
    }

    .comparison-container::before {
      display: none;
    }

    .sequencing-panel {
      width: 100%;
      gap: 1rem;
    }

    .conventional-panel {
      border-radius: 1rem 1rem 0 0;
    }

    .rapid-panel {
      border-radius: 0 0 1rem 1rem;
    }

    .panel-header {
      padding: 1rem 1.5rem;
    }

    .panel-header h2 {
      font-size: 1rem;
      letter-spacing: 0.08em;
    }

    .timeline-container {
      gap: 1.5rem;
      padding: 1rem 0;
    }

    .step-number {
      width: 55px;
      height: 55px;
    }

    .step-label {
      font-size: 0.625rem;
    }

    .step-num {
      font-size: 1.125rem;
    }

    .step-number-wrapper {
      margin-right: 0.5rem;
    }

    .timeline-step {
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .header-to-step-connector {
      bottom: -35px;
      height: 35px;
    }

    .header-to-step-connector::after {
      width: 2rem;
    }

    .timeline-step:first-child::before {
      left: -2rem;
      width: calc(2rem - 2px);
    }

    .step-content {
      padding: 1rem 0.875rem;
      margin-left: -2rem;
      border-radius: 2rem;
      min-height: 70px;
    }

    .step-content::before {
      right: 1rem;
      width: 75%;
    }

    .step-content::after {
      left: 12%;
      width: 6px;
      height: 6px;
      top: -3px;
    }

    .step-title {
      font-size: 0.8125rem;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }


    .timeframe {
      padding: 1.5rem 1rem;
    }

    .timeframe strong {
      font-size: 1rem;
    }

    .timeframe {
      font-size: 0.875rem;
    }

    .references {
      padding: 1.5rem;
    }

    #section-4 {
      padding: 1rem 0.5rem;
    }

    .page4-container {
      gap: 1.5rem;
    }

    .header-to-step-connector {
      bottom: -35px;
      height: 35px;
    }

    .header-to-step-connector::after {
      width: 2rem;
    }

    .timeline-step:first-child::before {
      left: -2rem;
      width: calc(2rem - 2px);
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .comparison-container {
      min-height: auto;
      gap: 1.5rem;
    }

    .panel-header {
      padding: 1.125rem 1.75rem;
    }

    .panel-header h2 {
      font-size: 1rem;
      letter-spacing: 0.1em;
    }

    .step-number {
      width: 65px;
      height: 65px;
    }

    .step-label {
      font-size: 0.6875rem;
    }

    .step-num {
      font-size: 1.375rem;
    }

    .step-content {
      margin-left: -3rem;
      border-radius: 2.5rem;
      padding: 1.125rem 1.25rem;
      min-height: 75px;
    }

    .step-content::before {
      right: 1.5rem;
      width: 78%;
    }

    .step-content::after {
      left: 13%;
      width: 7px;
      height: 7px;
      top: -3px;
    }

    .step-title {
      font-size: 0.9375rem;
      line-height: 1.4;
    }

    .timeline-step {
      gap: 1rem;
      margin-bottom: 1.75rem;
    }

    .header-to-step-connector {
      bottom: -40px;
      height: 40px;
    }

    .header-to-step-connector::after {
      width: 3rem;
    }

    .timeline-step:first-child::before {
      left: -3rem;
      width: calc(3rem - 2px);
    }

  }

  @media (min-width: 1024px) {
    .comparison-container {
      min-height: 700px;
    }
  }
}

/* ============================================
   PAGE 5 - TRIAL RESULTS
   ============================================ */

@keyframes shimmerBanner {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes synergyPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(41, 128, 185, 0.5), 0 0 80px rgba(139, 115, 85, 0.4),
      0 8px 24px rgba(0, 0, 0, 0.12);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
}

@keyframes synergyPulseMobile {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 40px rgba(41, 128, 185, 0.4), 0 0 60px rgba(139, 115, 85, 0.3),
      0 6px 18px rgba(0, 0, 0, 0.12);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }
}

#section-5 {
  position: relative;
  width: 100%;
  background: #ffffff;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;

  .page5-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* ============================================
     SLOGAN BANNER
     ============================================ */

  .slogan-banner {
    /* width: 100%; */
    /* max-width: 1200px; */
    padding: 1.5rem 2rem;
    background: var(--header-background-primary);
    border-radius: 5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }

  .slogan-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerBanner 3s ease-in-out infinite;
  }

  .slogan-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
  }

  .slogan-text strong {
    font-weight: 900;
    font-size: 1.3rem;
  }

  /* ============================================
     TRIALS CONTAINER
     ============================================ */

  .trials-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    /* margin: 2rem 0; */
    position: relative;
    min-height: 400px;
  }

  /* ============================================
     TRIAL CIRCLES
     ============================================ */

  .trial-circle {
    width: 350px;
    height: 350px;
    min-width: 300px;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Initial state - circles at center (overlapping) */
  .trial-circle.circle-center {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  /* Circles moving apart - left goes left, right goes right */
  .paradigm-circle.circle-apart {
    transform: translate(calc(-50% - 200px), -50%) scale(1);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dapa-circle.circle-apart {
    transform: translate(calc(-50% + 200px), -50%) scale(1);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Circles coming back to center */
  .trial-circle.circle-merge {
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Merged state - circles at center */
  .trial-circle.circle-merged {
    transform: translate(-50%, -50%) scale(1);
  }

  /* Pulse effect when merged - override transition during animation */
  .trial-circle.pulse-effect {
    animation: synergyPulse 0.8s ease-out;
    transition: none !important;
  }

  /* Final state - circles at their original positions (left and right sides) */
  .paradigm-circle.circle-final {
    left: 10%;
    transform: translate(-50%, -50%) scale(1);
    transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dapa-circle.circle-final {
    left: 90%;
    transform: translate(-50%, -50%) scale(1);
    transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Apply synergyPulse animation to circles at final position - after transition */
  .paradigm-circle.circle-final.pulse-active,
  .dapa-circle.circle-final.pulse-active {
    animation: synergyPulse 2s ease-in-out infinite;
    transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .paradigm-circle {
    border-color: #2980b9;
  }

  .dapa-circle {
    border-color: #8b7355;
  }

  .trial-header {
    width: 100%;
    height: 5rem;
    padding: 0.875rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .paradigm-header {
    background: linear-gradient(135deg, #2980b9 0%, #1e5a8e 100%);
  }

  .dapa-header {
    background: linear-gradient(135deg, #8b7355 0%, #6b5d4f 100%);
  }

  .trial-content {
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    padding: 0 1rem;
  }

  .trial-content strong {
    font-weight: 800;
    color: #1a202c;
    font-size: 1.0625rem;
  }

  /* ============================================
     CENTRAL TEXT
     ============================================ */

  .central-text {
    flex: 0 0 auto;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.6;
    padding: 1rem 2rem;
    max-width: 300px;
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.5s ease-out, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    z-index: 10;
    pointer-events: none;
  }

  .central-text.zoom-out {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }

  .central-text strong {
    font-weight: 800;
    color: #1a202c;
  }

  /* ============================================
     CONCLUSION SECTION
     ============================================ */

  .conclusion-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* margin-top: 2rem; */
  }

  .conclusion-text {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.6;
    padding: 0 2rem;
  }

  .conclusion-text strong {
    font-weight: 800;
    color: #1a202c;
  }

  .references {
    display: flex;
    flex-direction: column;
    /* gap: 0.5rem; */
    text-align: center;
  }

  .reference-item {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
  }

  .reference-link {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    border-bottom: 1px dotted transparent;
  }

  .reference-link:hover {
    color: #1e5a8e;
    text-decoration: underline;
    border-bottom-color: #1e5a8e;
  }

  .reference-link:active {
    color: #1a4a6e;
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */

  @media (max-width: 767px) {
    #section-5 {
      padding: 1rem 0.5rem;
    }

    .page5-container {
      gap: 1.25rem;
    }

    .slogan-banner {
      padding: 1rem 1.25rem;
      /* border-radius: 0.75rem; */
    }

    .slogan-text {
      font-size: 0.8125rem;
      letter-spacing: 0.03em;
    }

    .slogan-text strong {
      font-size: 0.875rem;
    }

    .trials-container {
      flex-direction: column;
      gap: 0;
      margin: 1.5rem 0;
      min-height: 600px;
      position: relative;
    }

    /* Mobile animation adjustments - circles move vertically */
    .trial-circle {
      width: 260px;
      height: 260px;
      min-width: 260px;
      max-width: 280px;
      padding: 1.25rem;
    }

    .paradigm-circle.circle-apart {
      transform: translate(-50%, calc(-50% - 120px)) scale(1);
    }

    .dapa-circle.circle-apart {
      transform: translate(-50%, calc(-50% + 120px)) scale(1);
    }

    .trial-circle.circle-merge {
      transform: translate(-50%, -50%) scale(1) !important;
    }

    .trial-circle.circle-center {
      transform: translate(-50%, -50%) scale(1);
    }

    .trial-circle.circle-merged {
      transform: translate(-50%, -50%) scale(1);
    }

    /* Final positions on mobile - stack vertically with better spacing */
    .paradigm-circle.circle-final {
      left: 50%;
      top: 20%;
      transform: translate(-50%, -50%) scale(1);
    }

    .dapa-circle.circle-final {
      left: 50%;
      top: 80%;
      transform: translate(-50%, -50%) scale(1);
    }

    .trial-header {
      padding: 0.625rem 0.875rem;
      font-size: 0.8125rem;
      margin-bottom: 0.875rem;
      letter-spacing: 0.06em;
    }

    .trial-content {
      font-size: 0.75rem;
      padding: 0 0.5rem;
      line-height: 1.5;
    }

    .trial-content strong {
      font-size: 0.875rem;
      display: block;
      margin-bottom: 0.25rem;
    }

    .central-text {
      font-size: 0.875rem;
      padding: 0.625rem 1rem;
      max-width: 260px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(0.3);
      line-height: 1.5;
    }

    .central-text.zoom-out {
      transform: translate(-50%, -50%) scale(1);
    }

    .conclusion-section {
      gap: 0.875rem;
      margin-top: 1.5rem;
      padding: 0 0.5rem;
    }

    .conclusion-text {
      font-size: 0.875rem;
      padding: 0 0.75rem;
      line-height: 1.5;
    }

    .references {
      gap: 0.375rem;
    }

    .reference-item {
      font-size: 0.6875rem;
      line-height: 1.4;
    }

    /* Responsive pulse animation for mobile */
    .trial-circle.pulse-effect {
      animation: synergyPulseMobile 0.8s ease-out;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .page5-container {
      gap: 1.75rem;
    }

    .slogan-banner {
      padding: 1.25rem 1.75rem;
    }

    .slogan-text {
      font-size: 1rem;
    }

    .slogan-text strong {
      font-size: 1.1rem;
    }

    .trials-container {
      gap: 1.5rem;
      min-height: 400px;
      max-width: 1000px;
    }

    .trial-circle {
      width: 300px;
      height: 300px;
      min-width: 280px;
      max-width: 320px;
      padding: 1.5rem;
    }

    .paradigm-circle.circle-apart {
      transform: translate(calc(-50% - 160px), -50%) scale(1);
    }

    .dapa-circle.circle-apart {
      transform: translate(calc(-50% + 160px), -50%) scale(1);
    }

    /* Final positions on tablet */
    .paradigm-circle.circle-final {
      left: 18%;
      transform: translate(-50%, -50%) scale(1);
    }

    .dapa-circle.circle-final {
      left: 82%;
      transform: translate(-50%, -50%) scale(1);
    }

    .trial-header {
      font-size: 0.875rem;
      padding: 0.75rem 1.125rem;
      margin-bottom: 1.25rem;
      letter-spacing: 0.07em;
    }

    .trial-content {
      font-size: 0.8125rem;
      padding: 0 0.875rem;
      line-height: 1.55;
    }

    .trial-content strong {
      font-size: 0.9375rem;
    }

    .central-text {
      font-size: 0.9375rem;
      padding: 0.875rem 2rem;
      max-width: 240px;
      line-height: 1.55;
    }

    .conclusion-text {
      font-size: 0.9375rem;
      padding: 0 1.5rem;
      line-height: 1.55;
    }

    .reference-item {
      font-size: 0.8125rem;
    }
  }

  @media (min-width: 1025px) {
    .trial-circle {
      min-width: 350px;
      max-width: 400px;
      width: 350px;
      height: 350px;
    }

    /* Final positions on desktop */
    .paradigm-circle.circle-final {
      left: 20%;
    }

    .dapa-circle.circle-final {
      left: 82%;
    }
  }

  /* Extra small mobile devices */
  @media (max-width: 480px) {
    .trial-circle {
      width: 240px;
      height: 240px;
      min-width: 240px;
      max-width: 260px;
      padding: 1rem;
    }

    .trials-container {
      min-height: 550px;
    }

    .paradigm-circle.circle-apart {
      transform: translate(-50%, calc(-50% - 100px)) scale(1);
    }

    .dapa-circle.circle-apart {
      transform: translate(-50%, calc(-50% + 100px)) scale(1);
    }

    .trial-header {
      font-size: 0.75rem;
      padding: 0.5rem 0.75rem;
    }

    .trial-content {
      font-size: 0.6875rem;
    }

    .trial-content strong {
      font-size: 0.8125rem;
    }

    .central-text {
      font-size: 0.8125rem;
      max-width: 240px;
      padding: 0.5rem 0.875rem;
    }

    .slogan-text {
      font-size: 0.75rem;
    }

    .slogan-text strong {
      font-size: 0.8125rem;
    }
  }
}

/* ============================================
   PAGE 6 - BENEFITS AND PATIENT COLLAGE
   ============================================ */

#section-6 {
  position: relative;
  width: 100%;
  background: #ffffff;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;

  .page6-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* ============================================
     SLOGAN BANNER
     ============================================ */

  .slogan-banner {
    /* width: 100%; */
    padding: 1.5rem 2rem;
    background: var(--header-background-primary);
    border-radius: 5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }

  .slogan-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerBanner 3s ease-in-out infinite;
  }

  .slogan-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
  }

  .slogan-text strong {
    font-weight: 900;
    font-size: 1.3rem;
  }

  /* ============================================
     MAIN CONTENT WRAPPER
     ============================================ */

  .main-content-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
  }

  /* ============================================
     BENEFITS PANEL (LEFT)
     ============================================ */

  .benefits-panel {
    flex: 1;
    min-width: 0;
    background: #f9fcfe;
    border-radius: 1.5rem;
    padding: 2.5rem;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  }

  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed #9ca3af;
  }

  .benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .bullet {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2980b9;
    margin-top: 0.375rem;
  }

  .benefit-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
  }

  .benefit-text strong {
    font-weight: 800;
    color: #1a202c;
  }

  /* ============================================
     PHOTO COLLAGE (RIGHT)
     ============================================ */

  .photo-collage {
    flex: 0 0 auto;
    width: 400px;
    height: 500px;
    position: relative;
  }

  .photo-item {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 4px solid #ffffff;
    transition: transform 0.3s ease, z-index 0.3s ease;
  }

  .photo-item:hover {
    transform: scale(1.05);
    z-index: 10;
  }

  .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Photo positions - overlapping diagonal pattern */
  .photo-1 {
    top: 0;
    left: 0;
    z-index: 4;
  }

  .photo-2 {
    top: 60px;
    left: 120px;
    z-index: 3;
  }

  .photo-3 {
    top: 180px;
    left: 20px;
    z-index: 2;
  }

  .photo-4 {
    top: 280px;
    left: 150px;
    z-index: 1;
  }

  /* ============================================
     FOOTER SECTION
     ============================================ */

  .footer-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
  }

  .references-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 0 0 2rem;
  }

  .abbreviations-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .reference-item,
  .abbreviation-item {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
  }

  .reference-item strong,
  .abbreviation-item strong {
    font-weight: 700;
    color: var(--primary-color);
  }

  .reference-link,
  .abbreviation-link {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    border-bottom: 1px dotted transparent;
  }

  .reference-link:hover,
  .abbreviation-link:hover {
    color: #1e5a8e;
    text-decoration: underline;
    border-bottom-color: #1e5a8e;
  }

  .reference-link:active,
  .abbreviation-link:active {
    color: #1a4a6e;
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */

  @media (max-width: 767px) {
    #section-6 {
      padding: 1rem 0.5rem;
    }

    .page6-container {
      gap: 1.25rem;
    }

    .slogan-banner {
      padding: 1rem 1.25rem;
      border-radius: 3rem;
    }

    .slogan-text {
      font-size: 0.8125rem;
      letter-spacing: 0.03em;
    }

    .slogan-text strong {
      font-size: 0.875rem;
    }

    .main-content-wrapper {
      flex-direction: column;
      gap: 2rem;
      margin: 1.5rem 0;
    }

    .benefits-panel {
      padding: 1.5rem;
      border-radius: 1rem;
    }

    .benefits-list {
      gap: 1.25rem;
    }

    .benefit-item {
      padding-bottom: 1.25rem;
    }

    .benefit-text {
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .photo-collage {
      width: 100%;
      height: 400px;
      max-width: 350px;
      margin: 0 auto;
    }

    .photo-item {
      width: 150px;
      height: 150px;
    }

    .photo-1 {
      top: 0;
      left: 0;
    }

    .photo-2 {
      top: 40px;
      left: 90px;
    }

    .photo-3 {
      top: 120px;
      left: 10px;
    }

    .photo-4 {
      top: 200px;
      left: 100px;
    }

    .footer-section {
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
    }

    .reference-item,
    .abbreviation-item {
      font-size: 0.75rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .page6-container {
      gap: 0.5rem;
    }

    .slogan-banner {
      padding: 1.25rem 1.75rem;
    }

    .slogan-text {
      font-size: 1rem;
    }

    .slogan-text strong {
      font-size: 1.1rem;
    }

    .main-content-wrapper {
      gap: 2.5rem;
    }

    .benefits-panel {
      padding: 0.2rem;
    }

    .benefits-list {
      gap: 1.375rem;
    }

    .benefit-text {
      font-size: 0.9375rem;
    }

    .photo-collage {
      width: 350px;
      height: 450px;
    }

    .photo-item {
      width: 180px;
      height: 180px;
    }

    .photo-2 {
      top: 50px;
      left: 100px;
    }

    .photo-3 {
      top: 160px;
      left: 15px;
    }

    .photo-4 {
      top: 250px;
      left: 130px;
    }

    .footer-section {
      gap: 2rem;
    }
  }

  @media (min-width: 1025px) {
    .main-content-wrapper {
      gap: 3rem;
    }
  }
}

/* ============================================
   PAGE 7 - GLYDA INFOGRAPHIC
   ============================================ */

@keyframes weightArrowLower {
  0% {
    height: 0;
  }
  100% {
    height: calc(100% - 20px);
  }
}

@keyframes weightArrowHeadAppear {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bpArrowLower {
  0% {
    height: 0;
  }
  100% {
    height: calc(100% - 20px);
  }
}

@keyframes bpArrowHeadAppear {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#section-7 {
  position: relative;
  width: 100%;
  background: #ffffff;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.05) 1px, transparent 0);
  background-size: 40px 40px, 60px 60px;
  background-position: top left, bottom right;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(30px);

  .page7-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* ============================================
     GLYDA BANNER
     ============================================ */

  .glyda-banner {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    padding: 0.5rem;
    text-align: center;
    position: relative;
  }

  .banner-header {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  .banner-header strong {
    font-weight: 700;
    color: #1a202c;
  }

  .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
  }

  .banner-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .drug-name-wrapper {
    position: relative;
    display: inline-block;
    margin: 0.5rem 0;
  }

  .rx-symbol {
    position: absolute;
    top: -0.25rem;
    left: -1.5rem;
    font-size: 1.75rem;
    font-weight: 400;
    color: #1e293b;
    line-height: 1;
    z-index: 1;
  }

  .drug-name {
    font-size: 4rem;
    font-weight: 900;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.02em;
  }

  .dosage-info {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 400;
    line-height: 1.4;
  }

  .banner-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-top: 1rem;
    font-family: 'Arial', sans-serif;
  }

  /* ============================================
     INFOGRAPHIC BOX
     ============================================ */

  .infographic-box {
    width: 100%;
    max-width: 1100px;
    /* padding: 3rem 2.5rem; */
    position: relative;
  }

  /* ============================================
     SECTIONS WRAPPER
     ============================================ */

  .sections-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
  }

  .benefit-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: visible;
    width: 100%;
  }

  /* ============================================
     SECTION HEADERS
     ============================================ */

  .section-header {
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
  }

  .glycaemic-header,
  .cv-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  }

  /* ============================================
     METRICS CONTAINER
     ============================================ */
  .metric-items-container {
    position: relative;
    z-index: 2;
    display: flex;
    margin-top: 2rem;
    gap: 3rem;
    justify-content: center;
    width: 100%;
  }

  .metrics-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #9ca3af;
    position: relative;
    border-radius: 3rem;
  }

  .metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
  }

  .metric-item.horizontal-item {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
  }

  .metric-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
    flex-shrink: 0;
    overflow: visible;
  }

  /* Outer complete circle (thick) */
  .metric-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid;
    z-index: 1;
  }

  /* Inner complete dotted circle */
  .metric-icon::after {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 3px dashed;
    z-index: 2;
    /* Complete dotted circle */
  }

  /* White overlay to create C-shape by hiding top-right portion */
  .metric-icon .overlay-mask {
    position: absolute;
    top: 0px;
    right: -20px;
    width: 55%;
    height: 55%;
    background: #ffffff;
    z-index: 4;
    clip-path: polygon(0% 0%, 100% 1%, 100% 100%);
    border-radius: 100% 0;
    transform: rotate(5deg);
    transform-origin: top right;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  }

  /* HbA1c Scale Lowering Animation */
  .a1c-icon.animate-in .overlay-mask {
    animation: a1cScaleLower 1.5s ease-out forwards;
  }

  @keyframes a1cScaleLower {
    0% {
      transform: rotate(5deg) scale(1);
      opacity: 1;
    }
    100% {
      transform: rotate(5deg) scale(0.3) translateY(20px);
      opacity: 0.3;
    }
  }

  .metric-value {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    z-index: 5;
  }

  .cv-icon {
    margin-top: 2rem;
  }

  .a1c-icon::before {
    border-color: #fbbf24;
  }

  .a1c-icon::after {
    border-color: #fbbf24;
  }

  .a1c-icon .metric-value {
    color: #f97316;
  }

  .glycaemic-icon::before {
    border-color: #dc2626;
  }

  .glycaemic-icon::after {
    border-color: #dc2626;
  }

  .glycaemic-icon .metric-value {
    color: #f97316;
  }

  .cv-icon::before {
    border-color: #4ade80;
  }

  .cv-icon::after {
    border-color: #4ade80;
  }

  .cv-icon .metric-value {
    color: #f97316;
  }

  .metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0.1rem;
    right: -4rem;
    gap: 0.25rem;
    z-index: 10;
  }

  .label-line-1,
  .label-line-2 {
    line-height: 1.2;
  }

  /* ============================================
     BENEFIT BOXES
     ============================================ */

  .benefit-box {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #9ca3af;
  }

  /* Colored border/background using ::after - from middle of left/right to bottom */
  .benefit-box::after {
    content: '';
    position: absolute;
    top: 50%;
    bottom: -4px;
    left: -10px;
    right: -10px;
    border-left: 10px solid;
    border-right: 10px solid;
    border-bottom: 10px solid;
    border-radius: 0 0 0.75rem 0.75rem;
    pointer-events: none;
  }

  .weight-box {
    align-self: flex-end;
  }

  .weight-box::after {
    border-color: #f97316;
  }

  .bp-box::after {
    border-color: #dc2626;
  }

  .benefit-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a202c;
    text-align: left;
    margin: 0;
    width: 100%;
  }

  .arrow-container {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  .arrow-icon {
    width: 24px;
    height: 140px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* Weight Arrow - no animation, always visible */
  .weight-arrow::before {
    height: calc(100% - 20px);
  }

  .weight-arrow::after {
    opacity: 1;
  }

  /* BP Arrow - no animation, always visible */
  .bp-arrow::before {
    height: calc(100% - 20px);
  }

  .bp-arrow::after {
    opacity: 1;
  }

  /* Arrow shaft (rectangular) - visible by default */
  .arrow-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 20px); /* Full height - no animation */
    border-radius: 0;
    transition: none;
  }

  .weight-arrow::before {
    background: #f97316; /* Orange for weight arrow */
  }

  .bp-arrow::before {
    background: #dc2626; /* Red for BP arrow */
  }

  /* Arrowhead (triangular) - pointing down at bottom */
  .arrow-icon::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid;
    z-index: 1;
  }

  .weight-arrow::after {
    border-top-color: #f97316;
  }

  .bp-arrow::after {
    border-top-color: #dc2626;
  }

  /* Layered bands at top of arrow */
  .arrow-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .arrow-detail::before {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 1px;
  }

  .arrow-detail::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 1px;
    margin-top: 1px;
  }

  .weight-arrow .arrow-detail::after {
    background: #fff;
  }

  .arrow-value-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.25rem;
    padding-top: 0.5rem;
  }

  .arrow-value-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
  }

  .arrow-value-unit {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }

  .weight-arrow + .arrow-value-container .arrow-value-number,
  .weight-arrow + .arrow-value-container .arrow-value-unit {
    color: #f97316;
  }

  .bp-arrow + .arrow-value-container .arrow-value-number,
  .bp-arrow + .arrow-value-container .arrow-value-unit {
    color: #dc2626;
  }

  /* ============================================
     FOOTER SECTION
     ============================================ */

  .footer-section {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .footnotes {
    padding: 0 1rem;
  }

  .footnote-text {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
  }

  .references-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 1rem 2rem; */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
  }

  .reference-item {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    text-align: left;
  }

  .reference-item strong {
    font-weight: 700;
    color: var(--primary-color);
  }

  .reference-link {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    border-bottom: 1px dotted transparent;
  }

  .reference-link:hover {
    color: #1e5a8e;
    text-decoration: underline;
    border-bottom-color: #1e5a8e;
  }

  .reference-link:active {
    color: #1a4a6e;
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */

  @media (max-width: 767px) {
    #section-7 {
      padding: 1rem 0.5rem;
    }

    .page7-container {
      gap: 1.5rem;
    }

    .glyda-banner {
      padding: 1.5rem 1rem;
    }

    .banner-header {
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .rx-symbol {
      font-size: 1.5rem;
      top: -0.25rem;
      left: -1.25rem;
    }

    .drug-name {
      font-size: 2.5rem;
    }

    .dosage-info {
      font-size: 0.75rem;
    }

    .banner-tagline {
      font-size: 1rem;
      margin-top: 0.75rem;
    }

    .infographic-box {
      padding: 2rem 1.5rem;
      border-radius: 1rem;
    }

    .sections-wrapper {
      flex-direction: column;
      gap: 3rem;
    }

    .section-header {
      font-size: 1rem;
      padding: 0.875rem 1.25rem;
    }

    .metrics-container {
      gap: 1.5rem;
    }

    .metric-icon {
      width: 130px;
      height: 130px;
    }

    .metric-value {
      font-size: 1.75rem;
    }

    .metric-label {
      font-size: 0.875rem;
    }

    .benefit-box {
      min-width: 100%;
      max-width: 280px;
    }

    .arrow-icon {
      width: 25px;
      height: 70px;
    }


    .footnote-text {
      font-size: 0.75rem;
    }

    .references-section {
      grid-template-columns: 1fr;
      gap: 0.75rem;
      padding: 1rem;
    }

    .reference-item {
      font-size: 0.75rem;
      text-align: left;
    }
  }

  @media (min-width: 768px) and (max-width: 1024px) {
    .page7-container {
      gap: 1.75rem;
    }

    .rx-symbol {
      font-size: 1.5rem;
      left: -1.75rem;
      top: -0.3rem;
    }

    .drug-name {
      font-size: 3.5rem;
    }

    .banner-tagline {
      font-size: 1.5rem;
    }

    .infographic-box {
      padding: 1rem 2rem;
    }

    .sections-wrapper {
      gap: 3rem;
    }

    .section-header {
      font-size: 1.125rem;
    }

    .metric-icon {
      width: 150px;
      height: 150px;
    }

    .metric-value {
      font-size: 2rem;
    }


  }
}

/* ============================================
   PAGE 8 - DRUG INFORMATION DETAILS
   ============================================ */

#section-8 {
  position: relative;
  width: 100%;
  background: #ffffff;
  background-size: 40px 40px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;

  .page8-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* ============================================
     MAIN TITLE
     ============================================ */

  .main-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .main-title strong {
    font-weight: 800;
    color: var(--primary-color);
  }

  /* ============================================
     SLOGAN BANNER
     ============================================ */

  .slogan-banner {
    padding: 1.5rem 2rem;
    background: var(--header-background-primary);
    border-radius: 5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }

  .slogan-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .slogan-text strong {
    font-weight: 900;
  }

  /* ============================================
     DRUGS CONTENT WRAPPER
     ============================================ */

  .drugs-content-wrapper {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    align-items: flex-start;
  }

  /* ============================================
     DRUG COLUMN
     ============================================ */

  .drug-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }



  .drug-connector {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* ============================================
     DRUG NAME SECTION
     ============================================ */


  .drug-name-wrapper {
    position: relative;
    display: inline-block;
    margin: 0.5rem 0;
  }

  .rx-symbol {
    position: absolute;
    top: -0.25rem;
    left: -1.5rem;
    font-size: 1.75rem;
    font-weight: 400;
    color: #1e293b;
    line-height: 1;
    z-index: 1;
  }

  .drug-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
  }

  .drug-generic {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
    margin-top: 0.25rem;
  }


  /* ============================================
     INFO BOXES
     ============================================ */

  .info-box {
    overflow: hidden;
  }

  .info-box-label {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    width: 40%;
    border-radius: 2rem;
  }

  .sacuvan-indication .info-box-label {
    background: var(--header-background-primary);
  }

  .glyda-indication .info-box-label,
  .glyda-dosage .info-box-label {
    background: #f97316;
  }

  .info-box-content {
    padding: 1rem;
    background: #ffffff;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .info-box-content strong {
    font-weight: 700;
    color: #1e293b;
  }

  /* ============================================
     INDICATION LIST
     ============================================ */

  .indication-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .indication-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .indication-list li::before {
    content: '⦿';
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: 700;
  }

  .indication-list li:last-child {
    margin-bottom: 0;
  }

  /* ============================================
     DOSAGE LIST
     ============================================ */

  .dosage-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
  }

  .dosage-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .dosage-list li::before {
    content: '⦿';
    position: absolute;
    left: 0;
    color: #6b7280;
    font-weight: 700;
  }

  .dosage-section {
    margin: 0.75rem 0;
  }

  .dosage-section:first-child {
    margin-top: 0;
  }

  .dosage-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
  }

  /* ============================================
     DOSAGE TABLE
     ============================================ */

  .dosage-table-container {
    margin: 1rem 0;
    overflow-x: auto;
    padding: 1rem;
    border: 2px solid #c6c6c6;
    border-radius: 2rem;
  }

  .dosage-table-header {
    /* font-size: 1.25rem; */
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 0.3rem 0.5rem;
    margin-bottom: 1rem;
  }

  .dosage-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #bfdbfe;
    background: #ffffff;
    font-size: 0.875rem;
    border-radius: 2rem;
  }

  .dosage-table th {
    background: var(--header-background-primary);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border: 1px solid #93c5fd;
  }

  .dosage-table .table-header {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .dosage-table .sub-header-row th {
    background: #dbeafe;
    color: #1e40af;
    font-weight: 600;
    font-size: 0.8125rem;
  }

  .dosage-table td {
    padding: 0.2rem 0.5rem;
    border: 1px solid #bfdbfe;
    color: #374151;
    text-align: center;
  }

  .dosage-table tbody tr:nth-child(even) {
    background: #f8fafc;
  }

  .dosage-table tbody tr:hover {
    background: #eff6ff;
  }

  /* ============================================
     PACKSHOT PLACEHOLDER
     ============================================ */

  .packshot-placeholder {
    align-self: center;
    width: 12rem;
    min-height: 6rem;
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 1rem; */
  }

  .packshot-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ============================================
     PRODUCT IMAGES
     ============================================ */

  .product-images {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
  }

  .product-images img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
  }





  /* ============================================
     RESPONSIVE STYLES - MOBILE
     ============================================ */

  @media (max-width: 767px) {
    .page8-container {
      gap: 1.5rem;
      padding: 1.5rem 1rem;
    }

    .main-title {
      font-size: 1.25rem;
    }

    .slogan-banner {
      padding: 1.25rem 1.5rem;
      border-radius: 3rem;
    }

    .slogan-text {
      font-size: 1rem;
    }

    .drugs-content-wrapper {
      flex-direction: column;
      gap: 2rem;
    }

    .drug-column {
      width: 100%;
    }

    .drug-name {
      font-size: 2rem;
    }

    .rx-symbol {
      font-size: 1.5rem;
      left: -1.25rem;
    }

    .dosage-table {
      font-size: 0.75rem;
    }

    .dosage-table th,
    .dosage-table td {
      padding: 0.5rem 0.25rem;
    }

    .product-images {
      flex-direction: column;
    }

  }

  /* ============================================
     RESPONSIVE STYLES - TABLET
     ============================================ */

  @media (min-width: 768px) and (max-width: 1024px) {
    .page8-container {
      max-width: 1000px;
    }

    .drugs-content-wrapper {
      gap: 1.5rem;
    }

    .drug-name {
      font-size: 2.25rem;
    }

    .rx-symbol {
      font-size: 1.625rem;
      left: -1.375rem;
    }

    .dosage-table {
      font-size: 0.8125rem;
    }

    .product-images {
      flex-direction: column;
    }
  }

  /* ============================================
     RESPONSIVE STYLES - DESKTOP
     ============================================ */

  @media (min-width: 1025px) {
    .page8-container {
      gap: 2.5rem;
    }

    .drug-name {
      font-size: 3rem;
    }

    .rx-symbol {
      font-size: 2rem;
      left: -1.75rem;
      top: -0.3rem;
    }
  }

  /* ============================================
     PAGE 8 ANIMATIONS - INITIAL STATES
     ============================================ */

  /* Initial states - CSS will handle via keyframes starting from 0% */

  /* ============================================
     PAGE 8 ANIMATIONS - KEYFRAMES
     ============================================ */

  @keyframes page8SloganBannerFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-30px) scale(0.9);
    }
    60% {
      opacity: 0.95;
      transform: translateY(5px) scale(1.05);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes page8ColumnSlideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes page8ColumnSlideInRight {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes page8InfoBoxFadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes page8DosageTableSlideUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes page8ProductImageScale {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* ============================================
     PAGE 8 ANIMATIONS - ACTIVE STATES
     ============================================ */

  .video-slide.active #section-8 .slogan-banner.animate-in {
    animation: page8SloganBannerFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active #section-8 .sacuvan-column.animate-in {
    animation: page8ColumnSlideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active #section-8 .glyda-column.animate-in {
    animation: page8ColumnSlideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active #section-8 .info-box.animate-in {
    animation: page8InfoBoxFadeIn 0.6s ease-out forwards;
  }

  .video-slide.active #section-8 .dosage-table-container.animate-in {
    animation: page8DosageTableSlideUp 0.7s ease-out forwards;
  }

  .video-slide.active #section-8 .product-images.animate-in {
    animation: page8ProductImageScale 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .video-slide.active #section-8 .packshot-placeholder.animate-in {
    animation: page8ProductImageScale 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
}

/* ============================================
   PAGE 9 - IVIDIN PROMOTIONAL PAGE
   ============================================ */

#section-9 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  .page9-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
  }

  /* ============================================
     BACKGROUND IMAGE
     ============================================ */

  .background-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .blurred-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; /* Position image to show left side clearly */
    filter: blur(2px); /* Reduced blur for clearer visibility */
    opacity: 1; /* Full opacity for clear visibility */
    transform: none; /* Remove scale to fit properly */
    transition: none; /* No transition by default */
  }

  /* Pixelated animation - starts with large visible pixels and becomes clear */
  @keyframes pixelatedToClear {
    0% {
      image-rendering: pixelated;
      image-rendering: -moz-crisp-edges;
      image-rendering: crisp-edges;
      width: 5%;
      height: 5%;
      transform: scale(20);
      filter: contrast(150%) brightness(0.6);
    }
    10% {
      width: 8%;
      height: 8%;
      transform: scale(12.5);
      filter: contrast(140%) brightness(0.65);
    }
    20% {
      width: 12%;
      height: 12%;
      transform: scale(8.33);
      filter: contrast(130%) brightness(0.7);
    }
    30% {
      width: 18%;
      height: 18%;
      transform: scale(5.56);
      filter: contrast(120%) brightness(0.75);
    }
    40% {
      width: 25%;
      height: 25%;
      transform: scale(4);
      filter: contrast(115%) brightness(0.8);
    }
    50% {
      width: 35%;
      height: 35%;
      transform: scale(2.86);
      filter: contrast(110%) brightness(0.85);
    }
    60% {
      width: 50%;
      height: 50%;
      transform: scale(2);
      filter: contrast(105%) brightness(0.9);
    }
    70% {
      width: 70%;
      height: 70%;
      transform: scale(1.43);
      filter: contrast(103%) brightness(0.95);
    }
    80% {
      width: 85%;
      height: 85%;
      transform: scale(1.18);
      filter: contrast(102%) brightness(0.98);
    }
    90% {
      width: 95%;
      height: 95%;
      transform: scale(1.05);
      filter: contrast(101%) brightness(1);
    }
    100% {
      image-rendering: auto;
      width: 100%;
      height: 100%;
      transform: scale(1);
      filter: blur(2px);
    }
  }

  /* Initial pixelated state - large visible pixels */
  .video-slide:not(.active) #section-9 .blurred-bg-image,
  .video-slide.active #section-9 .blurred-bg-image:not(.pixelated-animated) {
    image-rendering: pixelated !important;
    image-rendering: -moz-crisp-edges !important;
    image-rendering: crisp-edges !important;
    width: 5% !important;
    height: 5% !important;
    transform: scale(20) !important;
    filter: contrast(150%) brightness(0.6) !important;
    animation: none !important;
  }

  /* Apply pixelated animation when page 9 is active */
  .video-slide.active #section-9 .blurred-bg-image.pixelated-animated {
    animation: pixelatedToClear 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
  }

  .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(255, 255, 255, 0.3) 55%,
      rgba(255, 255, 255, 0.6) 70%,
      rgba(255, 255, 255, 0.85) 85%,
      rgba(255, 255, 255, 1) 100%
    );
    z-index: 1;
  }

  /* ============================================
     TEXT OVERLAYS (TOP)
     ============================================ */

  .top-text-overlay {
    text-align: center;
    padding: 2rem 1rem;
    z-index: 2;
    position: relative;
  }

  .overlay-line-1,
  .overlay-line-2 {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: #1e293b;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.4;
  }

  .overlay-line-2 {
    font-size: 1.4rem;
  }

  /* ============================================
     DRUG INFORMATION BLOCK (CENTER-RIGHT)
     ============================================ */


  .drug-name-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .rx-symbol {
    position: absolute;
    top: -0.5rem;
    left: -2rem;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1e293b;
    line-height: 1;
    z-index: 1;
    font-family: 'Arial', sans-serif;
  }

  .drug-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e40af; /* Dark blue */
    text-align: left;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    font-family: 'Georgia', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
  }




  /* Benefit Bar with Gradient */

  .benefit-text {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* ============================================
     PRODUCT IMAGE
     ============================================ */

  .product-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
    position: absolute;
    right: 1rem;
    top: 30%;
    transform: translateY(-50%);
  }

  .product-image {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
  }

  /* ============================================
     SLOGAN BLOCK (BOTTOM-LEFT)
     ============================================ */

  .slogan-block {
    padding: 1.5rem;
    z-index: 2;
    width: 100%;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
  }

  .slogan-main {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--main-font-color);
    margin: 0.5rem 0;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }

  .slogan-sub {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--main-font-color);
    margin: 0.5rem 0;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }

  .slogan-note {
    font-size: 1.5rem;
    font-weight: 400;
    color: #40478f;
    margin-top: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-style: italic;
  }

  /* ============================================
     MEDICAL CONTEXT BLOCK (BOTTOM-MIDDLE TO RIGHT)
     ============================================ */

  .medical-context-block {
    padding: 1.5rem;
    z-index: 2;
    text-align: right;
    max-width: 600px;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
  }

  .medical-text {
    font-size: 1rem;
    font-weight: bold;
    color: #374151;
    line-height: 1.6;
    margin: 1rem 0;
    text-align: center;
  }

  .gdmt-abbreviation {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
  }

  /* ============================================
     RESPONSIVE STYLES - TABLET
     ============================================ */

  @media (min-width: 768px) and (max-width: 1024px) {
    #section-9 {
      min-height: 100vh;
    }

    .page9-container {
      min-height: 100vh;
      position: relative;
    }

    .top-text-overlay {
      padding: 1.5rem 1rem;
      position: relative;
      z-index: 2;
    }

    .overlay-line-1,
    .overlay-line-2 {
      font-size: 1.2rem;
      margin: 0.4rem 0;
    }

    .product-image-container {
      position: absolute;
      right: 8rem;
      top: 40%;
      transform: translateY(-50%);
      padding: 1rem;
      z-index: 2;
    }

    .product-image {
      max-width: 280px;
      max-height: 380px;
      width: auto;
      height: auto;
    }

    .slogan-block {
      position: absolute;
      bottom: 8rem;
      left: 1rem;
      padding: 1.25rem;
      /* max-width: 48%; */
      z-index: 2;
    }

    .slogan-main {
      font-size: 2.5rem;
      margin: 0.4rem 0;
    }

    .slogan-sub {
      font-size: 1.75rem;
      margin: 0.4rem 0;
    }

    .slogan-note {
      font-size: 1rem;
      margin-top: 0.75rem;
    }

    .medical-text {
      margin: 0.75rem 0;
      text-align: center;
    }

    .medical-context-block {
      position: absolute;
      bottom: 2rem;
      right: 1rem;
      padding: 1.25rem;
      max-width: 48%;
      text-align: right;
      z-index: 2;
    }

    .gdmt-abbreviation {
      font-size: 0.8125rem;
      margin-top: 0.5rem;
    }

    /* Ensure background image is visible */
    .blurred-bg-image {
      filter: blur(2px);
      opacity: 0.85;
    }

    .background-overlay {
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0.9) 90%,
        rgba(255, 255, 255, 1) 100%
      );
    }
  }

  /* ============================================
     RESPONSIVE STYLES - MOBILE
     ============================================ */

  @media (max-width: 767px) {
    #section-9 {
      min-height: 100vh;
    }

    .page9-container {
      min-height: 100vh;
    }

    .top-text-overlay {
      padding: 1rem 0.5rem;
      position: relative;
      z-index: 2;
    }

    .overlay-line-1,
    .overlay-line-2 {
      font-size: 0.9375rem;
      margin: 0.25rem 0;
      line-height: 1.3;
    }

    .product-image-container {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      padding: 1rem;
      margin: 1rem auto;
      width: 100%;
      max-width: 250px;
      order: 2;
    }

    .product-image {
      max-width: 100%;
      max-height: 250px;
      width: auto;
      height: auto;
    }

    .slogan-block {
      position: relative;
      bottom: auto;
      left: auto;
      padding: 1rem;
      max-width: 100%;
      width: 100%;
      order: 3;
      margin-top: 1rem;
    }

    .slogan-main {
      font-size: 1.5rem;
      margin: 0.25rem 0;
    }

    .slogan-sub {
      font-size: 1.5rem;
      margin: 0.25rem 0;
    }

    .slogan-note {
      font-size: 1rem;
      margin-top: 0.75rem;
    }

    .medical-text {
      font-size: 0.875rem;
      margin: 0.75rem 0;
      text-align: left;
    }

    .medical-context-block {
      position: relative;
      bottom: auto;
      right: auto;
      padding: 1rem;
      max-width: 100%;
      width: 100%;
      text-align: left;
      order: 4;
      margin-top: 1rem;
    }

    .gdmt-abbreviation {
      font-size: 0.75rem;
      margin-top: 0.5rem;
    }

    /* Stack elements vertically on mobile */
    .page9-container {
      flex-direction: column;
      gap: 0;
    }

    /* Adjust background for mobile */
    .blurred-bg-image {
      filter: blur(1px);
      opacity: 0.8;
    }

    .background-overlay {
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.7) 100%
      );
    }
  }
}

/* ============================================
   PAGE 10 - IVIDIN CLINICAL TRIAL RESULTS
   ============================================ */

#section-10 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #ffffff;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;

  .page10-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
  }

  /* ============================================
     TOP SECTION - PRODUCT INDICATION
     ============================================ */

  .top-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-header {
    font-size: 1rem;
    font-weight: bold;
    color: #374151;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
  }

  .product-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
  }

  .product-brand-image {
    max-width: 400px;
    max-height: 200px;
    border-radius: 2rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .dosage-info {
    font-size: 1.125rem;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
  }

  /* Slogan Banner with Gradient */
  .slogan-banner {
    width: 100%;
    max-width: 600px;
    height: 50px;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #3b82f6 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0.5rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  }

  .slogan-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* ============================================
     TRIAL SECTION
     ============================================ */

  .trial-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    transition: all 0.3s ease;
  }

  /* Trial Highlight Animation */
  .trial-section.trial-highlight {
    animation: trialPulse 2s ease-in-out;
  }

  @keyframes trialPulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
    25% {
      transform: scale(1.01);
      box-shadow: 0 0 30px 10px rgba(59, 130, 246, 0.3);
    }
    50% {
      transform: scale(1.02);
      box-shadow: 0 0 40px 15px rgba(59, 130, 246, 0.4);
    }
    75% {
      transform: scale(1.01);
      box-shadow: 0 0 30px 10px rgba(59, 130, 246, 0.3);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
  }

  .trial-title {
    transition: all 0.3s ease;
  }

  .trial-section.trial-highlight .trial-title {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }

  .trial-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--main-font-color);
    text-align: center;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Results and Graph Wrapper */
  .results-graph-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Results Boxes */
  .results-boxes {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 1;
    min-width: 600px;
    position: relative;
  }

  .result-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 0;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .orange-outer-box {
    border-color: #f97316;
    border-right: none;
    position: relative;
    overflow: visible;
    border-radius: 0.9rem 0 0 0.9rem;
  }

  .orange-outer-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #ffffff;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }

  .green-outer-box {
    border-color: #10b981;
    border-left: none;
    position: relative;
    overflow: visible;
    border-radius: 0 0.9rem 0.9rem 0;
  }

  .green-outer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #ffffff;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .result-inner-box {
    background: transparent;
    border: 3px solid;
    margin: 0;
    padding: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
    /* min-height: 180px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0.9rem;
  }

  .orange-box {
    border-color: #f97316;
    background: #f97316;
    border-right: none; /* Remove full right border */
  }

  .green-box {
    border-color: #10b981;
    background: #10b981;
    border-left: none; /* Remove full left border */
  }

  .result-percentage {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff; /* White text on colored background */
    margin-bottom: 0.75rem;
    line-height: 1;
  }

  .result-description {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff; /* White text on colored background */
    line-height: 1.4;
    /* margin: 0 0 1rem 0; */
  }

  .result-arrow {
    position: absolute;
    bottom: -20px;
    right: 1rem;
    z-index: 3;
    width: 0;
    height: 0;
  }

  /* Arrow shaft (rectangular part) with white border */
  .result-arrow::before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -14px;
    width: 28px;
    height: 40px;
    border: 2px solid #ffffff;
    border-bottom: none;

    box-sizing: border-box;
    z-index: 2;
  }

  /* White border arrowhead (outer triangle) */

  /* Colored arrowhead (inner triangle) - using the main element */
  .orange-arrow {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 12px solid #f97316;
    bottom: -15px;
    right: -4px;
    z-index: 2;
  }

  .orange-arrow::before {
    background: #f97316;
  }

  .green-arrow {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 12px solid #10b981;
    bottom: -15px;
    right: -4px;
    z-index: 2;
  }

  .green-arrow::before {
    background: #10b981;
  }

  /* Connection Elements */
  .connection-center {
    position: relative;
    /* width: 30px; */
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: center;
    z-index: 1;
    padding-top: 0;
  }

  .connection-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #d1d5db; /* Light gray */
    z-index: 1;
  }

  .connection-square {
    width: 16px;
    height: 16px;
    background: #9ca3af; /* Darker gray */
    border: 2px solid #d1d5db;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  /* Top connection lines from panels */
  .top-connection-line {
    position: absolute;
    top: 0;
    width: 2px;
    height: 50%;
    z-index: 1;
  }

  .bottom-connection-line {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 49%;
    z-index: 1;
  }

  .orange-line {
    right: 0px;
    background: #f97316;
  }

  .green-line {
    left: 0px;
    background: #10b981;
  }

  /* Circles */
  .orange-circle {
    position: absolute;
    bottom: -7px;
    right: 8px;
    width: 14px;
    height: 14px;
    border: 2px solid #f97316;

    border-radius: 50%;
    background: #f97316;
    z-index: 3;
  }

  .orange-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    height: 2px;
    width: 8px;
    /* width: 100%; */
    /* height: 100%; */
    background: #fff;
    /* border-radius: 50%; */
  }

  .green-circle {
    position: absolute;
    top: -8px;
    left: 8px;
    width: 14px;
    height: 14px;
    border: 2px solid #10b981;
    border-radius: 50%;
    background: #10b981;
    z-index: 3;
  }

  .green-circle::after {
    content: '';
    position: absolute;
    top: 45%;
    left: -9px;
    height: 4px;
    width: 8px;
    background: #fff;
  }

  /* Graph Container */
  .graph-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .graph-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .graph-container:hover .graph-click-hint {
    opacity: 1;
  }

  .graph-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .graph-click-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(59, 130, 246, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
  }

  /* ============================================
     GRAPH MODAL/OVERLAY
     ============================================ */






















  /* ============================================
     PACKAGING SECTION
     ============================================ */

  .packaging-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 2rem 0; */
    width: 100%;
  }

  .packaging-section img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* ============================================
     RESPONSIVE STYLES
     ============================================ */

  @media (max-width: 1024px) {
    .product-brand-image {
      max-width: 350px;
      max-height: 180px;
    }

    .result-box {
      min-width: 250px;
    }

    .result-percentage {
      font-size: 3rem;
    }
  }

  @media (max-width: 767px) {
    #section-10 {
      padding: 1rem 0.5rem;
    }

    .page10-container {
      gap: 1.5rem;
    }

    .top-section {
      padding: 1rem 0;
    }

    .main-header {
      font-size: 0.875rem;
    }

    .product-brand-image {
      max-width: 300px;
      max-height: 150px;
    }

    .dosage-info {
      font-size: 1rem;
    }

    .slogan-banner {
      height: 45px;
    }

    .slogan-text {
      font-size: 0.875rem;
    }

    .trial-title {
      font-size: 1rem;
    }

    .results-graph-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .results-boxes {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      max-width: 100%;
    }

    .result-box {
      max-width: 100%;
      width: 100%;
    }

    .graph-container {
      max-width: 100%;
      width: 100%;
    }

    .result-percentage {
      font-size: 2.5rem;
    }

    .result-description {
      font-size: 0.875rem;
    }

    .graph-container {
      padding: 1rem;
    }

    .packaging-section {
      padding: 1rem 0;
    }

    /* Modal responsive styles */






    .graph-click-hint {
      font-size: 0.75rem;
      padding: 0.375rem 0.75rem;
    }
  }
}
