/* ============================================================
   PillCare – Main Stylesheet
   Design system: health-inspired blues & greens, mobile-first
   ============================================================ */

/* ---------- Local Fonts ---------- */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/helvetica-light-587ebe5a59211.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Oblique.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-BoldOblique.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Helvetica Rounded";
  src: url("../fonts/helvetica-rounded-bold-5871d05ead8de.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Compressed";
  src: url("../fonts/helvetica-compressed-5871d14b6903a.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-primary: #0a6ebd;
  /* core blue */
  --clr-primary-dk: #084f8a;
  --clr-primary-lt: #e8f4fd;
  --clr-accent: #00b4a0;
  /* teal/green accent */
  --clr-accent-lt: #e0f7f4;
  --clr-dark: #0d2137;
  --clr-text: #2c3e50;
  --clr-muted: #607080;
  --clr-border: #dde8f0;
  --clr-bg: #f7fbff;
  --clr-white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(10, 110, 189, 0.1);
  --shadow-md: 0 6px 24px rgba(10, 110, 189, 0.14);
  --shadow-lg: 0 16px 48px rgba(10, 110, 189, 0.18);

  --transition: 0.25s ease;
  --font-body:
    "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-head: "Helvetica", "Helvetica Rounded", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* Bootstrap container will be used */
p{margin-bottom: 0px;}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-white);
  box-shadow: 0 4px 18px rgba(10, 110, 189, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(10, 110, 189, 0.45);
}

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

.btn-outline:hover {
  background: var(--clr-primary-lt);
}

.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 18px rgba(0, 180, 160, 0.3);
}

.btn-accent:hover {
  background: #009e8c;
  box-shadow: 0 8px 28px rgba(0, 180, 160, 0.4);
}

/* ---------- Section shared styles ---------- */
.section {
  padding: 50px 0;
}

section[id] {
  padding: 50px 0 !important;
}
section[id="how"] {
  padding: 50px 30px !important;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-lt);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  /* max-width: 560px; */
}
.cls_thirdparty {
  filter: initial !important;
}

.navbar {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  padding: 1rem 0;
  /* Removed horizontal padding */
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__nav ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.navbar__nav .dropdown {
  display: flex;
  flex-direction: column;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 70px;
  width: auto;
}

/* Desktop nav */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--clr-text);
  transition:
    color var(--transition),
    background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
}

.nav-link .chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
  stroke: currentColor;
  flex-shrink: 0;
}

.nav-link[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--clr-text);
  transition:
    background var(--transition),
    color var(--transition);
}

.dropdown__link:hover {
  background: var(--clr-primary-lt);
  color: var(--clr-primary);
}

.dropdown__link svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: var(--clr-accent);
}

/* CTA in nav */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--clr-primary-lt);
  border-radius: var(--radius-sm);
  padding: 8px;
  transition: background var(--transition);
}

.navbar__toggle:hover {
  background: var(--clr-border);
}

.navbar__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clr-primary);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile {
  display: none;
  /* Hidden by default on desktop */
  flex-direction: column;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding: 0 1.25rem;
  gap: 0.25rem;
  max-height: 0;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.navbar__mobile.open {
  max-height: 80vh;
  /* dynamic enough */
  padding: 1rem 1.25rem 1.5rem;
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--clr-text);
  transition: background var(--transition);
}

button.mobile-nav-link {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.mobile-signup-btn {
  margin-top: 0.5rem;
}

.mobile-nav-link:hover {
  background: var(--clr-primary-lt);
  color: var(--clr-primary);
}

.mobile-dropdown {
  padding-left: 1.2rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-dropdown.open {
  max-height: 300px;
}

.mobile-dropdown__link {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  color: var(--clr-muted);
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
}

.mobile-dropdown__link:hover {
  background: var(--clr-primary-lt);
  color: var(--clr-primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #e8f4fd 0%, #e0f7f4 60%, #f7fbff 100%);
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  height: 90dvh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(10, 110, 189, 0.08) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-lt);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero__eyebrow svg {
  width: 15px;
  height: 15px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: 1.25rem;
}

.hero__title span {
  color: var(--clr-primary);
}

.hero__text {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--clr-muted);
}

.hero__delivery-time {
  color: var(--clr-muted);
  font-size: 0.78rem;
}

.hero__trust-avatars {
  display: flex;
}

.hero__trust-avatars span,
.hero__trust-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--clr-white);
  background: var(--clr-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-left: -8px;
  object-fit: cover;
}

.hero__trust-avatars span:first-child,
.hero__trust-avatars img:first-child {
  margin-left: 0;
}

.hero__trust strong {
  color: var(--clr-dark);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrap {
  width: 100%;
  /* max-width: 480px; */
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* box-shadow: var(--shadow-lg); */
  /* background: var(--clr-border); */
  position: relative;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  animation: floatY 3s ease-in-out infinite;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.hero__badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--clr-dark);
}

.hero__badge2 {
  position: absolute;
  top: -16px;
  right: -20px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatY 4s ease-in-out infinite reverse;
}

.hero__badge2 .star {
  color: #f59e0b;
  font-size: 1rem;
}

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

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

/* ============================================================
   STATS BAR
   ============================================================ */
.statsbar {
  background: var(--clr-primary);
  padding: 28px 0;
}

.statsbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.statsbar__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--clr-white);
  line-height: 1;
}

