/* ================= ROOT VARIABLES (REUSABLE) ================= */
:root {
  --primary-blue: #3e97ff;
  --primary-purple: #8128f0;
  --text-white: #ffffff;
  --btn-height: 48px;
  --navbar-height: 72px;
  --gradient-main: linear-gradient(135deg, #3e97ff 0%, #8128f0 100%);
  --primary-gradient: linear-gradient(90deg, #4f8cff, #7a3cff);
  --soft-bg-gradient_two: linear-gradient(129deg, #ffffff 22%, #9AAAFF 138%);
  --soft-bg-gradient: linear-gradient(88deg, #ffffff 0%, #E5E6FF 100%);
  --soft-border-color: #b2c7ff;
  --soft-bg-gradient-alt: linear-gradient(90deg, #ffffff 0%, #fafbff 30%, #fde1ff 65%, #f9dcff 100%);
  --text-color: linear-gradient(90deg, #3e97ff 0%, #8128f0 100%);
}

/* ================= FONTS ================= */
@font-face {
  font-family: "PlusJakartaSans-Light";
  src: url("/fonts/PlusJakartaSans-Light.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "PlusJakartaSans-Regular";
  src: url("/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "PlusJakartaSans-Medium";
  src: url("/fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "PlusJakartaSans-SemiBold";
  src: url("/fonts/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "PlusJakartaSans-Bold";
  src: url("/fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-style: normal;
}

/* ================= GLOBAL ================= */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

html,
body {
  width: 100%;
}

/* ================= LOAD ANIMATIONS ================= */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(40px) scale(1);
  }
}

/* Animation utility classes */
.anim-slide-down {
  opacity: 0;
  animation: fadeSlideDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-slide-up {
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-scale-in {
  opacity: 0;
  animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staggered delays */
.anim-delay-1 {
  animation-delay: 0.1s;
}

.anim-delay-2 {
  animation-delay: 0.25s;
}

.anim-delay-3 {
  animation-delay: 0.4s;
}

.anim-delay-4 {
  animation-delay: 0.55s;
}

.anim-delay-5 {
  animation-delay: 0.7s;
}

/* ================= NAVBAR ================= */
.navbar-custom {
  height: var(--navbar-height);
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-inner {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  box-sizing: border-box;
}

/* Sticky state */
.navbar-custom.scrolled {
  background: var(--gradient-main);
}

/* Logo */
.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* Buy button */
.btn-buy {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ================= GRADIENT TEXT (REUSABLE) ================= */
.text-gradient-primary {
  background: linear-gradient(90deg, #3e97ff 0%, #8128f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-blue {
  color: #396CF0;
}

.text-purple {
  color: #7332DE;
}

.text-green {
  color: #006F88;
}

/* ================= GRADIENT BORDER (REUSABLE) ================= */
.border-gradient-primary {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--primary-gradient) border-box;
}

/* ================= PILL (REUSABLE) ================= */
.section-pill {
  width: 12.5rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-family: "PlusJakartaSans-Bold";
  border: 1px solid var(--soft-border-color);
  white-space: nowrap;
  margin-bottom: 2rem;
}

.section-pill-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: "PlusJakartaSans-Bold";
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(158deg, #677BE6 23%, #F9DF08, #754EA6) border-box;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.section-pill-understand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: "PlusJakartaSans-Bold";
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(158deg, #677BE6 23%, #F9DF08, #754EA6) border-box;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.section-pill-reports {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: "PlusJakartaSans-Bold";
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(158deg, #677BE6 23%, #F9DF08, #754EA6) border-box;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

/* ================= BUY NOW BUTTON ================= */
.btn-buy {
  width: 150px;
  height: 43px;
  border-radius: 11px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-buy:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 28px rgba(62, 151, 255, 0.45);
}

.btn-buy:active {
  transform: scale(0.97);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding-top: calc(var(--navbar-height) + 40px);
  overflow: hidden;
}

/* Gradient Ellipse */
.hero-ellipse {
  position: absolute;
  top: -54%;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 140%;
  background: linear-gradient(100deg, #3e97ff 0%, #8128F0 74%);
  border-radius: 50% / 45%;
  z-index: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
}

/* Title */
.hero-title {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.25;
  margin: 16px;
}

/* Subtitle */
.hero-subtitle {
  position: relative;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 35px;
  opacity: 0.9;
  margin-top: 1rem;
  display: inline-block;
}

/* Orange underline */
.hero-subtitle::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: -2rem;
  width: 15rem;
  height: 25px;
  background-image: url(/assets/common/pseudo-underline.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ================= HERO ACTION BUTTONS ================= */
.btn-hero,
.btn-hero-outline {
  width: 200px;
  height: 55px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0;
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  white-space: nowrap;
  font-family: "PlusJakartaSans-SemiBold";
  transition: all 0.3s ease;
}

/* Primary */
.btn-hero {
  background:
    linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
    #ffffff !important;
  -webkit-background-clip: text, padding-box !important;
  background-clip: text, padding-box !important;
  -webkit-text-fill-color: transparent !important;
  color: #3e97ff;
  border: 1px solid transparent;
}

.btn-hero:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 28px rgba(62, 151, 255, 0.45);
}

.btn-hero:active {
  transform: scale(0.97);
}

.btn-hero-outline:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07) !important;
}

.btn-hero-outline:active {
  transform: scale(0.97);
}

/* .btn-hero:hover {
  background: transparent !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff !important;
} */
/* 
.btn-hero:hover img {
  content: url("/assets/icons/hover_arrow.png");
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
} */

/* Outline */
.btn-hero-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

/* .btn-hero-outline:hover {
  background:
    linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
    #ffffff !important;
  -webkit-background-clip: text, padding-box !important;
  background-clip: text, padding-box !important;
  -webkit-text-fill-color: transparent !important;
  border-color: #ffffff;
}

.btn-hero-outline:hover img {
  content: url("/assets/icons/hover_btn_right.png");
} */

/* Disable hover effects on touch / mobile devices */
@media (hover: none),
(max-width: 991.98px) {
  .btn-hero:hover {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero:hover img {
    content: none !important;
  }

  .btn-hero-outline:hover {
    background: transparent !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
  }

  .btn-hero-outline:hover img {
    content: none !important;
  }
}

/* Icons inside buttons */
.btn-hero img,
.btn-hero-outline img {
  width: 25px;
  height: 25px;
  display: block;
}

/* Devices Image */
.hero-devices {
  transform: translateY(40px);
}

.hero-devices img {
  max-width: 100%;
  height: auto;
  margin-bottom: 3rem;
}

/* Desktop image visible by default, mobile image hidden */
.hero-img-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .hero-img-desktop {
    display: none !important;
  }

  .hero-img-mobile {
    display: block !important;
  }
}

/* =================================================================
   SECTION 2 – PRODUCT DEFINITION
   ================================================================= */
.product-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #ffffff;
  position: relative;
}

/* Section Heading */
.product-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #111827;
  margin-bottom: 60px;
  line-height: 1.2;
}

/* ——— Product Card ——— */
.product-card {
  background: var(--soft-bg-gradient);
  border: 1px solid #B2C7FF;
  border-radius: 3.8rem;
  padding: 3rem 0 0 3rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* ——— Tabs Row ——— */
/* ================= PRODUCT TABS (UPDATED UI) ================= */

.product-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-right: 3rem;
  flex-wrap: wrap;
}

.product-tab {
  position: relative;
  height: 3.5rem;
  padding: 0 2rem;
  border-radius: 999px;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 18px;
  background: transparent;
  color: #2d2d2d;
  border: 1.5px dashed #8b5cf6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* Active Tab – Gradient border */
.product-tab--active {
  background:
    linear-gradient(90deg, #3e97ff 0%, #8128f0 100%) padding-box,
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #677BE6, #754EA6) border-box;
  -webkit-background-clip: text, padding-box, border-box;
  background-clip: text, padding-box, border-box;
  -webkit-text-fill-color: transparent;
  border: 1px solid transparent;
  color: transparent;
  font-family: "PlusJakartaSans-Bold";
  box-shadow: 0 4px 16px rgba(117, 78, 166, 0.12);
}

/* Check Icon Bubble on Active Tab */
.product-tab--active .tab-check {
  position: absolute;
  top: -0.8rem;
  right: -0.2rem;
  width: 2.2rem;
  height: 2.2rem;
  background: #7332DE;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 12px;
}

.tick {
  width: 54%;
  height: auto;
}

/* Hide check on inactive tabs */
.product-tab .tab-check {
  display: none;
}

.product-tab--active .tab-check {
  display: flex;
}

/* Hover */
.product-tab:hover {
  transform: translateY(-3px);
}

/* ——— Tab Panels ——— */
.product-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-panel--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children on panel switch */
.product-panel--active .product-feature-item {
  animation: panelFadeIn 0.4s ease both;
}

.product-panel--active .product-feature-item:nth-child(1) {
  animation-delay: 0.08s;
}

.product-panel--active .product-feature-item:nth-child(2) {
  animation-delay: 0.16s;
}

.product-panel--active .product-feature-item:nth-child(3) {
  animation-delay: 0.24s;
}

/* .product-panel--active .product-card-consultation,
.product-panel--active .product-card-prescription,
.product-panel--active .product-card-documents {
  animation: panelSlideIn 0.5s ease 0.15s both;
} */

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes panelSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ——— Card Body (flex: features + image) ——— */
.product-card-body {
  display: flex;
  gap: 0;
  align-items: stretch;
}

/* Card Title (full width above flex row) */
.product-card-title {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 2rem;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 36px;
}

/* ——— Feature List (left side of flex) ——— */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 0 0 42%;
  max-width: 42%;
  margin-top: 0.5rem;
  padding-bottom: 2.5rem;
  padding-right: 1rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Feature Icons */
.feature-icon {
  width: 48px;
  height: 48px;
  /* min-width: 48px; */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.feature-icon--medicine {
  background: #F5F0FF;
}

.feature-icon--clinic {
  background: #E9F3F5;
}

.feature-icon--blue {
  background: #F4F4FF;
}

.feature-icon--purple {
  background: #F4F4FF;
}

.feature-icon--indigo {
  background: #F4F4FF;
}

.feature-text {
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.32rem;
  color: #1f2937;
  line-height: 1.5;
}

/* ——— Tagline (full width below flex row) ——— */
.product-tagline {
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.1rem;
  color: #202020;
  position: relative;
  display: inline-block;
  margin-top: 0;
  padding-bottom: 1.2rem;
}

/* tagline-underline – now using .underline-wrap */

/* ——— Line separator ——— */
.line {
  margin-top: 1.6rem;
}

.line img {
  max-width: 100%;
}

/* ——— Right Column – UI Image (shared base) ——— */
.product-ui-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Panel 1 – Patient Consultation ===== */
.product-card-consultation {
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: STRETCH;
  overflow: hidden;
  padding: 0;
}

.product-ui--consultation {
  width: 115%;
  margin-right: -2rem;
  margin-bottom: -0.5rem;
}

/* ===== Panel 2 – Prescription Creation ===== */
.product-card-prescription {
  position: absolute;
  top: -3rem;
  left: 38rem;
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: STRETCH;
  overflow: hidden;
  padding: 0;
}

.product-ui--prescription {
  width: 100%;
  height: auto;
  margin-bottom: -1.5rem;
  margin-right: -1.8rem;
  margin-top: -5.9rem;
}

iframe.product-ui--prescription {
  aspect-ratio: 1018 / 795;
}

/* consultation panel iframe: prescription class has margin-top:-5.9rem which
   overflows the card's top boundary and gets clipped by overflow:hidden.
   Also, align-items:flex-end on the parent would bottom-align the iframe,
   showing the wrong (lower) portion of the animation.
   - align-self:flex-start → top-aligns the iframe so the correct top content is visible
   - margin-top:0 → prevents any upward overflow clipping */
.product-card-consultation iframe.product-ui-image {
  align-self: flex-start;
  margin-top: 0;
  width: 115%;
  /* matches original consultation img width for natural right bleed */
  margin-right: -2rem;
  /* extends right, clipped at card edge */
}

/* prescription panel iframe: parent already uses align-items:flex-start so no
   alignment override needed. Values mirror the original .product-ui--prescription
   img — explicit here because object-fit/object-position (used in responsive rules)
   are ignored on iframes and higher-specificity is needed to protect the margins. */
.product-card-prescription iframe.product-ui-image {
  align-self: flex-start;
  margin-top: -5.9rem;
  width: 100%;
  margin-right: -1.8rem;
  margin-bottom: -1.5rem;
}

/* ===== Panel 3 – Clinic Documents ===== */
.product-card-documents {
  position: absolute;
  top: 4rem;
  left: 38rem;
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: STRETCH;
  overflow: hidden;
  padding: 0;
}

.product-ui--documents {
  width: 112%;
  margin-bottom: -1.6rem;
  margin-right: -1.8rem;
  margin-top: -3rem;
}

/* =================================================================
   RESPONSIVE – TABLET (768px – 991px)
   ================================================================= */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: calc(var(--navbar-height) + 24px);
  }

  .hero-title {
    font-size: clamp(36px, 5.5vw, 52px);
    margin: 12px 0;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: clamp(22px, 3.5vw, 30px);
    margin: 24px 0 32px;
  }

  .cta-btn {
    padding: 12px 20px !important;
    font-size: 1.1rem !important;
    width: 18rem !important;
    max-width: 90% !important;
    height: 3.1rem;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-subtitle::after {
    width: 180px;
    height: 20px;
    bottom: -28px;
  }

  .hero-ellipse {
    top: -40%;
    width: 200%;
    height: 120%;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 165px;
    height: 46px;
    font-size: 13.5px;
    border-radius: 12px;
  }

  .btn-hero {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .hero-devices {
    transform: translateY(30px);
  }

  /* Section 2 – Tablet */
  .product-section {
    padding: 80px 0 60px;
  }

  .feature-text {
    font-family: "PlusJakartaSans-Medium";
    font-size: 1.32rem;
    color: #1f2937;
    line-height: 1.5;
  }

  .product-card {
    padding: 32px 28px 0 0;
    border-radius: 3rem !important;
  }

  .product-card .product-tabs,
  .product-card .product-card-title,
  .product-card .product-features {
    padding-left: 16px;
    font-size: 2.3rem !important;
  }

  .product-card-body {
    flex-direction: column;
  }

  .product-features {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .product-card-consultation,
  .product-card-prescription,
  .product-card-documents {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0;
    justify-content: flex-start;
    align-items: flex-end;
    overflow: visible;
  }

  .product-ui--consultation,
  .product-ui--prescription,
  .product-ui--documents {
    width: 100%;
    max-width: 100%;
  }

  .product-card-body {
    min-height: auto;
  }

  .clinical-card {
    display: flex;
    align-items: center;
    gap: 2rem !important;
    padding: 2.5rem 2.5rem;
    border-radius: 4rem;
    border: 1px solid #94D4C0;
    background: linear-gradient(223deg, #ffffff 12%, #06A618 400%);
    overflow: hidden;
    position: relative;
  }

  .section-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 16px !important;
    font-weight: 600;
    font-family: "PlusJakartaSans-Bold";
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(158deg, #677BE6 23%, #F9DF08, #754EA6) border-box;
    border: 1px solid transparent;
    margin-bottom: 24px;
  }

  .product-ui-image {
    max-width: 100%;
    width: 100%;
  }

  .product-tagline {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }

  .underline-tagline::after {
    width: 5rem;
    height: 8px;
    bottom: -0.6rem;
  }
}

/* =================================================================
   RESPONSIVE – MOBILE (≤ 767px)
   ================================================================= */
@media (max-width: 767.98px) {
  :root {
    --navbar-height: 60px;
  }

  .navbar-inner {
    padding-inline: 0.75rem;
  }

  .navbar-logo {
    height: 26px;
  }



  .btn-buy {
    width: 120px;
    height: 38px;
    font-size: 15px;
    border-radius: 9px;
  }

  .btn-buy:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 28px rgba(62, 151, 255, 0.45);
  }

  .hero-section {
    padding-top: calc(var(--navbar-height) + 20px);
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-ellipse {
    top: -30%;
    width: 250%;
    height: 110%;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 38px);
    margin: 3px 0;
    line-height: 1.2;
    padding: 0 8px;
  }

  .hero-devices img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 4rem !important;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: clamp(18px, 4.5vw, 24px);
    margin: 5px 0 28px;
    padding: 0 16px;
  }

  .hero-subtitle::after {
    width: 140px;
    height: 16px;
    bottom: -22px;
    right: 5%;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
    margin-top: -1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 200px;
    height: 48px;
    font-size: 14px;
    border-radius: 12px;
  }

  .btn-hero {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .hero-devices {
    transform: translateY(24px);
    margin-top: 20px;
  }

  /* Tighter animation on mobile */
  @keyframes fadeSlideDown {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes scaleIn {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0.97);
    }

    100% {
      opacity: 1;
      transform: translateY(24px) scale(1);
    }
  }

  /* Section 2 – Mobile */
  .product-section {
    padding: 15px 0 48px;
  }

  .product-tab--active .tab-check {
    position: absolute;
    top: -0.3rem;
    right: -0.2rem;
    width: 0.9rem;
    height: 0.9rem;
    background: #7332DE;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
  }

  .tick {
    width: 0.4rem;
    height: 0.3rem;
  }

  .product-heading {
    font-size: clamp(26px, 6vw, 34px);
    margin-bottom: 32px;
  }

  .product-card {
    padding: 24px 20px 0 0;
    border-radius: 2rem;
  }

  .product-card .product-tabs,
  .product-card .product-card-title,
  .product-card .product-features {
    padding-left: 20px;
    font-size: 1.5rem !important;
  }

  .product-tabs {
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: nowrap;
  }

  .product-tab {
    height: 34px;
    padding: 0 5px;
    font-size: 11px;
  }

  .product-card-title {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .product-features {
    gap: 1rem;
    margin-bottom: 0;
    padding-right: 0rem !important;
  }

  .line {
    margin-top: 0rem !important;
  }

  .underline-fast::after {
    content: "";
    position: absolute;
    left: -4.7rem;
    bottom: -0.8rem !important;
    width: 6.5rem;
    height: 10px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .feature-icon img {
    width: 16px;
    height: 16px;
  }

  .section-pill {
    width: 10rem;
    height: 2.5rem;
  }

  .feature-text {
    font-size: 0.8rem;
  }

  .product-tagline {
    font-size: 13px;
    padding-bottom: 1.5rem;
    margin-top: 0;
  }

  .underline-tagline::after {
    width: 4.5rem;
    height: 8px;
    bottom: -0.5rem;
    left: 0;
  }
}

/* =================================================================
   RESPONSIVE – SMALL MOBILE (≤ 400px)
   ================================================================= */
@media (max-width: 400px) {
  .hero-title {
    font-size: 26px;
    padding: 0 4px;
  }

  .hero-subtitle {
    font-size: 17px;
    padding: 0 12px;
  }

  .hero-subtitle::after {
    width: 110px;
    height: 14px;
    bottom: -18px;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 126px;
    height: 37px;
    font-size: 12px;
  }

  .btn-hero {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .btn-hero img,
  .btn-hero-outline img {
    width: 20px;
    height: 20px;
  }

  .section-pill {
    width: 10rem;
    height: 2.5rem;
    font-size: 13px;
  }

  /* Section 2 – Small Mobile */
  .product-card {
    padding: 16px 9px 0 6px;
  }

  .product-tagline {
    font-size: 11px;
    padding-bottom: 1.2rem;
  }

  .underline-tagline::after {
    width: 3.5rem;
    height: 6px;
    bottom: -0.4rem;
  }
}

.container {
  width: 86%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

/* .fast-section {
  padding: 100px 0 80px;
  background: #ffffff;
} */

.pill-wrapper {
  text-align: center;
  margin-bottom: 0;
}

/* ================= PILL ================= */

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  font-family: "PlusJakartaSans-Bold";
  background:
    linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(158deg, #677BE6 23%, #F9DF08, #754EA6) border-box;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

/* ================= HEADING ================= */

.section-title {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.section-desc {
  font-family: "PlusJakartaSans-Regular";
  max-width: 53.1rem;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
  position: relative;
}

/* ================= UNDERLINE – Section 2 Tagline ================= */
.underline-tagline {
  position: relative;
  display: inline;
}

.underline-tagline::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -1.4rem;
  width: 10rem;
  height: 11px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

/* ================= UNDERLINE – Section 3 Fast ================= */
.underline-fast {
  position: relative;
  display: inline;
}

.underline-fast::after {
  content: "";
  position: absolute;
  left: -6.5rem;
  bottom: -1.8rem;
  width: 9.3rem;
  height: 19px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* ================= UNDERLINE – Section 4 OPD ================= */
.underline-opd {
  position: relative;
  display: inline;
}

.underline-opd::after {
  content: "";
  position: absolute;
  left: 1.7rem;
  bottom: -0.9rem;
  width: 9.1rem;
  height: 11px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* ================= CARD ================= */

.fast-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 2rem 3rem 2rem;
  border: 1px solid #D7B2FF;
  border-radius: 3rem;
  background: var(--soft-bg-gradient-alt);
  overflow: hidden;
}

/* ================= LEFT SIDE ================= */

.fast-left {
  flex: 1;
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.6rem;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.32rem;
  color: #1f2937;
}

/* Icon boxes */
.fast-icon {
  width: 48px;
  height: 48px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fast-icon--blue {
  background: #F4F4FF;
}

.fast-icon--green {
  background: #F4F4FF;
}

.fast-icon--purple {
  background: #F4F4FF;
}

/* ================= BUTTON ================= */

.cta-btn {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
  width: 12rem;
  padding: 23px 34px;
  border-radius: 12px;
  background: linear-gradient(90deg, #3e97ff 0%, #8128f0 100%);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn img {
  height: 12px;
}

.cta-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.25);
}

/* ================= RIGHT SIDE ================= */

.fast-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-right img {
  width: 112%;
  margin-top: 0.3rem;
  margin-bottom: -4.5rem;
  margin-left: -10rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .fast-card {
    flex-direction: column;
    text-align: left;
  }

  .fast-left {
    text-align: left;
    align-self: flex-start;
  }

  .feature {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 34px;
  }

}


/* =========================================================
   SECTION – OPD FLOW
   ========================================================= */

.opd-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #ffffff;
}

.opd-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.opd-desc {
  font-family: "PlusJakartaSans-Regular";
  max-width: 52rem;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
  position: relative;
}

/* Main Layout */
.opd-card {
  display: flex;
  align-items: center;
  gap: 10rem;
}

/* Left */
.opd-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.opd-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.32rem;
  color: #1f2937;
}

.opd-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opd-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Icon color variants */
.opd-icon--blue {
  background: #F4F4FF;
}

.opd-icon--amber {
  background: #F4F4FF;
}

.opd-icon--indigo {
  background: #F4F4FF;
}

/* Right */
.opd-right {
  flex: 1;
  overflow: hidden;
  border: 1px solid #B2C7FF;
  border-radius: 3rem;
  background: var(--soft-bg-gradient_two);
  padding: 1rem 0rem 0rem 1rem;
}

.opd-right img {
  width: 100%;
  margin-left: 1rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .opd-card {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .opd-left {
    align-items: flex-start;
    padding-left: 0;
    width: 100%;
  }

  .opd-feature {
    justify-content: flex-start;
  }

}

/* =================================================================
   SCROLL-TRIGGERED ANIMATIONS
   ================================================================= */

/* Base: hidden before reveal */
.reveal {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Revealed state */
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Direction variants */
.reveal-up {
  transform: translateY(50px);
}

.reveal-down {
  transform: translateY(-30px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.92);
}

/* Stagger delays */
.reveal-d1 {
  transition-delay: 0.05s;
}

.reveal-d2 {
  transition-delay: 0.15s;
}

.reveal-d3 {
  transition-delay: 0.25s;
}

.reveal-d4 {
  transition-delay: 0.35s;
}

.reveal-d5 {
  transition-delay: 0.45s;
}

.reveal-d6 {
  transition-delay: 0.55s;
}

.reveal-d7 {
  transition-delay: 0.65s;
}

/* Subtle float animation for images */
@keyframes subtleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* .float-anim {
  animation: subtleFloat 4s ease-in-out infinite;
} */

/* Subtle pulse for icons */
@keyframes subtlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.pulse-anim:hover {
  animation: subtlePulse 0.6s ease-in-out;
}

/* Card hover lift – only after reveal is done */
.card-hover.revealed {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover.revealed:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   SECTION – CLINICAL SUPPORT
   ========================================================= */

.clinical-section {
  padding-bottom: 8rem;
}

.clinical-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 3.5rem;
  border-radius: 28px;
  border: 1px solid #94D4C0;
  background: linear-gradient(223deg, #ffffff 12%, #06A618 400%);
  overflow: hidden;
  position: relative;
}

/* Left */
.clinical-left {
  flex: 1;
  text-align: left;
}

.clinical-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  line-height: 1.25;
  margin-bottom: 30px;
}

/* Underline on "trust." */
.underline-clinical {
  position: relative;
  display: inline;
  color: #079D6E;
}

.underline-clinical::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  bottom: -0.8rem;
  width: 10rem;
  height: 12px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

.clinical-desc {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.clinical-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 23px 35px;
  border-radius: 12px;
  background: #079D6E;
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 0.9rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinical-cta:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

/* Right */
.clinical-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.clinical-hands {
  width: 74%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}

/* Floating badges */


.clinical-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  background: #16a34a;
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
}

.badge-1 {
  top: 4%;
  right: 2%;
}

.badge-2 {
  top: 38%;
  right: -2%;
}

.badge-3 {
  bottom: 10%;
  right: 0%;
  white-space: normal;
  max-width: 200px;
}

/* ================= CLINICAL – RESPONSIVE ================= */

@media (max-width: 991px) {
  .clinical-card {
    flex-direction: column;
    padding: 3rem 3rem 0rem 3rem !important;
    text-align: left;
  }

  .rx-feature {
    font-size: 1.5rem !important;
  }

  .clinical-left {
    text-align: left;
    align-self: flex-start;
  }

  .clinical-desc {
    margin-left: 0;
    margin-right: auto;
  }

  .clinical-right {
    min-height: 280px;
    width: 100%;
  }

  .clinical-hands {
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .clinical-section {
    padding: 0px 0;
  }

  .clinical-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .clinical-card {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.5rem 1.5rem !important;
    border-radius: 28px;
    border: 1px solid #94D4C0;
    background: linear-gradient(223deg, #ffffff 12%, #06A618 400%);
    overflow: hidden;
    position: relative;
  }

  .clinical-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .underline-clinical::after {
    content: "";
    position: absolute;
    left: 0rem !important;
    bottom: -0.8rem !important;
    width: 5.8rem !important;
    height: 10px !important;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-2deg);
  }

  .clinical-badge {
    font-size: 0.72rem;
    padding: 8px 14px;
    border-radius: 10px;
  }

  .badge-3 {
    max-width: 160px;
  }
}

/* =========================================================
   SECTION – RX PRESCRIPTION
   ========================================================= */

/* .rx-section {
  padding: 100px 0;
  background: #ffffff;
} */

.rx-section .section-pill {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #677BE6, #F9DF08, #754EA6) border-box;
  border: 1.5px solid transparent;
}

.rx-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #111827;
  margin-bottom: 20px;
}

.rx-desc {
  font-family: "PlusJakartaSans-Regular";
  max-width: 53rem;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
}

/* Underline on "language options," */
.underline-rx {
  position: relative;
  display: inline;
}

.underline-rx::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 9.8rem;
  height: 1rem;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

/* Cards Row */
.rx-cards {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

/* Individual Card */
.rx-card-one {
  flex: 1;
  border: 1px solid #B2C7FF;
  border-radius: 2.5rem;
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.rx-card-two {
  flex: 1;
  border: 1px solid #D7B2FF;
  border-radius: 2.5rem;
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

/* Card 1 – blue/purple tint from bottom */
.rx-card-one:first-child {
  background: linear-gradient(to bottom, #ffffff 26%, #9AAFFF 170%);
}

/* Card 2 – neutral/warm gray from bottom */
.rx-card-two:last-child {
  background: linear-gradient(to bottom, #ffffff 26%, #E9DBFF 130%);
}

/* Features – stacked vertically */
.rx-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 1.5rem;
}

.rx-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.4rem;
  color: #1f2937;
}

.rx-icon {
  width: 48px;
  height: 48px;
  min-width: 36px;
  border-radius: 10px;
  background: #F4F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rx-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Card image area */
.rx-card-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
  position: relative;
}

.rx-card-image img {
  margin-bottom: -1rem;
  margin-top: -3.7rem;
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Floating label – "10 Indian Language" */
/* .rx-floating-label {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 2;
  padding: 6px 16px;
  border-radius: 8px;
  background: #079D6E;
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(7, 157, 110, 0.3);
} */

/* ================= RX – RESPONSIVE ================= */

@media (max-width: 991px) {
  .rx-cards {
    flex-direction: column;
  }

  .rx-card {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .rx-section {
    padding: 60px 0;
  }

  .rx-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .underline-rx::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.2rem;
    width: 6.7rem;
    height: 1rem;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-3deg);
  }

  .rx-card-one,
  .rx-card-two {
    padding: 1.5rem 1.25rem 0;
    border-radius: 18px;
  }

  .rx-feature {
    font-size: 1.12rem;
  }
}

/* =========================================================
   SECTION – CLINIC DOCUMENTS
   ========================================================= */

.docs-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #ffffff;
}

.docs-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0.5rem 6.5rem 0.5rem 4.5rem;
  border-radius: 28px;
  border: 1px solid #B2C7FF;
  background: linear-gradient(238deg, #f7f9fc 0%, #f0f4fa 40%, #e9efff 100%);
  overflow: hidden;
  position: relative;
}

/* ——— Left ——— */
.docs-left {
  flex: 1;
  text-align: left;
}

.docs-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  line-height: 1.25;
  margin-bottom: 30px;
}

.docs-heading-accent {
  font-family: "PlusJakartaSans-SemiBold";
  background: #396CF0;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.docs-desc {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 35rem;
  margin-bottom: 38px;
}

/* Underline on "auto-generated" */
.underline-docs {
  position: relative;
  display: inline;
}

.underline-docs::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -13px;
  width: 100%;
  height: 10.8px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-2.4deg);
}

/* Chips row */
.docs-chips {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

/* Mobile-only copy is hidden by default on desktop */
.docs-chips--mobile {
  display: none;
}

.docs-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.32rem;
  color: #1f2937;
}

.docs-chip-icon {
  width: 48px;
  height: 48px;
  min-width: 38px;
  border-radius: 10px;
  background: #D8E8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.docs-chip-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ——— Right – Shield ——— */
.docs-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-shield {
  position: relative;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.docs-shield-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-shield-icon img {
  width: 27rem;
  height: auto;
  display: block;
}

/* Badges stacked over shield */

.docs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b8cff, #9b5cfa);
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(107, 140, 255, 0.3);
}

.docs-badge-2 {
  background: linear-gradient(135deg, #7b7cff, #a85cf6);
}

.docs-badge-3 {
  background: linear-gradient(135deg, #8b6cff, #b65cf0);
}

/* ================= DOCS – RESPONSIVE ================= */

@media (max-width: 991px) {
  .docs-card {
    flex-direction: column;
    padding: 2.5rem 2rem;
    text-align: left;
  }

  .docs-heading {
    font-family: "PlusJakartaSans-SemiBold";
    font-size: 3rem;
    /* font-size: clamp(32px, 3.8vw, 48px); */
    color: #202020;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .docs-left {
    text-align: left;
    align-self: flex-start;
  }

  .docs-desc {
    margin-left: 0;
    margin-right: auto;
    font-size: 1.45rem !important;
  }

  .docs-chips {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .docs-chip {
    font-size: 1.45rem !important;
  }

  .docs-shield {
    width: 240px;
  }
}

@media (max-width: 767.98px) {
  .docs-section {
    padding: 0px 0;
  }

  .docs-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .docs-chips {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .docs-chip {
    font-size: 0.75rem;
    gap: 6px;
  }

  .docs-chip-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .docs-shield {
    width: 200px;
  }

  .docs-badge {
    font-size: 0.68rem;
    padding: 8px 16px;
    border-radius: 10px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {

  /* ---- Section headings – scale down for narrower container ---- */
  .hero-title {
    font-size: clamp(40px, 4.2vw, 58px);
  }

  .hero-subtitle {
    font-size: clamp(24px, 2.5vw, 32px);
  }

  .section-title,
  .product-heading,
  .opd-heading,
  .everyone-heading,
  .spec-heading,
  .reports-heading,
  .clinical-heading {
    /* font-size: clamp(36px, 3.2vw, 52px); */
  }

  /* ---- Section descriptions ---- */
  .section-desc,
  .opd-desc,
  .everyone-desc,
  .clinical-desc {
    font-size: 1.2rem;
  }

  /* ---- Product Section ---- */
  .feature-text {
    font-family: "PlusJakartaSans-Medium";
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.5;
  }

  .line {
    margin-top: 1.7rem;
  }

  .product-card {
    padding: 2.5rem 0 0 2.5rem;
  }

  .product-card-title {
    font-size: 1.7rem;
  }

  .product-tab {
    font-size: 15px;
    padding: 0 1.5rem;
    height: 3rem;
  }

  .product-ui--consultation {
    width: 115%;
    margin-right: -2rem;
    margin-bottom: -0.5rem;
  }

  .product-ui--prescription {
    width: 100%;
    margin-right: -0.5rem;
    margin-top: -5rem;
  }

  .product-ui--documents {
    width: 108%;
    margin-right: -0.5rem;
    margin-top: -2rem;
  }

  .product-tagline {
    font-family: "PlusJakartaSans-Medium";
    font-size: 1rem;
    color: #202020;
    position: relative;
    display: inline-block;
    margin-top: 27px;
    padding-bottom: 1.2rem;
  }

  /* ---- Fast Section ---- */
  .feature {
    font-size: 1.15rem;
  }

  .fast-card {
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .fast-right img {
    width: 108%;
    margin-left: -8rem;
  }

  .cta-btn {
    padding: 18px 28px;
    font-size: 15px;
  }

  /* ---- OPD Section ---- */
  .opd-card {
    gap: 6rem;
  }

  .opd-feature {
    font-size: 1.15rem;
  }

  /* ---- Clinical Section ---- */
  .clinical-card {
    padding: 3rem 3rem;
    gap: 2rem;
  }

  /* ---- RX Section ---- */
  .rx-heading {
    font-size: clamp(36px, 3.2vw, 52px);
  }

  /* ---- Docs Section ---- */
  .docs-heading {
    font-size: clamp(36px, 3.2vw, 52px);
  }

  .docs-card {
    padding: 0rem 4rem 0rem 3rem;
  }

  /* ---- Spec Section ---- */
  .spec-subtitle {
    font-size: 1.5rem;
  }

  .spec-ui-img {
    width: 80%;
    margin-top: -7rem;
    margin-left: 5rem;
  }

  /* ---- Reports Section ---- */
  .reports-heading {
    font-size: clamp(36px, 3.2vw, 52px);
  }

  /* ---- Compare Section ---- */
  .compare-heading {
    font-size: clamp(32px, 3vw, 44px);
  }

  .compare-col {
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
  }

  /* ---- Testimonials ---- */
  .testi-content {
    padding: 2.5rem 2.5rem 2rem;
  }

  .testi-title {
    font-size: 1.4rem;
  }

  .testi-quote {
    font-size: 0.95rem;
  }

  /* ---- CTA Banner ---- */
  .cta-banner-left {
    padding: 3rem 0 3rem 3rem;
  }

  .cta-banner-desc {
    font-size: 1.1rem;
  }

  .cta-banner-img {
    height: 19rem;
  }

  /* ---- Privacy Section ---- */
  .privacy-card {
    padding: 3rem 5rem 3rem 3rem;
  }

  /* ---- FAQ ---- */
  .faq-question {
    font-size: 1.05rem;
  }

  /* ---- Everyone Section ---- */
  .everyone-card-img {
    min-height: 220px;
  }
}

/* =========================================================
   SECTION – SPECIALTY
   ========================================================= */

.spec-section {
  padding-bottom: 8rem;
  background: #ffffff;
}

/* section.reports-section {
  padding-top: 8rem;
} */

.spec-section .container {
  text-align: left;
}

.spec-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 16px;
}

.spec-subtitle {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.75rem;
  color: #202020;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

/* Content row: features + image */
.spec-row {
  position: relative;
}

/* Underline on "specialty-specific" */
.underline-spec {
  position: relative;
  display: inline;
  color: #396CF0;
}

.underline-spec::after {
  content: "";
  position: absolute;
  left: 2.4rem;
  bottom: -1.3rem;
  width: 100%;
  height: 0.7rem;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-4deg);
}

/* Feature list */
.spec-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 380px;
}

.spec-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 7px;
  border-radius: 14px;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.4rem;
  width: 29rem;
  color: #202020;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* Active state */
.spec-feature--active {
  font-family: "PlusJakartaSans-Bold";
  background: #F4F4FF;
  color: #2F4FF4;
}



.spec-feat-icon {
  width: 48px;
  height: 48px;
  min-width: 36px;
  border-radius: 10px;
  background: #F4F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.spec-feature--active .spec-feat-icon {
  background: #2F4FF4;
}

.spec-feature--active .spec-feat-icon img {
  filter: brightness(0) invert(1);
}

.spec-feat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* ——— Right ——— */
.spec-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
}

.spec-ui-img {
  width: 98.6%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
  margin-top: -9.5rem;
  margin-left: 0.7rem;
}

/* ================= SPEC – RESPONSIVE ================= */

@media (max-width: 991px) {
  .spec-section .container {
    text-align: left;
  }

  .spec-heading {
    text-align: left;
  }

  .spec-subtitle {
    text-align: left;
  }

  .spec-row {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-right {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2rem;
  }

  .spec-ui-img {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    max-width: 700px;
    margin-inline: auto;
  }

  .spec-features {
    max-width: 100%;
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
    align-self: flex-start;
  }

  .spec-feature {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: none;
  }

  .spec-feature--active {
    background: #F4F4FF;
    color: #2F4FF4;
    width: 21rem;
    border-radius: 0.4rem;
    font-family: "PlusJakartaSans-Bold";
  }

  .spec-feature--active .spec-feat-icon {
    background: #2F4FF4;
  }

  .spec-feature--active .spec-feat-icon img {
    filter: brightness(0) invert(1);
  }

  .spec-feature span {
    font-size: 1.32rem;
    line-height: 1.5;
  }

}

@media (max-width: 767.98px) {
  .spec-section {
    padding: 60px 0;
  }

  .spec-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .spec-subtitle {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 2.4rem;
  }

  .spec-features {
    gap: 1rem;
  }


  .spec-feature {
    font-size: 1rem;
    padding: 7px;
    gap: 16px;
    max-width: none;
    flex: none;
  }

  .spec-feature span {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .spec-feat-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
  }

  .spec-feat-icon img {
    width: 16px;
    height: 16px;
  }

  .spec-ui-img {
    width: 120% !important;
    height: auto !important;
    min-height: 245px !important;
    margin-left: -0.9rem !important;
    margin-top: 1rem !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 76%, #ffffff 103%);
  }

  .spec-right {
    margin-top: 1.5rem;
  }
}

/* =========================================================
   SECTION – REPORTS & INSIGHTS
   ========================================================= */

.reports-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #ffffff;
}

.reports-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  margin-bottom: 20px;
}

.mobile-br {
  display: none;
}

.reports-desc {
  font-family: "PlusJakartaSans-Regular";
  max-width: 49rem;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
  position: relative;
}

/* Underline on "without manual tracking." */
.underline-reports {
  position: relative;
  display: inline;
}

.underline-reports::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  bottom: -1.4rem;
  width: 9.7rem;
  height: 12px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-0.5deg);
}

/* Main Card */
.reports-card {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 12rem);
  padding: 0rem 2rem 4rem 3rem;
  border-radius: 4rem;
  border: 1px solid #DDBDFF;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  transition: background 0.5s ease;
}

/* Bottom + right fade overlay on top of image */
.reports-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 76%, #ffffff 103%);
}

/* Left features above overlay */
.reports-left {
  position: relative;
  z-index: 3;
}

/* ===== Individual card backgrounds per tab ===== */

/* 1 – Appointment Analytics (soft blue) */
.reports-card.reports-fade--appointment {
  background: linear-gradient(405deg, #ffffff 25%, #E7D8FF 200%);
}

/* 2 – Revenue Tracking (warm amber tint) */
.reports-card.reports-fade--revenue {
  background: linear-gradient(405deg, #ffffff 25%, #B7CBFF 200%);
}

/* 3 – Patient Statistics (light purple) */
.reports-card.reports-fade--patient {
  background: linear-gradient(405deg, #ffffff 25%, #DCD8FF 200%);
}

/* 4 – Excel Export (soft green-blue) */
.reports-card.reports-fade--excel {
  background: linear-gradient(405deg, #ffffff 25%, #B7CBFF 200%);
}

/* Left: Feature Tabs */
.reports-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 280px;
}

.reports-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 40px 10px 8px;
  border-radius: 14px;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.4rem;
  color: #202020;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

/* .reports-feature:hover {
  background: rgba(255, 255, 255, 0.6);
} */

/* Active state */
.reports-feature--active {
  font-family: "PlusJakartaSans-Bold";
  background: #F0E8FF;
  color: #7332DE;
}

.reports-feat-icon {
  width: 48px;
  height: 48px;
  min-width: 40px;
  border-radius: 12px;
  background: #F2EBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.reports-feature--active .reports-feat-icon {
  background: #7332DE;
}

.reports-feature--active .reports-feat-icon img {
  filter: brightness(0) invert(1);
}

.reports-feat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* Right: UI Image */
.reports-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.reports-ui-img {
  object-fit: contain;
  position: relative;
  border-radius: 16px;
  transition: opacity 0.4s ease;
}

.reports-ui-mobile--appointment,
.reports-ui-mobile--revenue,
.reports-ui-mobile--patient,
.reports-ui-mobile--excel {
  display: none;
}

/* Per-report image sizes */
.reports-ui--appointment {
  width: 100%;
  max-width: 50rem;
  height: auto;
  top: 4rem;
}

.reports-ui--revenue {
  width: 110%;
  max-width: 55rem;
  height: auto;
  top: 4rem;
}

.reports-ui--patient {
  width: 100%;
  max-width: 48rem;
  height: auto;
  top: 4rem;
}

.reports-ui--excel {
  width: 100%;
  max-width: 46rem;
  height: auto;
  top: 4rem;
}

/* ================= REPORTS – RESPONSIVE ================= */


/* Tablet – stacked layout */
@media (max-width: 991px) {
  .reports-card {
    flex-direction: column;
    padding: 2rem 1.5rem 0;
    text-align: left;
    gap: 1.5rem;
  }

  .reports-left {
    min-width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem;
  }

  .reports-feature {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    width: auto;
    padding: 14px;
    font-size: 1.55rem;
    gap: 16px;
  }

  .reports-feat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .reports-feat-icon img {
    width: 18px;
    height: 18px;
  }

  .reports-right {
    width: 100%;
    margin-top: 0.5rem;
  }

  .reports-ui-img {
    max-width: 100%;
    width: 100%;
    border-radius: 14px 14px 0 0;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .reports-right.show-mobile-ui #reportsUiImg {
    display: none;
  }

  /* Appointment Analytics mobile image */
  .reports-ui-mobile--appointment.mobile-active {
    display: block;
    width: 130%;
    max-width: 130%;
    object-fit: contain;
    margin-top: -2rem;
    margin-bottom: -2.4rem;
    margin-left: -0.5rem;
  }

  /* Revenue Tracking mobile image */
  .reports-ui-mobile--revenue.mobile-active {
    display: block;
    width: 130%;
    max-width: 130%;
    object-fit: contain;
    margin-bottom: -1.5rem;
    margin-top: -2rem;
    margin-left: -0.5rem;
  }

  /* Patient Statistics mobile image */
  .reports-ui-mobile--patient.mobile-active {
    display: block;
    width: 125%;
    max-width: 125%;
    object-fit: contain;
    margin-bottom: -0.6rem;
    margin-top: -2rem;
  }

  /* Excel Export mobile image */
  .reports-ui-mobile--excel.mobile-active {
    display: block;
    width: 94%;
    max-width: 94%;
    object-fit: contain;
    margin-bottom: 0rem;
    margin-top: 2rem;
    margin-left: 1.4rem;
  }

  .reports-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 76%, #ffffff 103%);
  }

  .reports-section {
    padding: 60px 0;
  }

  .reports-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .reports-card {
    padding: 1.5rem 1rem 0;
    border-radius: 20px;
    gap: 1rem;
  }

  .reports-left {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .reports-feature {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: flex-start;
    font-size: 1rem;
    padding: 0;
    gap: 12px;
    width: 15.3rem;
    border-radius: 0.5rem;
  }

  .reports-feature span {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .reports-feat-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
  }

  .reports-feat-icon img {
    width: 14px;
    height: 14px;
  }
}

/* =========================================================
   SECTION – BUILT FOR EVERYONE
   ========================================================= */

/* .everyone-section {
  padding: 100px 0;
  background: #ffffff;
} */

.everyone-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  margin-bottom: 20px;
  line-height: 1.2;
}

.everyone-desc {
  font-family: "PlusJakartaSans-Regular";
  max-width: 48rem;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
}

.underline-everyone {
  position: relative;
  display: inline;
}

.underline-everyone::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  bottom: -1rem;
  width: 8.9rem;
  height: 10px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-0.1deg);
}

/* CTA Buttons */
.everyone-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
}

.everyone-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 12rem;
  padding: 23px 19px;
  border-radius: 12px;
  background: linear-gradient(119deg, #3E97FF 25%, #8128F0 101%);
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.everyone-btn-primary img {
  height: 0.7rem;
}

.everyone-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.25);
  color: #ffffff;
}

.everyone-btn-outline {
  display: inline-flex;
  align-items: center;
  width: 12rem;
  justify-content: center;
  padding: 23px 19px;
  border-radius: 12px;
  border: 1.5px solid #D7B2FF;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(90deg, #3e97ff 0%, #8128f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.everyone-btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #396CF0;
}

/* Cards Row */
.everyone-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Individual Card */
.everyone-card {
  border: 1px solid #BDBDBD;
  border-radius: 2.5rem;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.everyone-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); */
}

/* Card Image */
.everyone-card-img {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  min-height: 260px;
}

.everyone-card-img-one {
  padding: 1.5rem 1.9rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  min-height: 260px;
}

.everyone-card-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

.everyone-card-img-one img {
  width: 119% !important;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  position: relative;
  left: 0.3rem;
}

.everyone-card-img-one img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Card Info */
.everyone-card-info {
  padding: 0.6rem 2.5rem 2.5rem 2.5rem;
  text-align: left;
  flex-shrink: 0;
}

.everyone-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "PlusJakartaSans-Bold";
  font-size: 1.4rem;
  color: #202020;
}

.everyone-card-label img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.everyone-card-desc {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.2rem;
  width: 19.9rem;
  line-height: 1.8;
  color: #3B3B3B;
  margin: 0;
}

/* ================= EVERYONE – RESPONSIVE ================= */

@media (max-width: 991px) {}

@media (max-width: 767.98px) {
  .everyone-section {
    padding: 0px 0;
  }

  .everyone-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .everyone-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .everyone-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* =========================================================
   SECTION 11 – DATA PRIVACY
   ========================================================= */

/* .section.testi-section {
  padding-top: 9rem !important;
} */

.privacy-section {
  padding-top: 8rem;
  background: #ffffff;
}

.privacy-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 10rem 3.5rem 4rem;
  border-radius: 4rem;
  border: 1px solid #B2C7FF;
  background: linear-gradient(134deg, #ffffff 0%, #ffffff 30%, #eef2ff 60%, #a0baff91 100%);
  overflow: hidden;
  position: relative;
}

/* ——— Left ——— */
.privacy-left {
  flex: 1;
  text-align: left;
}

.privacy-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  line-height: 1.25;
  margin-bottom: 30px;
}

.privacy-heading-accent {
  color: #396CF0;
}

.privacy-desc {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
  max-width: 36rem;
  margin-bottom: 45px;
}

/* Underline on "Amazon AWS" */
.underline-privacy {
  position: relative;
  display: inline;
}

.underline-privacy::after {
  content: "";
  position: absolute;
  left: -0.3rem;
  bottom: -0.9rem;
  width: 9rem;
  height: 11px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

/* CTA Button */
.privacy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 23px 19px !important;
  width: 12rem;
  border-radius: 12px;
  background: linear-gradient(119deg, #3E97FF 25%, #8128F0 101%) !important;
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.3rem !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-cta img {
  height: 0.7rem;
}

.privacy-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.25);
  color: #ffffff;
}

/* ——— Right ——— */
.privacy-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-lock-img {
  width: 16.5rem;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= PRIVACY – RESPONSIVE ================= */

@media (max-width: 991px) {
  .privacy-card {
    flex-direction: column;
    padding: 2.5rem 2rem;
    text-align: left;
  }

  .privacy-left {
    text-align: left;
  }

  .privacy-desc {
    margin-left: 0;
    margin-right: auto;
  }

  .privacy-lock-img {
    width: 18rem;
  }
}

@media (max-width: 767.98px) {
  .privacy-section {
    padding: 60px 0;
  }

  .privacy-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .privacy-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .privacy-lock-img {
    width: 15rem;
  }
}

/* =========================================================
   SECTION 12 – TESTIMONIALS (Slide Carousel)
   ========================================================= */

.testi-section {
  padding-top: 8rem;
  background: #ffffff;
}

.testi-carousel {
  position: relative;
  overflow: hidden;
}

/* ——— Card States ——— */
.testi-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 30px 30px 0px 30px;
  border-radius: 4rem;
  border: 1px solid #B2C7FF;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Active card – visible */
.testi-card--active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Exiting card – slides out left */
.testi-card--exit {
  opacity: 0;
  transform: translateX(-60px);
  pointer-events: none;
}

/* ——— Image Wrapper ——— */
.testi-img-wrap {
  flex: 0 0 34%;
  width: 34%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  border-radius: 1rem;
}

.testi-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.testi-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 95%;
  object-fit: inherit;
  object-position: top center;
  z-index: 1;
}

/* ——— Content ——— */
.testi-content {
  flex: 1;
  text-align: left;
  min-width: 0;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testi-quote-img {
  width: 22px;
  height: 18px;
  padding: 13px;
  background: #EEF0F7;
  border-radius: 14px;
  display: block;
  margin-bottom: 1rem;
  margin-top: -2rem;
  box-sizing: content-box;
}

.testi-quote-icon {
  font-family: "PlusJakartaSans-Bold";
  font-size: 2.2rem;
  line-height: 0;
  color: #396CF0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #EEF0F7;
  border-radius: 14px;
  margin-bottom: 1rem;
  padding-top: 0.35rem;
}

.testi-title {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.85rem;
  color: #202020;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.testi-highlight {
  color: #396CF0;
}

.testi-quote {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.85;
  color: #4b5563;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.testi-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-name {
  font-family: "PlusJakartaSans-Bold";
  font-size: 1.25rem;
  color: #202020;
}

.testi-role {
  font-family: "PlusJakartaSans-Regular";
  font-size: 0.9rem;
  color: #6b7280;
}

/* ——— Indicators (inside card) ——— */
.testi-indicators {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 2rem;
}

.testi-dot {
  width: 32px;
  height: 5px;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  transition: width 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testi-dot--active {
  width: 52px;
  background: #84a1eb;
}

/* Fill animation on active dot */
.testi-dot--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #1d4ed8;
  border-radius: 999px;
  animation: dotFill 4s linear forwards;
}

@keyframes dotFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* ================= TESTIMONIALS – RESPONSIVE ================= */

@media (max-width: 1199px) {
  .testi-content {
    padding: 2.5rem 2.5rem 2rem;
  }

  .testi-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 991px) {
  .testi-card {
    flex-direction: column;
    border-radius: 1.5rem;
  }

  .testi-img-wrap {
    flex: none;
    width: 100%;
    height: 300px;
    min-height: auto;
  }

  .testi-content {
    text-align: left;
    padding: 2rem 2rem;
  }

  .testi-author {
    align-items: flex-start;
  }

  .testi-indicators {
    justify-content: flex-start;
  }

  .testi-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .testi-section {
    padding: 2.5rem 0;
  }

  .testi-card {
    border-radius: 1.25rem;
  }

  .testi-img-wrap {
    height: 260px;
  }

  .testi-content {
    padding: 1.5rem 1.25rem;
  }

  .testi-title {
    font-size: 1.1rem;
  }

  .testi-quote-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .testi-quote {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .testi-section {
    padding: 2rem 0;
  }

  .testi-img-wrap {
    height: 220px;
  }

  .testi-content {
    padding: 1.25rem 1rem;
  }

  .testi-title {
    font-size: 1rem;
  }

  .testi-quote {
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .testi-indicators {
    margin-top: 1.25rem;
  }
}

/* =========================================================
   SECTION 13 – BEFORE & AFTER COMPARISON
   ========================================================= */

.compare-section {
  padding-top: 8rem;
  background: #ffffff;
}

.compare-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  margin-bottom: 20px;
  line-height: 1.2;
}

.compare-desc {
  font-family: "PlusJakartaSans-Regular";
  max-width: 49rem;
  margin: 0 auto 60px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
}

.underline-compare {
  position: relative;
  display: inline;
}

.underline-compare::after {
  content: "";
  position: absolute;
  left: -0.2rem;
  bottom: -1.1rem;
  width: 9.1rem;
  height: 10px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

/* ——— Table ——— */
.compare-table {
  margin: 0 auto;
  border: 1px solid #DDBDFF;
  border-radius: 2.65rem;
  overflow: hidden;
  background: #ffffff;
}

/* Row */
.compare-row {
  display: flex;
}

.compare-row:not(:last-child) {
  border-bottom: 1px solid #DDBDFF;
}

/* Alternate row tint */
.compare-row:nth-child(even):not(.compare-row--header) {
  background: #F5F6FA;
}

/* Header row */
.compare-row--header {
  border-bottom: 1px solid #e5e7eb;
}

.compare-row--header .compare-col--before {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.5rem;
  color: #202020;
  padding: 2.45rem 1rem 2.45rem 3rem;
}

.compare-row--header .compare-col--after {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.5rem;
  color: #7332DE;
  padding: 2.45rem 1rem 2.45rem 3rem;
}

/* Columns */
.compare-col {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 2.5rem 3rem;
  font-family: "PlusJakartaSans-Medium";
  font-size: 1.15rem;
}

.compare-col--before {
  color: #202020;
  border-right: 1px solid #DDBDFF;
  padding: 2.5rem 3rem;
}

.compare-col--after {
  color: #7332DE;
}

/* Icons */
.compare-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.compare-icon--x {
  background: #3B3B3B;
}

.compare-icon--check {
  background: #7332DE;
}

.right-wrong {
  width: 0.75rem;
}

/* ================= COMPARE – RESPONSIVE ================= */

@media (max-width: 767.98px) {
  .compare-section {
    padding: 50px 0;
  }

  .compare-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .compare-row {
    align-items: stretch;
  }

  .compare-col {
    font-size: 1rem !important;
    padding: 1.5rem 0.65rem !important;
    gap: 13px !important;
    align-items: center;
  }

  .p_tag {
    text-align: left !important;
    margin: 0 !important;
  }

  .compare-row--header .compare-col--before,
  .compare-row--header .compare-col--after {
    padding: 1.2rem 0.6rem;
    font-size: 0.95rem;
  }

  .compare-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    font-size: 8px;
  }

  .compare-table {
    border-radius: 1rem;
  }
}

/* =========================================================
   SECTION 14 – CTA BANNER
   ========================================================= */

/* .cta-banner-section {
  padding: 80px 0;
  background: #ffffff;
} */

.cta-banner-card {
  display: flex;
  align-items: center;
  border: 1px solid #B2C7FF;
  border-radius: 3.3rem;
  background: linear-gradient(135deg, #f8f9fc 0%, #f9fbff 40%, #e4ebff 70%, #e3eafb 100%);
  overflow: hidden;
  position: relative;
}

.cta-banner-section {
  padding-top: 8rem !important;
}

/* ——— Left ——— */
.cta-banner-left {
  flex: 1;
  padding: 4rem 0 4rem 4rem;
  text-align: left;
}

.cta-banner-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  line-height: 1.25;
  margin-bottom: 20px;
}

.cta-banner-desc {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.4rem;
  line-height: 1.6;
  color: #3B3B3B;
  max-width: 42rem;
  margin-bottom: 40px;
}


/* CTA Button */
.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  width: 21rem;
  height: 77px;
  border-radius: 12px;
  background: linear-gradient(119deg, #3E97FF 25%, #8128F0 101%) !important;
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(59, 130, 246, 0.25);
  color: #ffffff;
}

/* ——— Right ——— */
.cta-banner-right {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
}

.cta-banner-img {
  height: 24rem;
  max-width: 100%;
  margin-right: 2rem;
  display: block;
  object-fit: contain;
  object-position: bottom right;
}

/* ================= CTA BANNER – RESPONSIVE ================= */

@media (max-width: 991px) {
  .cta-banner-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-left {
    padding: 3rem 2rem 2rem;
    text-align: center;
  }

  .cta-banner-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-banner-right {
    align-self: center;
    justify-content: center;
  }

  .cta-banner-img {
    height: 18rem;
    margin-inline: auto;
    object-position: bottom center;
  }
}

@media (max-width: 767.98px) {
  .cta-banner-section {
    padding: 20px 0;
  }

  .cta-banner-card {
    border-radius: 1.25rem;
  }

  .cta-banner-left {
    padding: 2rem 1.25rem 1.5rem;
  }

  .cta-banner-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .cta-banner-right {
    align-self: center;
    justify-content: center;
  }

  .cta-banner-img {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    margin-right: 0 !important;
    display: block !important;
    object-position: bottom center;
  }

  .cta-banner-btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
}

/* =========================================================
   SECTION 15 – FAQ
   ========================================================= */

.faq-section {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: #ffffff;
}

.faq-layout {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
}

/* ——— Left ——— */
.faq-left {
  flex: 0 0 38%;
  text-align: left;
}

.faq-heading {
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 3.5rem;
  color: #202020;
  line-height: 1.25;
  margin-bottom: 20px;
}

.faq-heading-accent {
  color: #7332DE;
}

.faq-desc {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3B3B3B;
  width: 36rem;
}

.underline-faq {
  position: relative;
  display: inline;
}

.underline-faq::after {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: -1.7rem;
  width: 10.9rem;
  height: 15px;
  background-image: url(./assets/section-3/yellow_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(-3deg);
}

/* ——— Right – Accordion ——— */
.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #F5F6FA;
  border: 1px solid #D5D2D2;
  border-radius: 1.2rem;
  overflow: hidden;
  width: 37rem;
}

.faq-item--open {
  background: #F5F6FA;
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 2.2rem;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.2rem;
  color: #202020;
  border-radius: 14px;
}

.faq-chevron {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(99deg, #3E97FF, #8128F0);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.faq-item--open .faq-chevron {
  transform: rotate(180deg);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item--open .faq-answer {
  background: #F5F6FA;
  max-height: 200px;
  padding: 0 1rem 1.25rem;
}

.faq-answer p {
  font-family: "PlusJakartaSans-Regular";
  font-size: 1.1rem;
  line-height: 1.7;
  color: #636363;
  max-width: 30rem;
  margin: 0;
  text-align: left;
  position: relative;
  left: 1.3rem;
}

/* ================= FAQ – RESPONSIVE ================= */

@media (max-width: 991px) {
  .faq-layout {
    flex-direction: column;
    gap: 0rem;
  }

  .faq-left {
    flex: none;
    text-align: left;
  }

  .faq-desc {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-chevron {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.7rem;
  }
}

/* Responsive: reduce animation distance on mobile */
@media (max-width: 767.98px) {
  .reveal-up {
    transform: translateY(30px);
  }

  .reveal-left {
    transform: translateX(-30px);
  }

  .clinical-hands {
    width: 80%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
  }

  .reveal-left {
    transform: translateX(-30px);
  }
}

.privacy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinical-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 23px 24px;
  width: 12rem;
  border-radius: 12px;
  background: #079D6E;
  color: #ffffff;
  font-family: "PlusJakartaSans-SemiBold";
  font-size: 1.3rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinical-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 3.5rem 3.5rem;
  border-radius: 4rem;
  border: 1px solid #94D4C0;
  background: linear-gradient(223deg, #ffffff 12%, #06A618 400%);
  overflow: hidden;
  position: relative;
}

.reveal-right {
  transform: translateX(30px);
}

.docs-card {
  display: flex;
  align-items: center;
  gap: 0rem !important;
  padding: 0rem 6.5rem 0rem 3.5rem;
  border-radius: 4rem;
  border: 1px solid #B2C7FF;
  background: linear-gradient(215deg, #ffffff 3%, #B0D0FC4A 100%);
  overflow: hidden;
  position: relative;
}

.reveal-scale {
  transform: scale(0.95);
}


.main-content {
  flex: 1;
}

/* Footer Styles */
.doca-footer {
  /* background: linear-gradient(175deg, #3E97FF 0%, #8128F0 74%); */
  background: var(--gradient-main);
  padding: 20px 0;
  color: white;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo Section */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
}

.doca-logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Makes logo white if it's dark */
}

.indigital-logo {
  height: 35px;
  width: auto;
  opacity: 0.9;
}

/* Navigation Links */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-link {
  font-family: "PlusJakartaSans-Medium";
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.nav-divider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Copyright */
.footer-copyright {
  font-family: "PlusJakartaSans-Medium";
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-link {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
  }

  .footer-nav {
    border-bottom: 1px solid #aeaeae;
    padding-bottom: 10px;
    width: 21rem;
  }

  .footer-copyright {
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-link {
    padding: 0 8px;
    font-size: 12px;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .footer-copyright {
    font-size: 11.5px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    text-align: center;
  }

  .doca-logo {
    height: 25px;
  }

  .indigital-logo {
    height: 30px;
  }
}

/* =================================================================
   COMPREHENSIVE MOBILE & TABLET FIXES
   (Only affects ≤991px — desktop unchanged)
   ================================================================= */

/* ===== TABLET (768px – 991px) ===== */
@media (max-width: 991.98px) {

  /* OPD – reduce massive 10rem gap */
  .opd-card {
    gap: 3rem;
  }

  .rx-card-image img {
    margin-bottom: -1.2rem;
    width: 100%;
    display: block;
    border-radius: 12px 12px 0 0;
  }


  /* Fast section – remove negative margin on image */
  .fast-right img {
    margin-left: 5.5rem;
    margin-top: 1rem;
  }

  /* Reports – reduce huge top padding */
  section.reports-section {
    padding-top: 6rem;
  }

  /* CTA banner description – hide <br> */
  .cta-banner-desc br {
    display: none;
  }

  /* Product card title – hide <br> */
  .product-card-title br {
    display: none;
  }

  /* Clinical heading – hide <br> */
  .clinical-heading br {
    display: none;
  }

  /* Product card panels – tablet: flush left & bottom */
  .product-card-consultation,
  .product-card-prescription,
  .product-card-documents {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0;
    justify-content: flex-start;
    align-items: flex-end;
    overflow: visible;
  }

  .product-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-right: 3rem;
    flex-wrap: nowrap;
  }

  .product-tab {
    height: 3rem;
    padding: 0 1rem;
    font-size: 18px;
  }

  .product-ui--consultation,
  .product-ui--prescription,
  .product-ui--documents {
    width: 80%;
    margin-top: 0rem;
    margin-left: 10.6rem;
  }

  /* Everyone card desc – allow full width */
  .everyone-card-desc {
    width: 100%;
  }

  /* Everyone card image – auto height */
  .everyone-card-img {
    min-height: auto;
  }

  /* Docs card – reduce padding */
  .docs-card {
    padding: 2.5rem 2.1rem 0rem 2.5rem;
  }

  .everyone-btn-primary {
    font-size: 1.4rem !important;
    padding: 7px 21px !important;
  }

  .everyone-btn-outline {
    font-size: 1.4rem !important;
  }

  /* Privacy card – reduce padding */
  .privacy-card {
    padding: 2.5rem 2rem;
  }

  /* CTA banner card – round less */
  .cta-banner-card {
    border-radius: 2rem;
  }

  /* Compare table – smaller border radius */
  .compare-table {
    border-radius: 1.5rem;
  }
}

/* ===== MOBILE (≤ 767px) ===== */
@media (max-width: 767.98px) {

  /* Global – prevent horizontal overflow */
  html,
  body {
    overflow-x: hidden;
  }

  /* Product card panels – shared mobile reset */
  .product-card-consultation,
  .product-card-prescription,
  .product-card-documents {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0;
    justify-content: flex-start;
    align-items: flex-end;
    overflow: visible;
  }

  .product-ui-image {
    max-width: 100%;
    display: block;
  }

  .product-ui--consultation,
  .product-ui--prescription,
  .product-ui--documents {
    width: 22rem;
    min-width: 135%;
    height: auto;
    min-height: 13rem;
    margin-left: 0.8rem;
    margin-bottom: -0.7rem;
  }

  /* Product card title – remove forced <br> */
  .product-card-title br {
    display: none;
  }

  /* Fast section – proper spacing */
  .fast-section {
    padding: 0px 0;
  }

  .fast-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    gap: 1rem;
  }

  .fast-left {
    text-align: left;
    align-self: flex-start;
  }

  .feature {
    justify-content: flex-start;
    font-size: 0.9rem;
    margin-bottom: 18px;
    gap: 16px;
  }

  .fast-icon {
    width: 42px;
    height: 42px;
    min-width: 38px;
    border-radius: 10px;
  }

  .fast-icon img {
    width: 20px;
    height: 20px;
  }

  .fast-right img {
    margin-left: 0.5rem;
    margin-bottom: -1.7rem;
    margin-top: 0;
    width: calc(100% + 2.9rem);
  }

  .cta-btn {
    padding: 12px 13px;
    font-size: 0.82rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  /* OPD section – mobile spacing */
  .opd-section {
    padding: 60px 0;
  }

  .opd-card {
    gap: 2rem;
  }

  .opd-heading {
    font-size: 1.4rem;
  }

  .opd-desc {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }

  .underline-opd::after {
    content: "";
    position: absolute;
    left: 1.2rem !important;
    bottom: -0.8rem !important;
    width: 6.2rem !important;
    height: 10px !important;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .opd-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .opd-feature {
    justify-content: flex-start;
    font-size: 0.92rem;
    gap: 16px;
  }

  .opd-icon {
    width: 25px;
    height: 25px;
    border-radius: 7px !important;
  }

  .opd-icon img {
    width: 16px;
    height: 16px;
  }

  .opd-right {
    border-radius: 20px;
  }

  /* Clinical heading – hide <br> on mobile */
  .clinical-heading br {
    display: none;
  }

  /* RX section */
  .rx-desc {
    font-size: 0.9rem;
  }

  /* Clinical section – mobile */
  .clinical-desc {
    font-size: 1.1rem !important;
  }

  /* Docs section – mobile */
  .docs-heading {
    font-size: clamp(26px, 6vw, 34px);
  }

  .docs-heading br {
    display: none;
  }

  .docs-desc {
    font-size: 0.85rem;
  }

  /* Docs shield image – smaller */
  .docs-shield-icon img {
    width: 20rem;
  }

  /* Reports section – mobile top padding */
  section.reports-section {
    padding-top: 0rem;
  }

  .reports-desc {
    font-size: 0.9rem;
  }

  /* Everyone section */
  .everyone-card-desc {
    width: 100%;
  }

  .everyone-card-img {
    min-height: auto;
    padding: 1rem 1rem 0;
  }

  .everyone-card-info {
    padding: 1rem;
  }

  .everyone-card-label {
    font-size: 0.95rem;
  }

  .everyone-card-desc {
    font-size: 0.82rem;
  }

  .underline-everyone {
    display: inline-block;
  }

  .underline-everyone::after {
    content: "";
    position: absolute;
    left: 0.3rem;
    bottom: -0.7rem;
    width: 54.4%;
    height: 10px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    transform: rotate(-0.1deg);
  }

  .everyone-desc {
    font-size: 0.9rem;
    width: 100% !important;
    text-align: center !important;
  }

  .everyone-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    font-family: "PlusJakartaSans-SemiBold";
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .everyone-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 31px;
    border-radius: 12px;
    border: 1.5px solid #D7B2FF;
    font-family: "PlusJakartaSans-SemiBold";
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(90deg, #3e97ff 0%, #8128f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  /* Privacy section – heading hide <br> */
  .privacy-heading br {
    display: none;
  }

  .privacy-desc {
    font-size: 0.8rem;
  }

  .underline-privacy::after {
    content: "";
    position: absolute;
    left: -0.3rem;
    bottom: -0.7rem;
    width: 5.8rem;
    height: 10px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-3deg);
  }

  /* Compare section */
  .compare-desc {
    font-size: 0.9rem;
  }

  /* CTA banner */
  .cta-banner-desc {
    font-size: 0.95rem;
  }

  .cta-banner-desc br {
    display: none;
  }

  .cta-banner-heading br {
    display: none;
  }

  /* FAQ – heading hide <br> */
  .faq-heading br {
    display: none;
  }

  .faq-desc {
    font-size: 0.9rem;
  }

  .faq-answer p {
    font-size: 0.82rem;
  }

  .underline-faq::after {
    content: "";
    position: absolute;
    left: -1.1rem;
    bottom: -0.8rem;
    width: 5.9rem;
    height: 10px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-3deg);
  }

  .faq-item {
    border-radius: 1rem;
  }

  /* Footer – reduce padding */
  .footer-container {
    padding: 0 16px;
  }

  /* Pill – smaller on mobile */
  .section-pill {
    font-size: 12px;
    padding: 8px 20px;
    margin-bottom: 30px;
  }

  /* All images should not exceed their containers */
  img {
    height: auto;
  }

  /* CTA buttons – fluid width on mobile */
  .clinical-cta,
  .privacy-cta {
    width: auto;
  }

  .cta-banner-btn {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .mobile-br {
    display: block;
  }

  /* Reports images – mobile */
  .reports-ui--appointment {
    width: 125% !important;
    max-width: 24rem;
    height: auto !important;
    min-height: 290px !important;
    margin-top: -1rem !important;
    margin-bottom: -1.8rem !important;
    top: 0;
    margin-right: 0;
  }

  .reports-ui--revenue {
    width: 125% !important;
    max-width: 26rem;
    height: auto !important;
    min-height: 290px !important;
    margin-top: -1.3rem !important;
    margin-bottom: -1.8rem !important;
    top: 0;
    margin-right: 0;
  }

  .reports-ui--patient {
    width: 125% !important;
    max-width: 24rem;
    height: auto !important;
    min-height: 290px !important;
    margin-top: -1.3rem !important;
    margin-bottom: -1.8rem !important;
    top: 0;
    margin-right: 0;
  }

  .reports-ui--excel {
    width: 125% !important;
    max-width: 24rem;
    height: auto !important;
    min-height: 290px !important;
    margin-top: 0.5rem !important;
    margin-bottom: -1.8rem !important;
    top: 0;
    margin-right: 0;
  }

  /* Fixed widths – fluid on mobile */
  .faq-desc,
  .faq-item {
    width: 100%;
    max-width: 100%;
  }

  .faq-answer p {
    max-width: 100%;
  }


}

/* ===== TABLET ONLY FIXES (768px – 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {

  /* Headings – tablet scale */


  .section-title,
  .product-heading,
  .opd-heading,
  .rx-heading,
  .docs-heading,
  .everyone-heading,
  .spec-heading,
  .reports-heading,
  .clinical-heading,
  .compare-heading,
  .faq-heading,
  .cta-banner-heading,
  .privacy-heading {
    font-size: 5rem !important;
  }

  /* Descriptions – tablet scale */
  .section-desc,
  .opd-desc,
  .everyone-desc,
  .clinical-desc,
  .rx-desc,
  .docs-desc,
  .reports-desc,
  .compare-desc,
  .privacy-desc {
    font-size: 1.15rem;
  }

  /* Fixed widths – make fluid */
  .spec-feature {
    width: 100%;
    max-width: 100%;
  }

  .faq-desc {
    width: 100%;
    max-width: 100%;
  }

  .faq-item {
    width: 100%;
    max-width: 100%;
  }

  .faq-answer p {
    max-width: 100%;
  }

  .everyone-card-desc {
    width: 100%;
  }

  /* Reports images – fluid */
  .reports-ui--appointment,
  .reports-ui--revenue,
  .reports-ui--patient,
  .reports-ui--excel {
    width: 100%;
    height: auto;
    top: 2rem;
    margin-right: 0;
  }

  /* CTA buttons – fluid */
  .cta-banner-btn {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .everyone-btn-primary,
  .everyone-btn-outline {
    width: auto;
  }

  .clinical-cta,
  .privacy-cta {
    width: auto;
  }

  /* Cards – reduce extreme padding */
  .privacy-card {
    padding: 2.5rem 2rem;
    border-radius: 2rem;
  }

  .compare-table {
    border-radius: 1.5rem;
  }

  .compare-col {
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===== SMALL MOBILE (≤ 400px) ===== */
@media (max-width: 400px) {

  /* Fast section */
  .fast-card {
    padding: 1.2rem;
  }

  .feature {
    font-size: 1.02rem;
    margin-bottom: 14px;
  }

  .fast-right img {
    margin-left: 1rem;
    margin-bottom: -1.5rem;
    width: calc(100% + 2rem);
  }

  /* Product tabs – ensure they fit */
  .product-tabs {
    gap: 6px;
  }

  .product-tab {
    height: 28px;
    padding: 0 8px;
    font-size: 9px;
  }

  /* Clinical section */
  .clinical-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  /* Docs */
  .docs-card {
    padding: 1.5rem 1rem 0rem 1rem;
    border-radius: 16px;
  }

  .docs-shield-icon img {
    width: 17rem;
  }

  /* Privacy */
  .privacy-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .privacy-lock-img {
    width: 10rem;
  }

  /* Reports card */
  .reports-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  /* CTA banner */
  .cta-banner-card {
    border-radius: 2rem;
  }

  .cta-banner-left {
    padding: 1.5rem 1rem 1rem;
  }

  .cta-banner-heading {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .cta-banner-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .cta-banner-img {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    margin-right: 0 !important;
    display: block !important;
  }

  /* Testimonials */
  .testi-img-wrap {
    height: 11rem;
  }

  .testi-content {
    padding: 1.2rem 1rem;
  }

  .testi-title {
    font-size: 0.9rem;
  }

  .testi-quote {
    font-size: 0.78rem;
  }

  .testi-quote-icon {
    font-size: 2rem;
  }

  /* Compare */
  .compare-row {
    align-items: stretch;
  }

  .compare-col {
    font-size: 1rem !important;
    padding: 1.5rem 0.65rem !important;
    gap: 10px !important;
    align-items: baseline;
  }

  .compare-row--header .compare-col--before,
  .compare-row--header .compare-col--after {
    padding: 1.7rem 0.6rem;
    font-size: 0.88rem;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .compare-icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }

  .right-wrong {
    width: 0.4rem;
  }

  /* FAQ */
  .faq-question {
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .faq-chevron {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .faq-answer p {
    font-size: 0.82rem;
    text-align: start;
  }

  /* Everyone cards */
  .everyone-cards {
    max-width: 100%;
  }
}

/* =================================================================
   LARGE DESKTOP (≥ 1600px) – Lock to same layout as laptop (1320px)
   ================================================================= */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }

  .footer-container {
    max-width: 1320px;
  }
}

/* =================================================================
   MOBILE & TABLET POLISH – Consistent gaps, fonts, images, buttons
   Only affects ≤991px. Desktop is completely untouched.
   ================================================================= */

/* ---------- TABLET (768px – 991px) ---------- */
@media (min-width: 768px) and (max-width: 991.98px) {

  /* --- Uniform section spacing (60px top & bottom) --- */
  .hero-section {
    padding-bottom: 0;
  }

  .product-section {
    padding: 3rem 0;
  }

  .fast-section {
    padding: 3rem 0;
  }

  .opd-section {
    padding: 3rem 0;
  }

  .clinical-section {
    padding: 3rem 0;
  }

  .rx-section {
    padding: 3rem 0;
  }

  .docs-section {
    padding: 3rem 0;
  }

  .spec-section {
    padding: 3rem 0;
  }

  .reports-section {
    padding: 3rem 0 !important;
  }

  .everyone-section {
    padding: 3rem 0;
  }

  .privacy-section {
    padding: 3rem 0;
  }

  .testi-section {
    padding: 3rem 0;
  }

  .compare-section {
    padding: 3rem 0;
  }

  .cta-banner-section {
    padding: 3rem 0 !important;
  }

  .faq-section {
    padding: 3rem 0;
  }

  /* --- Container tighten --- */
  .container {
    width: 90%;
    padding: 0 16px;
  }

  /* --- Headings: consistent tablet scale --- */
  .hero-title {
    font-size: clamp(34px, 5vw, 48px);
  }

  .hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
  }

  .section-title,
  .product-heading,
  .opd-heading,
  .rx-heading,
  .docs-heading,
  .everyone-heading,
  .spec-heading,
  .reports-heading,
  .clinical-heading,
  .compare-heading,
  .faq-heading,
  .cta-banner-heading,
  .privacy-heading {
    font-size: 3rem !important;
  }

  /* --- Descriptions: consistent tablet scale --- */
  .section-desc,
  .opd-desc,
  .rx-desc,
  .everyone-desc,
  .clinical-desc,
  .docs-desc,
  .reports-desc,
  .compare-desc,
  .privacy-desc,
  .cta-banner-desc,
  .faq-desc {
    font-size: 1.1rem !important;
    line-height: 1.7;
  }

  /* --- Feature text --- */
  .feature-text,
  .feature span,
  .opd-feature span,
  .spec-feature span,
  .reports-feature span,
  .rx-feature span,
  .docs-chip span {
    font-size: 1.05rem !important;
  }

  /* --- Buttons: consistent tablet sizing --- */
  .btn-hero,
  .btn-hero-outline {
    width: 12rem;
    height: 3.5rem;
    font-size: 1.2rem;
    border-radius: 1rem;
  }

  .btn-hero {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .cta-btn,
  .clinical-cta,
  .privacy-cta,
  .everyone-btn-primary,
  .everyone-btn-outline {
    font-size: 1rem !important;
    padding: 14px 24px !important;
    width: auto !important;
  }

  .cta-banner-btn {
    font-size: 1rem;
    padding: 14px 28px;
    width: auto;
    height: auto;
  }

  /* --- Images: constrain to container --- */
  .hero-devices img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .fast-right img {
    width: 100%;
    margin-left: 0;
    margin-bottom: -2rem;
  }

  .opd-right img {
    width: 100%;
    margin-left: 0;
  }

  .clinical-hands {
    width: 80%;
    max-width: 280px;
  }

  .docs-shield-icon img {
    width: 22rem;
  }

  .privacy-lock-img {
    width: 16rem;
  }

  .cta-banner-img {
    height: 16rem;
  }

  /* --- Everyone cards: 2-column grid on tablet --- */
  .everyone-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .everyone-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .everyone-card-img,
  .everyone-card-img-one {
    min-height: 200px;
  }

  /* --- Product card UI images on tablet --- */
  .product-ui--consultation,
  .product-ui--prescription,
  .product-ui--documents {
    width: 90% !important;
    margin-left: 6.9rem !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: -1.1rem !important;
  }

  .section-pill {
    width: 14.5rem !important;
    height: 3.5rem !important;
  }

  .product-heading {
    font-family: "PlusJakartaSans-SemiBold";
    font-size: 3.5rem;
    color: #111827;
    margin-bottom: 40px !important;
    line-height: 1.2;
  }

  /* --- Pills: consistent size --- */
  .section-pill,
  .section-pill-appointment,
  .section-pill-understand,
  .section-pill-reports {
    font-size: 1.3rem !important;
    padding: 8px 22px !important;
  }
}

/* ---------- MOBILE (≤ 767px) ---------- */
@media (max-width: 767.98px) {

  /* --- Uniform section spacing (40px gap between sections) --- */
  .hero-section {
    padding-bottom: 0;
  }

  .product-section {
    padding: 40px 0 !important;
  }

  .fast-section {
    padding: 40px 0 !important;
  }

  .opd-section {
    padding: 40px 0 !important;
  }

  .clinical-section {
    padding: 40px 0 !important;
  }

  .rx-section {
    padding: 40px 0 !important;
  }

  .docs-section {
    padding: 40px 0 !important;
  }

  .spec-section {
    padding: 40px 0 !important;
  }

  .reports-section {
    padding: 40px 0 !important;
  }

  .everyone-section {
    padding: 40px 0 !important;
  }

  .privacy-section {
    padding: 40px 0 !important;
  }

  .testi-section {
    padding: 40px 0 !important;
  }

  .compare-section {
    padding: 40px 0 !important;
  }

  .cta-banner-section {
    padding: 40px 0 !important;
  }

  .faq-section {
    padding: 40px 0 !important;
  }

  /* --- Container: full-width with small padding --- */
  .container {
    width: 92%;
    padding: 0 0px;
  }

  /* --- Headings: consistent mobile scale --- */
  .hero-title {
    font-size: clamp(24px, 6.5vw, 34px) !important;
    line-height: 1.25 !important;
  }

  .hero-subtitle {
    font-size: clamp(16px, 4vw, 22px) !important;
  }

  .section-title,
  .product-heading,
  .opd-heading,
  .rx-heading,
  .docs-heading,
  .everyone-heading,
  .spec-heading,
  .reports-heading,
  .clinical-heading,
  .compare-heading,
  .faq-heading,
  .cta-banner-heading,
  .privacy-heading {
    /* font-size: clamp(22px, 5.5vw, 30px) !important; */
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }

  /* --- Descriptions: consistent mobile size --- */
  .section-desc,
  .opd-desc,
  .rx-desc,
  .everyone-desc,
  .reports-desc,
  .compare-desc,
  .faq-desc {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
  }

  .reports-desc {
    width: 20rem !important;
  }

  .privacy-desc,
  .cta-banner-desc {
    text-align: left !important;
    font-size: 1.1rem !important;
  }

  .docs-desc {
    text-align: left !important;
    font-size: 1.1rem !important;
  }

  .clinical-desc {
    text-align: left !important;
  }

  .underline-reports {
    display: inline-block;
  }

  .underline-reports::after {
    content: "";
    position: absolute;
    left: 0.6rem;
    bottom: -0.7rem;
    width: 57%;
    height: 9px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    transform: rotate(-0.5deg);
  }

  .underline-docs::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: -13px;
    width: 82%;
    height: 10.8px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-2.4deg);
  }

  .underline-fast::after {
    content: "";
    position: absolute;
    left: -4.5rem;
    bottom: -1.2rem !important;
    width: 7.3rem;
    height: 19px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  /* --- Product card title --- */
  .product-card-title {
    font-size: 1.4rem !important;
    line-height: 1.35 !important;
    margin-bottom: 16px !important;
  }

  /* --- Feature / list text: consistent mobile size --- */
  .feature-text {
    font-size: 1rem !important;
  }

  .feature span,
  .feature {
    font-size: 1rem !important;
  }

  .opd-feature,
  .opd-feature span {
    font-size: 1rem !important;
  }

  .spec-feature span {
    font-size: 1rem !important;
  }

  .reports-feature span {
    font-size: 1rem !important;
  }

  .reports-card.reports-fade--appointment {
    background: linear-gradient(206deg, #ffffff 25%, #E7D8FF 200%);
  }

  .reports-card.reports-fade--revenue {
    background: linear-gradient(206deg, #ffffff 25%, #B7CBFF 200%);
  }

  .reports-card.reports-fade--patient {
    background: linear-gradient(206deg, #ffffff 25%, #DCD8FF 200%);
  }

  .reports-card.reports-fade--excel {
    background: linear-gradient(206deg, #ffffff 25%, #B7CBFF 200%);
  }

  .reports-ui-img-mobile {
    display: none;
    width: 113% !important;
    max-width: 113% !important;
    object-fit: contain;
    margin-bottom: -2rem;
  }

  .rx-feature,
  .rx-feature span {
    font-size: 1rem !important;
  }

  .docs-chip,
  .docs-chip span {
    font-size: 0.8rem !important;
  }

  .underline-tagline {
    display: inline-block;
  }

  .underline-tagline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.9rem;
    width: 100%;
    height: 9px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    transform: rotate(-3deg);
  }

  .product-tagline {
    font-size: 1rem !important;
  }

  /* --- Pills: uniform mobile size --- */
  .section-pill,
  .section-pill-appointment,
  .section-pill-understand,
  .section-pill-reports {
    font-size: 14px !important;
    padding: 6px 16px !important;
    margin-bottom: 20px !important;
  }

  /* --- Parent containers: stretch full width so buttons fill them --- */
  .fast-left,
  .clinical-left,
  .privacy-left {
    align-self: stretch !important;
    width: 100% !important;
  }

  /* --- Buttons: full width on mobile --- */
  .btn-hero,
  .btn-hero-outline {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 44px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  /* --- Buttons: match desktop colors on mobile --- */
  .btn-hero {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .btn-hero img,
  .btn-hero-outline img {
    width: 26px !important;
    height: 22px !important;
  }

  .cta-btn {
    display: flex !important;
    padding: 12px 20px !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 3.1rem;
    justify-content: center;
    align-items: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .clinical-cta {
    display: flex !important;
    padding: 12px 20px !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 3.1rem;
    border-radius: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .privacy-cta {
    display: flex !important;
    padding: 12px 20px !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 3.1rem;
    border-radius: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .everyone-btn-primary,
  .everyone-btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    height: 3.5rem !important;
    font-size: 1.1rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .cta-banner-btn {
    width: 100% !important;
    max-width: 100% !important;
    height: 3.5rem !important;
    font-size: 1.1rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 20px !important;
  }

  /* --- Icon boxes: uniform 32px on mobile --- */
  .feature-icon,
  .fast-icon,
  .opd-icon,
  .rx-icon,
  .spec-feat-icon,
  .reports-feat-icon,
  .docs-chip-icon {
    width: 2.2rem !important;
    height: 2.2rem !important;
    min-width: 32px !important;
    border-radius: 8px !important;
  }

  .feature-icon img,
  .fast-icon img,
  .opd-icon img,
  .rx-icon img,
  .spec-feat-icon img,
  .reports-feat-icon img,
  .docs-chip-icon img {
    width: 1rem !important;
    height: 1.2rem !important;
  }

  /* --- Images: prevent overflow & proper sizing --- */
  .hero-devices img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 3rem !important;
    margin-left: 0;
  }

  .fast-right img {
    width: 121% !important;
    height: 16rem !important;
    /* min-height: 280px !important; */
    margin-left: -1rem !important;
    margin-bottom: -1.8rem !important;
  }



  .opd-right {
    border-radius: 1.9rem !important;
    padding: 0.8rem 0 0 0.8rem !important;
  }

  .opd-right img {
    width: 110% !important;
    height: auto !important;
    min-height: 209px !important;
    margin-left: 0rem !important;
  }

  .clinical-hands {
    width: 100% !important;
  }

  .docs-shield-icon img {
    width: 170% !important;
    margin-top: -3.5rem;
  }

  .privacy-lock-img {
    width: 12rem !important;
  }

  .cta-banner-img {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    margin-right: 0 !important;
    display: block !important;
  }

  /* --- RX cards: reduce gap & padding --- */
  .rx-cards {
    gap: 2rem !important;
  }

  .rx-card-one,
  .rx-card-two {
    padding: 1.2rem 1rem 0 !important;
    border-radius: 1.9rem !important;
  }

  .rx-features {
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .rx-card-image img {
    width: 122% !important;
    height: auto !important;
    min-height: 235px !important;
    margin-top: -1rem !important;
    margin-bottom: -0.8rem !important;
  }

  /* --- Everyone cards --- */
  .everyone-cards {
    max-width: 100% !important;
    gap: 1.5rem !important;
  }

  .everyone-card {
    border-radius: 1.9rem !important;
  }

  .everyone-card-img,
  .everyone-card-img-one {
    min-height: auto !important;
    padding: 1.4rem 1.1rem 0 !important;
  }

  .everyone-card-info {
    padding: 0.8rem 1.2rem 1.2rem !important;
  }

  .everyone-card-label {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
    gap: 8px !important;
    align-items: center;
  }

  .everyone-card-label img {
    width: 1.5rem !important;
    height: 1.1rem !important;
  }

  .everyone-card-desc {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  /* --- Reports card --- */
  .reports-card {
    border-radius: 1.9rem !important;
    padding: 1.5rem 1rem 0 !important;
    gap: 0.8rem !important;
  }

  .reports-feature {
    padding: 7px !important;
    gap: 16px !important;
  }

  .reports-feature--active {
    border-radius: 8px !important;
  }

  /* --- Compare table --- */
  .compare-table {
    border-radius: 1.9rem !important;
  }

  .compare-row {
    align-items: stretch !important;
  }

  x .compare-col {
    font-size: 0.7rem !important;
    padding: 1.5rem 0rem 1.5rem 0.65rem !important;
    gap: 6px !important;
    align-items: center !important;
    word-break: break-word;
  }

  .compare-row--header .compare-col--before,
  .compare-row--header .compare-col--after {
    font-size: 1rem !important;
    padding: 1.2rem 0.8rem !important;
    justify-content: center;
  }

  .compare-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
  }

  .right-wrong {
    width: 0.55rem !important;
  }

  /* --- Testimonials --- */
  .testi-card {
    padding: 16px !important;
    border-radius: 1.9rem !important;
  }

  .testi-img-wrap {
    height: 220px !important;
    border-radius: 12px !important;
  }

  .testi-content {
    padding: 1.2rem 1rem !important;
  }

  .testi-quote-icon {
    font-size: 2rem !important;
    margin-bottom: 0.5rem !important;
  }

  .testi-title {
    font-size: 0.95rem !important;
    margin-bottom: 0.8rem !important;
  }

  .testi-quote {
    font-size: 0.8rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1rem !important;
  }

  .testi-name {
    font-size: 1.2rem !important;
  }

  .testi-role {
    font-size: 0.9rem !important;
  }

  /* --- Testimonials: mobile reorder (quote+title → image → text+author) --- */
  .testi-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.25rem !important;
  }

  /* dissolve the content wrapper so children join the card's flex layout */
  .testi-content {
    display: contents !important;
  }

  /* 1 – quote icon */
  .testi-quote-img {
    order: 1 !important;
    margin-top: 0 !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0.5rem !important;
  }

  /* 2 – heading */
  .testi-title {
    order: 2 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* 3 – image: centered square */
  .testi-img-wrap {
    order: 3 !important;
    flex: none !important;
    width: 100% !important;
    max-width: 300px !important;
    height: 380px !important;
    min-height: unset !important;
    border-radius: 1rem !important;
    margin: 0.5rem auto !important;
    align-self: center !important;
  }

  /* 4 – quote text */
  .testi-quote {
    order: 4 !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* 5 – author */
  .testi-author {
    order: 5 !important;
    width: 100% !important;
    align-items: center !important;
  }

  /* 6 – dots */
  .testi-indicators {
    order: 6 !important;
    width: 100% !important;
    justify-content: center !important;
  }

  /* --- CTA Banner card --- */
  .cta-banner-card {
    border-radius: 1.9rem !important;
  }

  .cta-banner-left {
    padding: 1.5rem 1.2rem 1rem !important;
    text-align: center !important;
  }

  /* --- FAQ --- */
  .faq-item {
    border-radius: 12px !important;
    width: 100% !important;
  }

  .faq-question {
    padding: 0.8rem 1rem !important;
    font-size: 0.86rem !important;
    gap: 0.6rem !important;
  }

  .faq-chevron {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 0.65rem !important;
  }

  .faq-answer p {
    font-size: 0.85rem !important;
    left: 0 !important;
  }

  .faq-item--open .faq-answer {
    padding: 0 1rem 1rem !important;
  }

  /* --- Cards: uniform border radius --- */
  .product-card {
    border-radius: 1.9rem !important;
  }

  .fast-card {
    border-radius: 1.9rem !important;
  }

  .clinical-card {
    border-radius: 1.9rem !important;
  }

  .docs-card {
    border-radius: 1.9rem !important;
    padding: 1.5rem 1rem 2rem 1.2rem !important;
  }

  /* Show mobile chips after shield; hide desktop chips */
  .docs-chips--desktop {
    display: none !important;
  }

  .docs-chips--mobile {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 1rem;
  }

  .privacy-card {
    border-radius: 1.9rem !important;
  }

  /* --- Spec section: tighten subtitle --- */
  .spec-subtitle {
    font-size: 1rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .underline-spec::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    bottom: -1.1rem;
    width: 75%;
    height: 0.7rem;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-4deg);
  }

  /* --- Footer mobile --- */
  .doca-footer {
    padding: 16px 0;
  }

  .footer-content {
    gap: 1rem;
  }

  .doca-logo {
    height: 1.6rem;
  }

  .indigital-logo {
    height: 1.6rem;
  }

  .footer-link {
    font-size: 0.85rem;
    padding: 0 6px;
    white-space: normal;
    overflow-wrap: break-word;
    position: relative;
  }

  .footer-copyright {
    font-size: 0.65rem;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    text-align: center;
    padding: 0 4px;
  }

  /* ─── Mobile: each panel as its own separate card ─── */
  .product-tabs {
    display: none !important;
  }

  /* Strip the outer wrapper of all card styling */
  .product-card {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  /* Each panel becomes its own independent card */
  .product-panel {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    background: linear-gradient(88deg, #ffffff 0%, #E5E6FF 100%) !important;
    border: 1px solid #B2C7FF !important;
    border-radius: 1.9rem !important;
    padding: 1.5rem 0rem 0 0rem !important;
    overflow: hidden !important;
    position: relative !important;
  }

  /* Shared image container — same fixed height for all 3 */
  .product-card-consultation,
  .product-card-prescription,
  .product-card-documents {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    min-height: unset !important;
    flex: 0 0 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Card 1 – Consultation image */
  .product-ui--consultation {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    margin-left: -1.65rem;
    margin-bottom: -0.2rem;
  }

  /* Card 2 – Prescription image */
  .product-ui--prescription {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    margin-left: -0.45rem;
    margin-bottom: -0.2rem;
  }

  /* Card 3 – Documents image */
  .product-ui--documents {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    margin-left: -0.85rem;
    margin-bottom: -0.7rem;
  }

  /* Animate yellow underline on ALL 3 product cards on mobile */
  .product-panel .underline-tagline.underline-visible::after {
    animation: underlineSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards !important;
  }
}

/* ---------- SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  /* --- Even smaller headings --- */
  .section-title,
  .product-heading,
  .opd-heading,
  .rx-heading,
  .docs-heading,
  .everyone-heading,
  .spec-heading,
  .reports-heading,
  .clinical-heading,
  .faq-heading,
  .privacy-heading {
    font-size: 2rem !important;
  }

  .cta-banner-heading {
    font-size: 2rem !important;
    text-align: left !important;
  }

  .compare-heading {
    font-size: 1.8rem !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 3rem;
  }

  /* --- Buttons: full width on small mobile --- */
  .btn-hero,
  .btn-hero-outline {
    width: 100% !important;
    max-width: 100% !important;
    height: 3.5rem !important;
    font-size: 1.1rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* --- Buttons: match desktop colors on small mobile --- */
  .btn-hero {
    background:
      linear-gradient(90deg, #3e97ff 0%, #8128f0 100%),
      #ffffff !important;
    -webkit-background-clip: text, padding-box !important;
    background-clip: text, padding-box !important;
    -webkit-text-fill-color: transparent !important;
    color: #3e97ff !important;
    border: 1px solid transparent !important;
  }

  .btn-hero-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .hero-actions {
    gap: 20px !important;
  }

  /* --- Section gaps: tighter on very small screens --- */
  .product-section,
  .fast-section,
  .opd-section,
  .clinical-section,
  .rx-section,
  .docs-section,
  .spec-section,
  .reports-section,
  .everyone-section,
  .privacy-section,
  .testi-section,
  .compare-section,
  .cta-banner-section,
  .faq-section {
    padding: 2rem 0 !important;
  }

  /* --- Product tabs: smaller for narrow screens --- */
  .product-tabs {
    gap: 5px !important;
  }

  .product-tab {
    height: 28px !important;
    padding: 0 6px !important;
    font-size: 9px !important;
  }

  .product-tab--active .tab-check {
    width: 0.8rem !important;
    height: 0.8rem !important;
    top: -0.3rem !important;
    right: -0.15rem !important;
    border-width: 2px !important;
  }

  /* --- CTA banner: image --- */
  .cta-banner-img {
    width: 85% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* --- Testimonials: compact --- */
  .testi-img-wrap {
    height: 20rem !important;
  }

  .testi-title {
    font-size: 1.4rem !important;
  }

  .testi-quote {
    font-size: 1rem !important;
  }
}

/* =================================================================
   YELLOW UNDERLINE – Left-to-Right Reveal Animation (Desktop)
   Uses clip-path so it doesn't conflict with existing transforms/rotations.
   ================================================================= */

@keyframes underlineSlideIn {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

/* --- Initially hide all yellow underlines --- */
.hero-subtitle::after,
.underline-tagline::after,
.underline-fast::after,
.underline-opd::after,
.underline-clinical::after,
.underline-rx::after,
.underline-docs::after,
.underline-spec::after,
.underline-reports::after,
.underline-everyone::after,
.underline-compare::after,
.underline-privacy::after,
.underline-faq::after {
  clip-path: inset(0 100% 0 0);
}

/* --- Hero subtitle: animate after page load (delay matches hero anim timing) --- */
.hero-subtitle::after {
  animation: underlineSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

/* --- Animate after parent reveal transition completes --- */
.underline-tagline.underline-visible::after,
.underline-fast.underline-visible::after,
.underline-opd.underline-visible::after,
.underline-clinical.underline-visible::after,
.underline-rx.underline-visible::after,
.underline-docs.underline-visible::after,
.underline-spec.underline-visible::after,
.underline-reports.underline-visible::after,
.underline-everyone.underline-visible::after,
.underline-compare.underline-visible::after,
.underline-privacy.underline-visible::after,
.underline-faq.underline-visible::after {
  animation: underlineSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards;
}

/* --- Product tagline: keep hidden when panel is inactive --- */
.product-panel .underline-tagline::after {
  clip-path: inset(0 100% 0 0);
  animation: none;
}

/* --- Product tagline: animate after active panel's reveal completes --- */
.product-panel--active .underline-tagline.underline-visible::after {
  animation: underlineSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards;
}

/* =================================================================
   TABLET COMPREHENSIVE FIXES
   Portrait  : 768px – 991px  (no touch on mobile ≤767px or desktop ≥1200px)
   Landscape : 992px – 1199px
   ================================================================= */

/* ═══════════════════════════════════════════════════════════════
   PORTRAIT TABLET  (768px – 991px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 991.98px) {

  /* ── Prevent horizontal overflow (fixes scrollbar that makes fixed navbar appear to stretch) ── */
  html,
  body {
    overflow-x: hidden;
  }

  /* ── Navbar ── */
  .navbar-logo {
    height: 30px;
  }

  .btn-buy {
    width: 130px;
    height: 40px;
    font-size: 13px;
    border-radius: 10px;
  }

  /* ── Hero ── */
  .hero-title {
    font-size: 3.1rem !important;
    line-height: 1.2 !important;
  }

  .hero-subtitle {
    font-size: clamp(20px, 3vw, 26px) !important;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 14rem !important;
    height: 3.5rem !important;
    font-size: 1.2rem !important;
    border-radius: 12px !important;
  }

  /* ── Section headings ── */
  .section-title,
  .product-heading,
  .opd-heading,
  .rx-heading,
  .docs-heading,
  .everyone-heading,
  .spec-heading,
  .reports-heading,
  .clinical-heading,
  .compare-heading,
  .faq-heading,
  .cta-banner-heading,
  .privacy-heading {
    font-size: 2.6rem !important;
    line-height: 1.25 !important;
  }

  /* ── Section descriptions ── */
  .section-desc,
  .opd-desc,
  .rx-desc,
  .everyone-desc,
  .clinical-desc,
  .docs-desc,
  .reports-desc,
  .compare-desc,
  .privacy-desc,
  .cta-banner-desc,
  .faq-desc {
    font-size: 1.1rem !important;
    line-height: 1.75 !important;
    width: 39rem;
    margin-bottom: 40px !important;
  }

  .underline-fast::after {
    content: "";
    position: absolute;
    left: -4.5rem;
    bottom: -0.8rem;
    width: 8rem;
    height: 10px;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  /* ── Pills ── */
  .section-pill,
  .section-pill-appointment,
  .section-pill-understand,
  .section-pill-reports {
    font-size: 1.5rem !important;
    padding: 9px 22px !important;
    height: auto !important;
    width: auto !important;
  }

  /* ── Product Section ── */
  .product-card {
    padding: 2rem 1.5rem 0 1.5rem !important;
    border-radius: 3rem !important;
  }

  .product-card .product-tabs,
  .product-card .product-card-title,
  .product-card .product-features {
    padding-left: 0 !important;
  }

  /* Product tabs – allow wrapping so they don't overflow */
  .product-tabs {
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding-right: 0 !important;
    margin-bottom: 28px !important;
  }

  .product-tab {
    height: 2.6rem !important;
    padding: 0 1.1rem !important;
    font-size: 1.1rem !important;
  }

  .product-tab--active .tab-check {
    width: 1.8rem !important;
    height: 1.8rem !important;
    top: -0.7rem !important;
    right: -0.45rem !important;
  }

  /* Product card title */
  .product-card-title {
    font-size: 1.85rem !important;
    margin-bottom: 24px !important;
  }

  /* Feature list */
  .feature-text,
  .feature,
  .feature span,
  .opd-feature,
  .opd-feature span {
    font-size: 1.6rem !important;
  }

  .line {
    margin-top: -1rem;
  }

  .product-tagline {
    font-size: 1.35rem !important;
  }

  .underline-tagline::after {
    content: "";
    position: absolute;
    left: -24px;
    bottom: -1.5rem;
    width: 10.8rem;
    height: 0.9rem;
    background-image: url(./assets/section-3/yellow_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transform: rotate(-3deg);
  }

  /* Product UI image containers – fixed height, centred */
  .product-card-consultation,
  .product-card-prescription,
  .product-card-documents {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    min-height: unset !important;
    flex: 0 0 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  /* Product UI images – no overflow, centred */
  .product-ui--consultation,
  .product-ui--prescription,
  .product-ui--documents {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    object-fit: contain !important;
    object-position: bottom center !important;
    margin: 0 !important;
  }

  /* Icon boxes */
  .feature-icon,
  .fast-icon,
  .opd-icon,
  .rx-icon,
  .spec-feat-icon,
  .reports-feat-icon,
  .docs-chip-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 40px !important;
    border-radius: 10px !important;
  }

  .feature-icon img,
  .fast-icon img,
  .opd-icon img,
  .rx-icon img,
  .spec-feat-icon img,
  .reports-feat-icon img,
  .docs-chip-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  /* ── Fast Section ── */
  .fast-right img {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: -2.5rem !important;
    margin-top: 0 !important;
  }

  .cta-btn {
    font-size: 1rem !important;
    padding: 14px 28px !important;
    width: 12rem !important;
    margin-left: 0rem !important;
  }

  /* ── OPD Section ── */
  .opd-card {
    gap: 2.5rem !important;
  }

  .opd-right {
    border-radius: 3rem !important;
  }

  .opd-right img {
    width: 100% !important;
    margin-left: 0 !important;
  }

  /* ── Clinical Section ── */
  .clinical-card {
    flex-direction: column !important;
    padding: 2.5rem 2.5rem 0 2.5rem !important;
    border-radius: 3rem !important;
    gap: 3rem !important;
  }

  .clinical-hands {
    width: 80% !important;
    max-width: 300px !important;
  }

  .clinical-cta {
    font-size: 1.3rem !important;
    padding: 17px 48px !important;
    width: auto !important;
  }

  /* ── RX Section ── */
  .rx-feature,
  .rx-feature span {
    font-size: 1.1rem !important;
  }

  .rx-card-image img {
    width: 100% !important;
    margin-bottom: -1rem !important;
    margin-top: -2rem !important;
  }

  /* ── Docs Section ── */
  .docs-card {
    flex-direction: column !important;
    padding: 2.5rem 2rem !important;
  }

  .docs-heading {
    font-size: 3.5rem !important;
  }

  .docs-chip,
  .docs-chip span {
    font-size: 1.1rem !important;
  }

  .docs-shield-icon img {
    width: 22rem !important;
  }

  /* ── Spec Section ── */
  .spec-feature {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 1rem !important;
  }

  .spec-feature span {
    font-size: 1.4rem !important;
  }

  .spec-subtitle {
    font-size: 1.3rem !important;
  }

  /* ── Reports Section ── */
  .reports-feature,
  .reports-feature span {
    font-size: 1.4rem !important;
  }

  /* ── Everyone Section ── */
  .everyone-cards {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem !important;
  }

  /* All cards identical full-width — undo any last-child narrowing */
  .everyone-card,
  .everyone-card:last-child {
    grid-column: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 3rem !important;
  }

  /* Uniform image-area height keeps every card the same size */
  .everyone-card-img,
  .everyone-card-img-one {
    min-height: 280px !important;
    padding: 1.5rem 1.5rem 0 !important;
  }

  .everyone-card-info {
    padding: 1rem 2rem 2rem !important;
  }

  .everyone-card-desc {
    width: 100% !important;
    font-size: 1.4rem !important;
  }

  .everyone-card-label {
    font-size: 2rem !important;
  }

  .everyone-btn-primary,
  .everyone-btn-outline {
    font-size: 1.3rem !important;
    padding: 17px 48px !important;
    width: auto !important;
  }

  .everyone-card-label img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  /* ── Privacy Section ── */
  .privacy-card {
    flex-direction: column !important;
    padding: 2.5rem 2.5rem !important;
    border-radius: 3rem !important;
  }

  .privacy-lock-img {
    width: 18rem !important;
  }

  .privacy-cta {
    font-size: 1.3rem !important;
    padding: 17px 48px !important;
    width: auto !important;
  }

  /* ── Testimonials ── */
  .testi-card {
    flex-direction: column !important;
    padding: 24px 24px 0 24px !important;
    border-radius: 2rem !important;
  }

  .testi-img-wrap {
    flex: none !important;
    width: 100% !important;
    height: 320px !important;
    min-height: unset !important;
  }

  .testi-content {
    padding: 2rem 1.5rem !important;
  }

  .testi-title {
    font-size: 1.5rem !important;
  }

  .testi-img {
    /* position: absolute; */
    display: flex !important;
    justify-content: center !important;
    width: 50%;
    height: 95%;
    object-fit: inherit;
    object-position: top center;
    z-index: 1;
  }

  .testi-quote {
    font-size: 1rem !important;
  }

  /* ── Compare Section ── */
  .compare-col {
    font-size: 1rem !important;
    padding: 1.8rem 1.5rem !important;
    gap: 14px !important;
  }

  .compare-row--header .compare-col--before,
  .compare-row--header .compare-col--after {
    font-size: 1.2rem !important;
    padding: 1.8rem 1.5rem !important;
  }

  .compare-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
  }

  .right-wrong {
    width: 0.65rem !important;
  }

  /* ── CTA Banner ── */
  .cta-banner-card {
    flex-direction: column !important;
    border-radius: 2.5rem !important;
    text-align: center !important;
  }

  .cta-banner-left {
    padding: 3rem 2rem 2rem !important;
    text-align: center !important;
  }

  .cta-banner-img {
    height: 18rem !important;
  }

  .cta-banner-btn {
    font-size: 1rem !important;
    padding: 14px 28px !important;
    width: auto !important;
    height: auto !important;
  }

  /* ── FAQ ── */
  .faq-layout {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .faq-left {
    flex: none !important;
    width: 100% !important;
  }

  .faq-desc {
    width: 100% !important;
    max-width: 100% !important;
  }

  .faq-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .faq-answer p {
    max-width: 100% !important;
  }

  .faq-question {
    font-size: 1.05rem !important;
  }

  /* ── Footer ── */
  .footer-content {
    flex-direction: column !important;
    text-align: center;
    gap: 16px;
  }

  .footer-nav {
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid #aeaeae;
    padding-bottom: 10px;
  }
}

/* ================= DISABLE HOVER & CLICK EFFECTS ON TOUCH / MOBILE ================= */
@media (hover: none) {

  .btn-buy:hover,
  .btn-hero:hover,
  .btn-hero-outline:hover,
  .cta-btn:hover,
  .cta-banner-btn:hover,
  .everyone-btn-primary:hover,
  .everyone-btn-outline:hover,
  .clinical-cta:hover,
  .privacy-cta:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .btn-buy:active,
  .btn-hero:active,
  .btn-hero-outline:active,
  .cta-btn:active,
  .cta-banner-btn:active,
  .everyone-btn-primary:active,
  .everyone-btn-outline:active,
  .clinical-cta:active,
  .privacy-cta:active {
    transform: none !important;
  }
}

/* ================= VIDEO MODAL ================= */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.45);
  backdrop-filter: blur(2px);
  /* -webkit-backdrop-filter: blur(10px); */
}

.video-modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 14px;
  max-width: 900px;
  width: 92%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  z-index: 1;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-overlay.active .video-modal-card {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #333;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-modal-close:hover {
  background: #f5f5f5;
  color: #111;
}

.video-modal-player {
  width: 100%;
  border-radius: 12px;
  display: block;
  max-height: 80vh;
  background: #000;
}

@media (max-width: 575.98px) {
  .video-modal-card {
    padding: 10px;
    border-radius: 14px;
  }

  .video-modal-close {
    top: -12px;
    right: -10px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}


img#tick-gif {
  position: absolute;
  top: 9rem;
  right: 18.7rem;
}



/* .video-wrapper {
  width: 100%;
  background: linear-gradient(38deg, #ffffff33 0%, #E5E6FF 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 90% at center, black 50%, transparent 100%);
  height: 100%;
  -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black 15%,
        black 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        black 8%,
        black 100%);
} */

.video-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(38deg, #ffffff33 0%, #E5E6FF 85%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
  mask-composite: intersect;
}

.video-wrapper video {
  mix-blend-mode: multiply;
  filter: brightness(1) saturate(1.25);
  width: 97%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* background: #EEF2FF; */
}




.video-wrapper_two {
  width: 100%;
  height: 100%;
  background: linear-gradient(38deg, #ffffff33 0%, #E5E6FF 85%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, transparent 0%, black 24%, black 100%), linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
  linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
  mask-composite: intersect;
}

.video-wrapper_two video {
  mix-blend-mode: multiply;
  filter: brightness(1) saturate(1.25);
  width: 100%;
  height: 37rem;
  display: block;
  object-fit: cover;
  /* background: #EEF2FF; */
}

.video-wrapper_three {
  width: 100%;
  height: 100%;
  background: linear-gradient(38deg, #ffffff33 0%, #E5E6FF 85%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 100%), linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
  linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
  mask-composite: intersect;
}

.video-wrapper_three video {
  mix-blend-mode: multiply;
  filter: brightness(1) saturate(1.25);
  width: 100%;
  height: 29rem;
  display: block;
  object-fit: cover;
  /* background: #EEF2FF; */
}

@media (max-width: 991.98px) {
  .video-wrapper_two {
    -webkit-mask-image: none;
    mask-image: none;
    background: transparent;
  }

  .video-wrapper video {
    width: 100% !important;
  }

  .video-wrapper_two video {
    mix-blend-mode: multiply;
    height: 100%;
  }

  .video-wrapper_three {
    -webkit-mask-image: none;
    mask-image: none;
    background: transparent;
  }

  .video-wrapper_three video {
    mix-blend-mode: multiply;
    height: 100%;
  }
}

/* ── Tablet Portrait (768px – 1024px) ────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .video-wrapper {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    mask-composite: intersect;
  }

  .video-wrapper video {
    width: 97%;
    height: auto;
  }

  .video-wrapper_two {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    mask-composite: intersect;
  }

  .product-card-prescription {
    position: absolute !important;
    top: 3rem !important;
    left: 20rem !important;
  }

  .video-wrapper_two video {
    width: 104%;
    height: 29rem;
    object-fit: cover;
  }

  .video-wrapper_three {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 8%, black 100%);
    mask-composite: intersect;
  }

  .product-card-documents {
    position: absolute !important;
    top: 9rem !important;
    left: 21rem !important;
  }

  .video-wrapper_three video {
    width: 100%;
    height: 22rem;
    object-fit: cover;
  }
}

/* ── Tablet Landscape (768px – 1366px) ───────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .video-wrapper {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
    mask-composite: intersect;
  }

  .video-wrapper video {
    width: 97%;
    height: 100%;
  }

  .video-wrapper_two {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 24%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
    mask-composite: intersect;
  }

  .video-wrapper_two video {
    width: 100%;
    height: 33rem;
    object-fit: cover;
  }

  .video-wrapper_three {
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 100%),
      linear-gradient(to bottom, transparent 0%, black 6%, black 100%);
    mask-composite: intersect;
  }

  .video-wrapper_three video {
    width: 100%;
    height: 26rem;
    object-fit: cover;
  }
}