.statsbar__item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--clr-white);
  overflow: hidden;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about__text p {
  color: var(--clr-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about__text p span {
  color: var(--clr-primary);
  font-weight: 600;
}

.about__cta {
  margin-top: 2rem;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img-wrap {
  width: 100%;
  max-width: 480px;
  /* aspect-ratio: 4/3.2; */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--clr-border);
}

.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__pill-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  animation: floatY 3.5s ease-in-out infinite;
}

.about__pill-badge strong {
  font-size: 1.55rem;
}

/* ============================================================
   COMPARISON / WHY PILLCARE SECTION
   ============================================================ */
.why {
  background: var(--clr-bg);
}

.why__header {
  text-align: center;
  margin-bottom: 3rem;
}

.why__header .section-subtitle {
  margin-inline: auto;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--clr-primary-lt),
    var(--clr-accent-lt)
  );
  opacity: 0;
  transition: opacity var(--transition);
}

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

.why-card:hover::before {
  opacity: 1;
}

.why-card > * {
  position: relative;
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(
    135deg,
    var(--clr-primary-lt),
    var(--clr-accent-lt)
  );
  transition: background var(--transition);
}

.why-card:hover .why-card__icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-primary);
  transition: stroke var(--transition);
}

.why-card:hover .why-card__icon svg {
  stroke: var(--clr-white);
}

.why-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--clr-dark);
  margin-bottom: 0.6rem;
}

.why-card__text {
  font-size: 0.91rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

.why-card__tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-accent);
  background: var(--clr-accent-lt);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

/* Comparison note banner */
.why__compare {
  margin-top: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--clr-primary-lt),
    var(--clr-accent-lt)
  );
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why__compare-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__compare-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.why__compare-text {
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

.why__compare-text strong {
  color: var(--clr-dark);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--clr-white);
}

.how__header {
  text-align: center;
  margin-bottom: 3rem;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}

/* connector line between steps */
.how__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% / 4);
  right: calc(50% / 4);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 18px rgba(10, 110, 189, 0.3);
}

.how-step__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-dark);
  margin-bottom: 0.5rem;
}

.how-step__text {
  font-size: 0.88rem;
  color: var(--clr-muted);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
/* ============================================================
   TESTIMONIALS SECTION (Stacked Cards)
   ============================================================ */
.testimonials-stacked {
  background: linear-gradient(135deg, var(--clr-dark) 0%, #09404f 100%);
  padding: 50px 0;
  overflow: hidden;
}

.testimonials-stacked__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-stacked__header .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-accent);
}

.testimonials-stacked__header .section-title {
  color: var(--clr-white);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.testimonial-stack {
  position: relative;
  height: 400px;
  /* Base height for the card container */
  perspective: 1000px;
}

.testimonial-card-v3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 3rem;
  color: var(--clr-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  pointer-events: none;
  z-index: 1;
}

/* Base Card (Active) */
.testimonial-card-v3.active {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  z-index: 10;
  pointer-events: auto;
}

/* Stacked cards behind */
.testimonial-card-v3.stack-1 {
  opacity: 0.6;
  transform: translateY(-20px) scale(0.95);
  z-index: 9;
}

.testimonial-card-v3.stack-2 {
  opacity: 0.3;
  transform: translateY(-40px) scale(0.9);
  z-index: 8;
}

/* Exit animation */
.testimonial-card-v3.exit {
  opacity: 0;
  transform: translateX(-100px) rotate(-5deg);
  pointer-events: none;
}

.testimonial-card-v3__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card-v3__quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.testimonial-card-v3__quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
}

.testimonial-card-v3__author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
}

.author-avatar-v3 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.1);
  background: var(--clr-border);
}

.author-avatar-v3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info-v3 strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clr-white);
}

.author-info-v3 span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.blog h1.entry-title{margin-top: 30px;color: #0d2137;}
.entry-meta span{color: #607080;}
.entry-content strong{color: #0d2137;}

/* Controls */
.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
  position: relative;
  z-index: 20;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--clr-accent);
  transform: scale(1.3);
}

.about__content {
  text-align: left !important;
}

@media (max-width: 768px) {
  .testimonial-stack {
    height: 450px;
  }

  .testimonial-card-v3 {
    padding: 2rem;
  }

  .testimonial-slider {
    padding: 0;
  }

  .testimonial-stack {
    height: 350px;
  }

  .section.cta-section {
    padding-top: 0 !important;
  }

  .info-block {
    text-align: center !important;
  }

  .footer__bg-text {
    left: 26px !important;
  }
}

@media (max-width: 575px) {
  .hero__trust {
    flex-direction: column;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition:
    background var(--transition),
    color var(--transition);
}

.footer__social a:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.footer__social svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--clr-accent);
}

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--clr-accent);
}

/* ============================================================
   PLACEHOLDER image styles
   ============================================================ */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #dde8f0, #c8e6e2); */
  color: var(--clr-muted);
  font-size: 0.85rem;
  font-weight: 500;
  gap: 0.5rem;
}

.placeholder-img svg {
  width: 48px;
  height: 48px;
  stroke: var(--clr-primary);
  opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .statsbar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__badge {
    left: 0;
    bottom: -12px;
  }

  .hero__badge2 {
    right: 0;
  }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__visual {
    order: -1;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__cta .btn {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__mobile {
    display: flex;
  }

  .how__steps::before {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 1rem);
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__badge,
  .hero__badge2,
  .about__pill-badge {
    display: none;
  }

  .why__compare {
    flex-direction: column;
  }
}

/* ============================================================
   MEDICATION JOURNEY SECTION (Pharma-Medical Sticky Stacking)
   ============================================================ */
.medication-journey {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  position: relative;
  padding-bottom: 120px !important;
}

.journey-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.journey-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15vh;
  padding: 0;
  position: relative;
}

.journey-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: sticky;
  top: 100px;
  /* Offset for sticky navbar */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 10px 40px rgba(10, 110, 189, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.journey-item:nth-child(2) {
  top: 130px;
}

.journey-item:nth-child(3) {
  top: 160px;
}

.journey-item.reverse {
  direction: ltr;
}

/* Visual Side */
.journey-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-img-holder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid rgba(255, 255, 255, 0.9);
  background: var(--clr-primary-lt);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.journey-item:nth-child(even) .journey-img-holder {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.journey-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-item:hover .journey-img-holder {
  transform: scale(1.05) rotate(3deg);
}

/* Decorative Background Elements */
.journey-decoration {
  position: absolute;
  z-index: 1;
  background: linear-gradient(
    135deg,
    var(--clr-primary-lt),
    var(--clr-accent-lt)
  );
  opacity: 0.4;
  filter: blur(40px);
}

.journey-decoration.circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
}

.journey-decoration.square {
  width: 220px;
  height: 220px;
  bottom: -30px;
  right: -20px;
}

.journey-decoration.hex {
  width: 240px;
  height: 240px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Content Side */
.journey-content {
  position: relative;
  z-index: 2;
}

.journey-number {
  font-size: 7rem;
  font-weight: 950;
  color: var(--clr-primary);
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
}

.journey-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--clr-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.journey-text {
  font-size: 1.05rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.journey-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.journey-benefits span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(10, 110, 189, 0.05);
}

.journey-benefits span svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-accent);
}
/* Testimonial Section */
.trust-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.trust-section__title {
  color: #009fe3;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  font-weight: 400;
}

.trust-section__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.trust-section__badge {
  flex-shrink: 0;
  text-align: left;
  padding-right: 40px;
  border-right: 1px solid #eee;
  width: 200px;
}

.trust-section__badge .average {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.trust-section__stars-container {
  position: relative;
  width: 150px;
  height: 28px;
  margin-bottom: 15px;
}

.trust-section__reviews-count {
  font-size: 0.85rem;
  color: #666;
}

.trust-section__logo {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 1.1rem;
}

.trust-section__logo svg {
  width: 24px;
  height: 24px;
  fill: var(--clr-trust-green);
}

/* Owl Carousel Custom Styles */
.testimonial-slider-wrapper {
  flex-grow: 1;
  min-width: 0;
  position: relative;
  padding: 0 60px;
  /* Increased padding to create a gutter for arrows */
}

.testimonial-card {
  text-align: left;
  padding: 10px;
}

.testimonial-card__stars-container {
  position: relative;
  width: 100px;
  height: 18px;
  margin-bottom: 10px;
}

.testimonial-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card__author {
  font-size: 0.85rem;
  color: #999;
}

.testimonial-card__author span {
  margin-left: 5px;
}

/* Custom Nav Arrows for Owl */
.owl-nav {
  display: block !important;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333 !important;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.owl-nav button:hover {
  border-color: var(--clr-primary) !important;
  color: var(--clr-primary) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.owl-prev {
  left: -50px !important;
  /* Positioned in the wrapper gutter */
}

.owl-next {
  right: -50px !important;
  /* Positioned in the wrapper gutter */
}

.owl-nav button span {
  display: none;
  /* Hide default Owl spans if they exist */
}

/* Support Banner */
.support-banner {
  background: #f0f9ff;
  padding: 60px 0;
  display: flex;
  align-items: center;
  min-height: 440px;
}

.support-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.support-banner__content {
  flex: 1;
}

.support-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.support-banner__text {
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 2rem;
  max-width: 480px;
}

.support-banner__btn {
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.support-banner__btn:hover {
  background: var(--clr-primary);
  color: white;
}

.support-banner__visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.support-banner__image-container {
  width: 100%;
  max-width: 500px;
}

.support-banner__image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Staggering effects on Desktop */
@media (min-width: 992px) {
  .journey-item.reverse .journey-visual {
    order: 2;
  }

  .journey-item.reverse .journey-content {
    order: 1;
    text-align: right;
  }

  .journey-item.reverse .journey-benefits {
    justify-content: flex-end;
  }

  .journey-item.reverse .journey-number {
    left: auto;
    right: -20px;
  }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .hero {
    height: auto;
  }
  .hero__inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .journey-item {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    position: relative;
    top: 0 !important;
    padding: 2.5rem 1.5rem;
  }

  .journey-wrapper {
    gap: 4rem;
  }

  .journey-benefits {
    justify-content: center;
  }

  .journey-number {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }

  .journey-visual {
    order: -1;
  }

  .journey-img-holder {
    max-width: 320px;
  }
}

@media (max-width: 991px) {
  .trust-section__grid {
    flex-direction: column;
    gap: 20px;
  }

  .trust-section__badge {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .trust-section__stars-container {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-section__logo {
    justify-content: center;
  }

  .support-banner {
    padding: 40px 0;
    text-align: center;
  }

  .support-banner__inner {
    flex-direction: column;
  }

  .support-banner__visual {
    justify-content: center;
    margin-top: 2rem;
  }
}
/* ============================================================
   WHY PILLCARE V2 (Vertical Cards)
   ============================================================ */
.why-v2 {
  background: var(--clr-white);
}

.why-v2__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.why-v2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.why-card-v2 {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.why-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}

.why-card-v2__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--clr-bg);
  position: relative;
}

.why-card-v2__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 110, 189, 0.4) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.why-card-v2:hover .why-card-v2__img::after {
  opacity: 1;
}

.why-card-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card-v2:hover .why-card-v2__img img {
  transform: scale(1.08);
}

.why-card-v2__content {
  padding: 2.5rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  transition: background 0.4s ease;
  position: relative;
  z-index: 2;
}

.why-card-v2:hover .why-card-v2__content {
  background: var(--clr-bg);
}

.why-card-v2__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--clr-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.why-card-v2__paragraph {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-card-v2__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-card-v2__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.why-card-v2:hover .why-card-v2__link {
  opacity: 1;
  transform: translateY(0);
}

.why-card-v2__link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   SUBSCRIPTION SECTION
   ============================================================ */
.subscription {
  background: var(--clr-bg);
}

.pricing-card .btn {
  justify-content: center;
}

.subscription__header {
  text-align: center;
  margin-bottom: 3rem;
}

.subscription-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--clr-white);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  max-width: fit-content;
  margin: 0 auto 3rem;
  position: relative;
  border: 1px solid var(--clr-border);
}

.subscription-tab {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.subscription-tab:hover {
  color: var(--clr-dark);
}

.subscription-tab.active {
  color: var(--clr-white);
  background: var(--clr-primary);
  box-shadow: 0 4px 12px rgba(10, 110, 189, 0.3);
}

.pricing-card-wrapper {
  max-width: 450px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--clr-accent);
}

.pricing-price-wrap {
  margin-bottom: 1.5rem;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.pricing-price.changing {
  opacity: 0;
  transform: translateY(-10px);
}

.pricing-billing {
  font-size: 0.95rem;
  color: var(--clr-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.pricing-billing.changing {
  opacity: 0;
}

.pricing-features {
  list-style: none;
  margin: 2.5rem 0;
  padding: 0;
  text-align: left;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--clr-dark);
  font-size: 1.05rem;
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 50px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-dark));
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--clr-white);
  box-shadow: var(--shadow-lg);
}

.cta-card__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: #9ef3ec;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.cta-card__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-family: var(--font-head);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

.cta-card__decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

@media (max-width: 900px) {
  .why-v2__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 4rem 1.5rem;
  }

  .cta-card__title {
    margin-bottom: 2rem;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   MAIN FOOTER V2 (Redesigned)
   ============================================================ */
.main-footer {
  /* Light blue from ref image */
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--clr-dark);
}

.footer__inner-v2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1.2fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.footer__logo-v2 img {
  height: 80px;
  width: auto;
}

.footer__title-v2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--clr-dark);
}

.footer__links-v2 {
  list-style: none;
  padding: 0;
}

.footer__links-v2 li {
  margin-bottom: 0.75rem;
}

.footer__links-v2 a {
  color: var(--clr-text);
  font-size: 0.95rem;
  transition:
    color 0.3s ease,
    border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer__links-v2 a:hover {
  color: var(--clr-primary);
  border-bottom-color: var(--clr-primary);
}

.footer__info-v2 p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer__info-v2 strong {
  font-weight: 700;
}

.footer__social-v2 {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social-v2 img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.footer__social-v2 a:hover img {
  transform: scale(1.1);
}

.footer__badge-v2 {
  margin-top: 2rem;
}

.footer__badge-v2 img {
  height: 40px;
  margin-bottom: 0.5rem;
}

.footer__badge-v2 a {
  display: block;
  font-size: 0.8rem;
  color: var(--clr-primary);
  text-decoration: underline;
}

.footer__nhs-v2 {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* filter: invert(1); */
}

.footer__nhs-v2 img {
  height: 120px;
  width: auto;
  align-self: flex-start;
}

.footer__nhs-v2 span {
  font-size: 0.85rem;
  color: var(--clr-muted);
}

/* Background Huge Text (Mitra Style) */
.footer__bg-text {
  position: absolute;
  bottom: -40px;
  left: 150px;
  font-family: var(--font-head);
  font-size: clamp(10rem, 25vw, 20rem);
  font-weight: 900;
  color: rgba(10, 110, 189, 0.1);
  /* Subtle brand color */
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* Bottom Bar */
.footer__bottom-v2 {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer__bottom-nav-v2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer__bottom-nav-v2 a {
  color: var(--clr-text);
  font-weight: 500;
}

.footer__bottom-nav-v2 a:hover {
  color: var(--clr-primary);
}

.footer__bottom-nav-v2 .pipe {
  color: rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--clr-bg);
  padding: 80px 0;
}

.faq__header {
  text-align: left;
  margin-bottom: 3.5rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.faq__header h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.downdown-arrow {
  width: 40px;
  height: 40px;
  background: var(--clr-primary-dk);
  transition:
    transform 0.3s ease,
    stroke var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.downdown-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr-white);
  transition:
    transform 0.3s ease,
    stroke var(--transition);
  flex-shrink: 0;
}

.faq-accordion {
  max-width: 800px;
  /* height: 800px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.h-0 {
  height: 0px;
}

.w-0 {
  width: 0px;
}

.faq__header span,
.faq__header h2 {
  user-select: none;
  cursor: pointer;
}

#faq-heading {
  margin: 0;
}

.flex {
  display: flex;
}

.rotate {
  transform: rotate(-180deg);
}

.faq-item {
  background: transparent;
  border-bottom: 1px solid var(--clr-border);
  border-radius: 0;
  transition: background var(--transition);
}

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

.faq-item:hover {
  background: rgba(10, 110, 189, 0.02);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-dark);
  text-align: left;
  transition:
    color var(--transition),
    background var(--transition);
}

.faq-trigger:hover,
.faq-item.active .faq-trigger {
  color: var(--clr-primary);
  background: var(--clr-primary-lt);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--clr-muted);
  transition:
    transform 0.3s ease,
    stroke var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--clr-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  padding: 0 1.75rem 1.5rem;
  color: var(--clr-muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer__inner-v2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__inner-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-footer {
    padding: 50px 0 30px;
  }

  .footer__bg-text {
    font-size: 6rem;
    bottom: 0;
  }
}

.footer__col-v2.footer__brand-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================================
   HOW IT WORKS (Vertical Timeline)
   ============================================================ */
.how-it-works {
  background: linear-gradient(to bottom, #ffffff, var(--clr-bg), #ffffff);
  overflow: hidden;
  padding-bottom: 6rem;
}

.how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* The vertical center line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: rgba(10, 110, 189, 0.15);
  border-radius: 4px;
}

/* The scroll progress fill */
.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* Will be updated via JS */
  background: var(--clr-primary);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 3rem;
  display: flex;
}

.timeline-item.left {
  padding-right: 4rem;
  justify-content: flex-end;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 4rem;
  justify-content: flex-start;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  width: 44px;
  height: 44px;
  background: var(--clr-white);
  border: 3px solid var(--clr-primary);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(10, 110, 189, 0.1);
  z-index: 2;
  transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15);
  background: var(--clr-primary);
  color: var(--clr-white);
}

.timeline-item.left .timeline-dot {
  right: -22px;
}

.timeline-item.right .timeline-dot {
  left: -22px;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(10, 110, 189, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  width: 100%;
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(10, 110, 189, 0.15);
  background: var(--clr-white);
}

.timeline-icon {
  width: 64px;
  height: 64px;
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

.timeline-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-primary);
  transition: stroke 0.4s ease;
}

.timeline-card:hover .timeline-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--clr-primary);
}

.timeline-card:hover .timeline-icon svg {
  stroke: var(--clr-white);
}

.timeline-content h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--clr-muted);
  line-height: 1.7;
  margin: 0;
}

/* CTA Block inside How It Works */
.cta-card__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

[data-aos="grow-line"] {
  height: 0;
  transition: height 1.2s ease;
}

[data-aos="grow-line"].aos-animate {
  height: 100%;
}

.how-cta-block {
  text-align: center;
  padding: 4rem 3rem;
  background: rgba(10, 110, 189, 0.04);
  border: 1px solid rgba(10, 110, 189, 0.1);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 6rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-cta-title {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.how-cta-text {
  color: var(--clr-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.how-cta-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .how-it-works {
    padding-bottom: 4rem;
  }

  .timeline-line {
    left: 30px;
  }

  .timeline-pulse {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 2rem;
  }

  .timeline-item.left,
  .timeline-item.right {
    margin-left: 0;
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 8px;
    right: auto;
  }

  .how-cta-block {
    padding: 3rem 1.5rem;
    margin-top: 4rem;
  }

  .how-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .how-cta-actions .btn {
    width: 100%;
    margin-left: 0 !important;
  }
}

/* ============================================================
   NEW PAGES STYLES (Sign Up, Download Now, Contact Us)
   ============================================================ */

/* Top Banner */
.top-banner {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.top-banner p {
  margin: 0;
}

/* Floating Chat Button */
.floating-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00a3e0;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.3s;
}

.floating-chat:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #0081b3;
}

.floating-chat svg {
  width: 20px;
  height: 20px;
}

.floating-chat.whatsapp {
  background-color: #25d366;
}

.floating-chat.whatsapp:hover {
  background-color: #1ebe5d;
}

/* Signup Page */
.signup-wrap {
  background-color: #92d9f4;
  /* Light blue from image */
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.signup-card {
  background: var(--clr-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  transition: transform 0.3s ease;
}

.signup-title {
  color: #00a3e0;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.custom-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.form-group label .required {
  color: red;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ffb3b3;
  /* As seen in image */
  border-radius: 30px;
  background-color: #ffe6e6;
  transition: all 0.3s ease;
  outline: none;
}

/* Focus Micro-interaction */
.form-control:focus {
  border-color: #00a3e0;
  background-color: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.1);
}

#dob,
#nhs_number {
  border-color: #b3e6ff;
  background-color: #e6f7ff;
}

.form-notice {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin: 15px 0;
}

.recaptcha-mock {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  background: #fafafa;
  margin-bottom: 20px;
}

.custom-check {
  margin-bottom: 25px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 1.1rem;
  background-color: #00a3e0;
  border: none;
}

.submit-btn:hover {
  background-color: #0081b3;
  transform: translateY(-2px);
}

.signup-steps {
  padding: 60px 0;
  background-color: var(--clr-white);
}

.step-card {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--clr-primary-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 30px;
  height: 30px;
  color: var(--clr-primary);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-highlight {
  background-color: #00a3e0;
  color: var(--clr-white);
  padding: 80px 0;
}

.quote-mark {
  font-size: 6rem;
  line-height: 1;
  font-family: serif;
  opacity: 0.3;
}

.highlight-quote {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.quote-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.quote-dots .dot.active {
  background: var(--clr-white);
}

/* Download Now Page */
.download-hero {
  background-color: var(--clr-dark);
  /* Fallback */
}

.hero-content-col {
  background-color: #4dc3ff;
  padding: 60px;
}

.download-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-dark);
}

.download-cards-section {
  background-color: #00a3e0;
  padding: 80px 0;
}

.download-card {
  background: var(--clr-white);
  padding: 40px;
  border-radius: 0;
  /* Square looking in design */
  height: 100%;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.download-card h2 {
  color: #053b75;
  font-weight: 700;
}

.qr-wrapper img {
  margin: 0 auto;
  max-width: 200px;
  transition: transform 0.3s;
}

.download-card:hover .qr-wrapper img {
  transform: scale(1.05);
  /* Micro-interaction */
}

.web-link {
  font-weight: bold;
  color: var(--clr-dark);
  text-decoration: underline;
}

/* Contact Us Page */
.contact-hero {
  height: 350px;
  width: 100%;
}

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

.contact-wrap {
  padding: 60px 0;
}

.contact-title {
  color: #00a3e0;
  font-weight: 700;
  font-size: 3rem;
}

.contact-details-list {
  padding: 0;
  list-style: none;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-details-list .c-icon {
  margin-top: 3px;
}

.contact-details-list .c-icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-dark);
}

.contact-details-list .c-text {
  font-size: 1rem;
  color: var(--clr-text);
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.3s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background: var(--clr-primary);
  transform: scale(1.1) translateY(-2px);
}

.contact-form .form-control {
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: #00a3e0;
  box-shadow: 0 0 0 2px rgba(0, 163, 224, 0.2);
}

.custom-select {
  padding: 12px 15px;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  width: 100%;
}

.custom-select:focus {
  border-color: #00a3e0;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 163, 224, 0.2);
}

@media (max-width: 768px) {
  .signup-card {
    padding: 20px;
  }

  .custom-row {
    flex-direction: column;
  }

  .hero-content-col {
    padding: 30px;
  }

  .download-content h1 {
    font-size: 2.5rem;
  }
}

/* ============================================================
   SIGNUP PAGE – Redesigned Premium Form
   ============================================================ */

/* ── Hero wrapper ── */
.su-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: linear-gradient(160deg, #e8f4fd 0%, #f0faf8 40%, #f7fbff 100%);
  overflow: hidden;
}

/* Floating background shapes */
.su-hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.su-shape {
  position: absolute;
  border-radius: 50%;
}

.su-shape--1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(10, 110, 189, 0.07) 0%,
    transparent 70%
  );
  animation: suFloat 8s ease-in-out infinite;
}

.su-shape--2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(0, 180, 160, 0.06) 0%,
    transparent 70%
  );
  animation: suFloat 10s ease-in-out infinite reverse;
}

.su-shape--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  background: radial-gradient(
    circle,
    rgba(10, 110, 189, 0.05) 0%,
    transparent 70%
  );
  animation: suFloat 12s ease-in-out infinite 2s;
}

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

  50% {
    transform: translate(15px, -20px) scale(1.05);
  }
}

/* ── Layout grid ── */
.su-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* ── Left visual panel ── */
.su-visual__content {
  padding-right: 1rem;
}

.su-visual__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-lt);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.su-visual__badge svg {
  flex-shrink: 0;
}

.su-visual__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.18;
  color: var(--clr-dark);
  margin-bottom: 1rem;
}

.su-visual__subtitle {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.7;
  /* max-width: 440px; */
  margin-bottom: 2.5rem;
}

/* Feature list */
.su-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.su-features__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.su-features__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.su-features__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.su-features__icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.su-features__item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--clr-dark);
  line-height: 1.3;
}

.su-features__item span {
  font-size: 0.82rem;
  color: var(--clr-muted);
}

/* Trust badge */
.su-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.25rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: max-content;
}

.su-trust__stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.su-trust p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  margin: 0;
}

.su-trust strong {
  color: var(--clr-dark);
}

/* ── Right form card ── */
.su-form-wrap {
  display: flex;
  justify-content: center;
}

.su-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow:
    0 8px 32px rgba(10, 110, 189, 0.1),
    0 1.5px 4px rgba(0, 0, 0, 0.04);
}

.su-card__header {
  text-align: left;
  margin-bottom: 1.75rem;
}

.su-card__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--clr-dark);
  margin-bottom: 0.35rem;
}

.su-card__subtitle {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin: 0;
}

/* ── Form fields ── */
.su-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.su-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.su-field__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.su-field__label span {
  color: #ef4444;
  margin-left: 2px;
}

.su-field__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.su-field__icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  stroke: var(--clr-muted);
  pointer-events: none;
  transition: stroke 0.25s ease;
  flex-shrink: 0;
}

.su-field__input {
  width: 100%;
  padding: 0.72rem 0.9rem 0.72rem 0.72rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--clr-dark);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.cls_que {
  border: none !important;
}
.su-field__input::placeholder {
  color: #b0bec5;
}

.su-field__input:hover {
  border-color: #b3d4f0;
}

.su-field__input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3.5px rgba(10, 110, 189, 0.12);
}

.su-field__input:focus ~ .su-field__icon,
.su-field__input-wrap:focus-within .su-field__icon {
  stroke: var(--clr-primary);
}

/* ── Notice ── */
.su-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--clr-primary-lt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-primary);
}

.su-notice svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--clr-primary);
  margin-top: 1px;
}

.su-notice p {
  font-size: 0.82rem;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.55;
}

/* ── Checkbox ── */
.su-checkbox {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.2rem 0;
  user-select: none;
}

.su-checkbox__input {
  /* position: absolute; */
  /* opacity: 0; */
  width: auto;
  height: auto;
}

.su-checkbox__box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--clr-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.su-checkbox__box svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-white);
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.su-checkbox__input:checked + .su-checkbox__box {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  border-color: transparent;
  transform: scale(1.05);
}

.su-checkbox__input:checked + .su-checkbox__box svg {
  opacity: 1;
  transform: scale(1);
}

.su-checkbox__input:focus-visible + .su-checkbox__box {
  box-shadow: 0 0 0 3px rgba(10, 110, 189, 0.2);
}

.su-checkbox__text {
  font-size: 0.88rem;
  color: var(--clr-text);
  line-height: 1.4;
}

.su-checkbox__text a {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.su-checkbox__text a:hover {
  color: var(--clr-primary-dk);
}

/* ── Submit button ── */
.su-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(10, 110, 189, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  margin-top: 0.4rem;
}

.su-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.su-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(10, 110, 189, 0.38);
}

.su-submit:hover::before {
  opacity: 1;
}

.su-submit:active {
  transform: translateY(0);
}

.su-submit__icon {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.su-submit__icon svg {
  width: 20px;
  height: 20px;
}

.su-submit:hover .su-submit__icon {
  transform: translateX(4px);
}

/* Footer note */
.su-card__footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.su-card__login-link {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.su-card__login-link:hover {
  color: var(--clr-primary-dk);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .su-layout {
    display: flex;
    flex-direction: column-reverse;
    /* grid-template-columns: 1fr; */
    gap: 2.5rem;
  }

  .su-visual__content {
    padding-right: 0;
    text-align: center;
  }

  .su-visual__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .su-features {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .su-trust {
    margin-left: auto;
    margin-right: auto;
  }

  .su-card {
    max-width: 560px;
  }

  .su-hero {
    padding: 110px 0 60px;
  }
}

@media (max-width: 576px) {
  .su-hero {
    padding: 100px 0 50px;
  }

  .su-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .su-card__title {
    font-size: 1.35rem;
  }

  .su-form__row {
    grid-template-columns: 1fr;
  }

  .su-visual__title {
    font-size: 1.7rem;
  }

  .su-features__item {
    padding: 0.75rem 0.9rem;
  }
}

/* ── Signup Step Transitions ── */
.su-card__step {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.su-card__step.d-none {
  display: none !important;
}

.su-info-content {
  margin-bottom: 2rem;
}

.su-info-content p {
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.su-example {
  background: var(--clr-primary-lt);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--clr-primary);
}

.su-example__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
}

.su-example__subtitle {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 1.2rem !important;
}

.su-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.su-timeline li {
  font-size: 0.88rem;
  position: relative;
  padding-left: 1.6rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.su-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--clr-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--clr-primary-lt);
}

.su-timeline li strong {
  color: var(--clr-dark);
}

.su-info-note {
  font-weight: 600;
  color: var(--clr-dark);
  padding-top: 0.5rem;
}

/* ── Choice Cards for Step 2 ── */
.su-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.su-choice-card {
  cursor: pointer;
  position: relative;
}

.su-choice-card__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.su-choice-card__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 1rem;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.su-choice-card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-primary-lt);
  color: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.su-choice-card__icon svg {
  width: 24px;
  height: 24px;
}

.su-choice-card__label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-dark);
  display: block;
}

.su-choice-card__input:checked + .su-choice-card__box {
  border-color: var(--clr-primary);
  background: var(--clr-primary-lt);
  box-shadow: 0 10px 30px rgba(10, 110, 189, 0.15);
  transform: translateY(-2px);
}

.su-choice-card__input:checked + .su-choice-card__box .su-choice-card__icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: scale(1.1);
}

.su-choice-card:hover .su-choice-card__box {
  border-color: var(--clr-primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(10, 110, 189, 0.1);
}

/* ============================================================
   REDESIGN V2 - Download & Contact Pages
   ============================================================ */

/* --- Download Hero V2 --- */
.download-hero-v2 {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  overflow: hidden;
  position: relative;
}

.hero-title-v2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  color: var(--clr-dark);
  font-weight: 700;
}

.hero-title-v2 span {
  color: var(--clr-primary);
  position: relative;
}

.hero-text-v2 {
  font-size: 1.15rem;
  color: var(--clr-muted);
  max-width: 540px;
}

.hero-benefits-v2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--clr-dark);
}

.benefit-item svg {
  color: var(--clr-accent);
}

.hero-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-hero-img {
  width: 100%;
  max-width: 420px;
  height: clamp(400px, 8vw, 500px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  position: relative;
  z-index: 2;
  object-fit: cover;
  border-radius: 16px;
}

.floating-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px dashed rgba(10, 110, 189, 0.2);
  animation: rotate 60s linear infinite;
}

.mockup-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: var(--clr-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.mockup-badge strong {
  font-size: 1.5rem;
  color: var(--clr-primary);
}

/* --- Premium Cards V2 --- */
.download-section-v2 {
  padding: 100px 0;
  background: var(--clr-white);
}

.premium-download-card {
  background: var(--clr-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.premium-download-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}

.card-icon-v2 {
  width: 64px;
  height: 64px;
  background: var(--clr-primary-lt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.card-icon-v2 svg {
  width: 32px;
  height: 32px;
  stroke: var(--clr-primary);
}

.qr-container-v2 {
  margin-top: 2rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.qr-container-v2 img {
  width: 180px;
  height: 180px;
}

.web-link-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 1.1rem;
  margin-top: 2rem;
  transition: color 0.3s ease;
}

.web-link-v2:hover {
  color: var(--clr-accent);
}

/* --- Contact Hero V2 --- */
.contact-hero-v2 {
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 33, 55, 0.7), rgba(13, 33, 55, 0.4));
  z-index: 1;
}

.contact-hero-img-v2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-wrap-v2 {
  position: relative;
  z-index: 2;
}

.hero-subtitle-v2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Premium Form V2 --- */
.premium-form-card {
  background: var(--clr-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title-v2 {
  font-family: var(--font-head);
  color: var(--clr-dark);
  font-weight: 700;
}

.form-floating-v2 {
  position: relative;
}

.form-control-v2,
.form-select-v2 {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  background: #f8fbff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-floating-v2 label {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-muted);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

textarea.form-control-v2:focus + label,
textarea.form-control-v2:not(:placeholder-shown) + label {
  top: -10px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.breadcrumb {
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 20px;
    color: #0d2137;
}

.breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.blog-hero-content{margin: 40px 0px;}

@media (max-width: 991px) {
  .download-hero-v2 {
    padding: 60px 0;
  }

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

  .hero-title-v2 {
    text-align: center;
  }

  .hero-benefits-v2 {
    align-items: center;
  }

  .hero-actions-center {
    display: flex;
    justify-content: center;
  }

  .premium-form-card {
    padding: 2rem;
  }
}
