:root {
  --bg: #fcfefb;
  --surface: #ffffff;
  --surface-soft: #f6fbf5;
  --ink: #111317;
  --ink-soft: #5b616d;
  --line: #dde4e8;
  --line-strong: #c4d0d7;
  --brand: #0ea95f;
  --brand-deep: #0b854c;
  --mint: #d8ff8f;
  --lime: #c6ff6d;
  --sky: #c9edff;
  --peach: #ffd9cf;
  --teal: #0e5f61;
  --dark: #0b1118;
  --radius: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 10px 30px rgba(19, 35, 44, 0.08);
  --shadow-lg: 0 24px 64px rgba(9, 18, 26, 0.18);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(175, 255, 164, 0.22), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(197, 237, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.site-bg-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-video-screen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.home-video-screen::before,
.home-video-screen::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  height: 22vh;
  pointer-events: none;
  z-index: 2;
}

.home-video-screen::before {
  top: -1px;
  background: linear-gradient(180deg, rgba(252, 254, 251, 1) 0%, rgba(252, 254, 251, 0.74) 34%, rgba(252, 254, 251, 0) 100%);
  filter: blur(12px);
}

.home-video-screen::after {
  bottom: -1px;
  background: linear-gradient(0deg, rgba(252, 254, 251, 1) 0%, rgba(252, 254, 251, 0.74) 34%, rgba(252, 254, 251, 0) 100%);
  filter: blur(12px);
}

.site-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.05) brightness(1.02) contrast(0.92);
  transform: scale(1.02);
}

.home-video-screen .site-bg-video-wrap {
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 10%, #000 24%, #000 76%, rgba(0, 0, 0, 0.46) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.46) 10%, #000 24%, #000 76%, rgba(0, 0, 0, 0.46) 90%, rgba(0, 0, 0, 0) 100%);
}

.site-bg-video-wrap::after {
  content: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 88%, rgba(198, 255, 109, 0.16), transparent 32%),
    radial-gradient(circle at 92% 84%, rgba(207, 246, 255, 0.16), transparent 30%);
  z-index: -1;
}

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

a {
  color: #087342;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem;
  color: #000;
  background: #fff;
  border: 1px solid #000;
}

.skip-link:focus {
  left: 0.5rem;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208, 218, 224, 0.85);
}

.header-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #2d3540;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.46rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  text-decoration: none;
  background: #f3f8f7;
  border-color: #d6e3e1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  border: 1px solid #c6d2d8;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0.44rem 0.72rem;
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 0.7rem 1.06rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button.primary,
.button.nav-cta {
  color: #fff;
  background: linear-gradient(160deg, #10181f, #1d2b35);
  box-shadow: 0 10px 26px rgba(6, 17, 27, 0.32);
}

.button.secondary,
.button.nav-ghost {
  color: #111c26;
  background: #fff;
  border-color: #c8d3d8;
}

h1,
h2,
h3 {
  margin: 0 0 0.62rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-family: "Sora", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 4.35rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

h3 {
  font-size: clamp(1.12rem, 1.4vw, 1.45rem);
}

p {
  margin: 0 0 0.82rem;
}

p.lead {
  color: var(--ink-soft);
  max-width: 65ch;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 2.8rem;
}

.hero-home {
  min-height: clamp(520px, calc(82vh - 82px), 700px);
  min-height: clamp(520px, calc(82svh - 82px), 700px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(177, 199, 212, 0.45);
  pointer-events: none;
}

.hero::before {
  width: 1600px;
  height: 580px;
  left: 50%;
  bottom: -280px;
  transform: translateX(-50%);
}

.hero::after {
  width: 1220px;
  height: 420px;
  left: 50%;
  bottom: -180px;
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-left {
  left: -120px;
  top: 130px;
  background: radial-gradient(circle, rgba(198, 255, 109, 0.48), rgba(198, 255, 109, 0));
}

.hero-glow-right {
  right: -120px;
  top: 70px;
  background: radial-gradient(circle, rgba(206, 241, 255, 0.58), rgba(206, 241, 255, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.25rem;
}

.hero-grid > * {
  min-width: 0;
}

.hero-home-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
}

.hero-copy-home {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 100%;
}

.hero-inner-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-copy-home h1,
.hero-copy-home p.lead {
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  border: 1px solid #d5e6d7;
  background: #f7fff2;
  color: #2f7a41;
  padding: 0.34rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

.cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.hero-offer {
  width: min(760px, 100%);
  max-width: 100%;
  min-width: 0;
  border-radius: 30px;
  border: 1px solid #d8e7ae;
  padding: 1.25rem 1.35rem;
  text-align: left;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 241, 255, 0.36), transparent 38%),
    radial-gradient(circle at 84% 12%, rgba(197, 255, 111, 0.42), transparent 42%),
    linear-gradient(120deg, #f8fde4 0%, #ebff9f 50%, #ddff73 100%);
  box-shadow: 0 18px 42px rgba(62, 93, 24, 0.2);
}

.home-priority-lane {
  padding-top: 0.35rem;
  padding-bottom: 1.8rem;
}

.home-priority-lane .hero-offer {
  margin-inline: auto;
}

.offer-topline {
  display: grid;
  grid-template-columns: 1.2fr 1.45fr;
  align-items: end;
  gap: 0.75rem 1.15rem;
}

.offer-metric {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: "Sora", "Manrope", sans-serif;
}

.offer-metric-main {
  color: #004e34;
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 4px 4px 0 rgba(0, 78, 52, 0.2);
}

.offer-metric-old {
  color: rgba(12, 84, 58, 0.45);
  font-size: clamp(1.3rem, 2.6vw, 2.6rem);
  font-weight: 700;
  text-decoration: line-through;
  letter-spacing: -0.01em;
}

.offer-topline h2 {
  margin: 0;
  color: #004f36;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.15rem, 2.45vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.offer-divider {
  height: 1px;
  margin: 0.9rem 0 0.8rem;
  background: rgba(0, 89, 63, 0.2);
}

.offer-copy {
  color: #112f25;
  font-size: clamp(1rem, 1.18vw, 1.2rem);
}

.offer-points {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-points li {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(0, 92, 64, 0.24);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f4d38;
  padding: 0.34rem 0.52rem 0.34rem 1.7rem;
  text-align: left;
}

.offer-points li::before {
  content: "✓";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 92, 64, 0.65);
  color: #0c7a4f;
  font-size: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 255, 225, 0.8);
}

.workflow-loop {
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 87, 61, 0.18);
  background: rgba(255, 255, 255, 0.45);
  padding: 0.66rem;
}

.workflow-rail {
  position: relative;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 112, 74, 0.2);
  background:
    linear-gradient(90deg, rgba(181, 241, 122, 0.62), rgba(194, 236, 255, 0.55), rgba(181, 241, 122, 0.62));
  overflow: hidden;
}

.workflow-pulse {
  position: absolute;
  top: 2px;
  left: -18%;
  width: 20%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 92, 64, 0), rgba(0, 92, 64, 0.88), rgba(0, 92, 64, 0));
  filter: blur(0.3px);
  animation: workflowPulse 3.8s linear infinite;
}

.workflow-marquee {
  margin-top: 0.6rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.workflow-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 0.55rem;
  animation: workflowTicker 20s linear infinite;
}

.workflow-step {
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(0, 86, 60, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: #0a4732;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.32rem 0.64rem;
}

.offer-static-steps {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@keyframes workflowPulse {
  from {
    left: -20%;
  }

  to {
    left: 100%;
  }
}

@keyframes workflowTicker {
  from {
    transform: translateX(0);
  }

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

.hero-floating {
  width: min(900px, 100%);
  margin: 0.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.float-card {
  position: relative;
  width: 100%;
  min-height: 96px;
  border-radius: 22px;
  padding: 1rem 1.05rem;
  border: 1px solid #dae5ea;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.float-card p {
  margin: 0 0 0.3rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.float-card span {
  color: #5b6878;
  font-size: 0.88rem;
}

.float-a {
  background: linear-gradient(155deg, #e9f8ff, #ffffff);
}

.float-b {
  background: linear-gradient(155deg, #edffe2, #ffffff);
}

.float-c {
  background: linear-gradient(155deg, #ffece3, #ffffff);
}

.hero-lab-card {
  border-radius: var(--radius-xl);
  border: 1px solid #d4dfe5;
  background: linear-gradient(160deg, #141f29, #0f1821);
  color: #d8f4e7;
  padding: 1.2rem;
  box-shadow: var(--shadow-lg);
}

.tiny-label {
  margin: 0 0 0.7rem;
  color: #87d9ae;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
}

.process-list span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #dafde7;
  border: 1px solid rgba(180, 255, 214, 0.34);
  background: rgba(180, 255, 214, 0.14);
}

.process-list p {
  margin: 0.24rem 0 0;
  color: #cce7dd;
}

.light {
  color: #9fd9bc;
}

.inner-stat-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.inner-stat-grid article {
  border-radius: 16px;
  border: 1px solid #dce5ea;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.85rem 0.92rem;
}

.inner-stat-grid h3 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.inner-stat-grid p {
  margin: 0;
  color: #5d6771;
  font-size: 0.87rem;
}

.trust-strip {
  margin-top: 0.1rem;
  padding: 0.1rem 0 1.45rem;
}

.trust-wrap {
  border-radius: 24px;
  border: 1px solid #d8ece0;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 10% 50%, rgba(198, 255, 109, 0.24), transparent 35%),
    radial-gradient(circle at 90% 45%, rgba(192, 233, 255, 0.34), transparent 35%),
    #ffffff;
}

.trust-title {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2a7246;
  font-weight: 700;
  font-size: 0.78rem;
  text-align: center;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
}

.trust-items span {
  border-radius: 999px;
  border: 1px solid #d9e2e7;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.45rem 0.56rem;
  font-size: 0.82rem;
  color: #324451;
  text-align: center;
  font-weight: 600;
}

.trust-logos {
  margin-top: 0.95rem;
  padding-top: 0.9rem;
  border-top: 1px solid #dbe7ec;
  overflow: hidden;
}

.trust-logos-track {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  animation: trustLogoTicker 28s linear infinite;
}

.trust-logo-chip {
  flex: 0 0 auto;
  min-width: 146px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid #d7e3e9;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-logo-chip img {
  display: block;
  width: auto;
  height: auto;
  max-width: 122px;
  max-height: 30px;
  object-fit: contain;
}

@keyframes trustLogoTicker {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .trust-logos-track {
    animation: none;
  }
}

.section {
  position: relative;
  padding: 3.1rem 0;
}

.section.alt {
  background:
    radial-gradient(circle at 10% 40%, rgba(197, 236, 255, 0.22), transparent 32%),
    radial-gradient(circle at 92% 62%, rgba(198, 255, 109, 0.2), transparent 30%),
    #fcfffb;
  border-top: 1px solid #e4ecef;
  border-bottom: 1px solid #e4ecef;
}

.section-head {
  margin-bottom: 1rem;
}

.stack-scroll-section {
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
  min-height: 235vh;
  --stack-progress: 0;
  --stack-mid: 0;
  --stack-text-opacity: 1;
  --stack-text-shift: 0px;
}

.stack-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: visible;
  border-top: 1px solid #dce6ea;
  border-bottom: 1px solid #dce6ea;
  background:
    radial-gradient(circle at 6% 50%, rgba(198, 255, 109, 0.32), transparent 34%),
    radial-gradient(circle at 94% 50%, rgba(198, 255, 109, 0.32), transparent 34%),
    radial-gradient(circle at 14% 32%, rgba(201, 237, 255, 0.28), transparent 35%),
    radial-gradient(circle at 84% 65%, rgba(201, 237, 255, 0.28), transparent 35%),
    linear-gradient(180deg, #ffffff, #fbfffd);
}

.stack-curve {
  position: absolute;
  left: 50%;
  width: 1800px;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(154, 180, 194, 0.34);
  transform: translateX(-50%);
}

.stack-curve-top {
  top: -260px;
  height: 640px;
}

.stack-curve-bottom {
  bottom: -430px;
  height: 760px;
}

.stack-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  filter: blur(14px);
  border-radius: 50%;
}

.stack-glow-a {
  left: -130px;
  top: 240px;
  background: radial-gradient(circle, rgba(198, 255, 109, 0.56), rgba(198, 255, 109, 0));
}

.stack-glow-b {
  right: -130px;
  top: 240px;
  background: radial-gradient(circle, rgba(201, 237, 255, 0.6), rgba(201, 237, 255, 0));
}

.stack-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.stack-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: 290px;
  height: 138px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(212, 237, 255, 0.85), rgba(205, 255, 189, 0.88));
  filter: blur(22px);
  border-radius: 999px;
  opacity: calc(var(--stack-mid, 0) * 0.85);
  pointer-events: none;
  z-index: 1;
}

.stack-copy {
  position: relative;
  z-index: 40;
  text-align: center;
  max-width: 760px;
  transform: translateY(var(--stack-text-shift));
  opacity: var(--stack-text-opacity);
  transition: opacity 0.2s linear;
}

.stack-copy h2 {
  margin-inline: auto;
  max-width: 13.5ch;
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.stack-copy p.muted {
  margin-inline: auto;
  max-width: 58ch;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(5px);
}

.stack-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.stack-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 188px;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, filter, opacity;
  z-index: 4;
}

.stack-card-inner {
  border-radius: 24px;
  border: 1px solid #d4e0e6;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(12, 26, 36, 0.16);
  padding: 0.5rem;
}

.stack-mini {
  margin: 0.52rem 0 0;
  text-align: center;
  color: #3f4f5d;
  font-size: 0.75rem;
  font-weight: 700;
}

.media-placeholder {
  height: 164px;
  border-radius: 16px;
  border: 1px solid #b7cbd8;
  background: #eef6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.media-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder span {
  border-radius: 999px;
  border: 1px solid rgba(56, 79, 95, 0.25);
  background: rgba(255, 255, 255, 0.78);
  color: #314656;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.34rem 0.6rem;
}

.grid {
  display: grid;
  gap: 0.95rem;
}

.grid.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: #2f7b42;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
  font-weight: 700;
}

.service-card {
  background: linear-gradient(170deg, rgba(246, 255, 243, 0.95), rgba(255, 255, 255, 1));
}

.service-card::before,
.doctor-card::before,
.faq-card::before {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #66cd8f, #8ed8ff);
}

.service-grid .card:hover,
.feature-mosaic .mosaic-card:hover,
.doctor-card:hover,
.faq-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

.doctor-card {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.doctor-photo-placeholder {
  margin: 0.05rem 0 0.25rem;
  border-radius: 20px;
  border: 1px solid #d2e0e8;
  background:
    radial-gradient(circle at 18% 24%, rgba(194, 231, 255, 0.56), transparent 42%),
    radial-gradient(circle at 85% 82%, rgba(201, 255, 190, 0.46), transparent 46%),
    #f4fbff;
  position: relative;
  display: block;
  overflow: hidden;
}

.doctor-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(16, 34, 47, 0), rgba(16, 34, 47, 0.3));
  pointer-events: none;
  z-index: 2;
}

.doctor-photo-placeholder::after {
  content: "Phoenix Oncopathology";
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(196, 255, 108, 0.45);
  background: rgba(10, 30, 38, 0.75);
  color: #dff7ea;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  pointer-events: none;
  z-index: 3;
}

.doctor-photo-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-photo-placeholder.is-aparna img {
  height: auto;
}

.doctor-photo-placeholder.is-hitankhi img {
  height: auto;
}

.doctor-photo-placeholder.is-anjali img {
  height: auto;
}

.doctor-photo-placeholder span {
  border-radius: 999px;
  border: 1px solid rgba(52, 76, 94, 0.24);
  background: rgba(255, 255, 255, 0.84);
  color: #355062;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.78rem;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.mosaic-card {
  border-radius: 26px;
  padding: 1.35rem;
  border: 1px solid #d6e2e8;
  box-shadow: var(--shadow-sm);
}

.mosaic-card h3 {
  margin-bottom: 0.45rem;
}

.mosaic-card p {
  color: #30404d;
  max-width: 44ch;
}

.mosaic-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.mosaic-card.sky {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(160deg, #b9e6ff, #d8f3ff);
}

.mosaic-card.lime {
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.65), transparent 45%),
    linear-gradient(160deg, #d7ff9f, #eeffd1);
}

.mosaic-card.mint {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.7), transparent 42%),
    linear-gradient(160deg, #cffff1, #e9fff9);
}

.mosaic-card.peach {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.65), transparent 42%),
    linear-gradient(160deg, #ffd8ca, #ffece5);
}

.muted {
  color: var(--ink-soft);
}

.tiny {
  font-size: 0.86rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dce4e9;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

th,
td {
  padding: 0.76rem;
  border-bottom: 1px solid #e4ecef;
  text-align: left;
}

th {
  background: #f4faf6;
}

.form-grid {
  display: grid;
  gap: 0.82rem;
}

.request-form-card {
  overflow: hidden;
}

.request-mini-grid {
  gap: 0.82rem;
}

.request-form input[data-pickup-location] {
  border-color: #9fc1d1;
}

.pickup-map-wrap {
  border: 1px solid #d6e3ea;
  border-radius: 14px;
  background: #f9fcff;
  padding: 0.72rem;
}

.pickup-map {
  margin-top: 0.45rem;
  height: 280px;
  border-radius: 12px;
  border: 1px solid #d7e2ea;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(198, 255, 109, 0.2), transparent 48%),
    linear-gradient(160deg, #eef6fb, #f8fbff);
}

.request-status {
  min-height: 1.2rem;
  margin: 0;
}

.request-status.is-error {
  color: #a02635;
  font-weight: 700;
}

.request-status.is-success {
  color: #0a7647;
  font-weight: 700;
}

.request-form button[disabled] {
  opacity: 0.74;
  cursor: not-allowed;
}

.pac-container {
  border: 1px solid #d5e1e8;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(10, 24, 36, 0.14);
  z-index: 2000;
}

.pac-item {
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

label {
  display: block;
  font-size: 0.92rem;
  color: #41505f;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cdd7dc;
  border-radius: 12px;
  background: #fff;
  color: #111b24;
  font: inherit;
  padding: 0.66rem 0.75rem;
}

textarea {
  resize: vertical;
}

.cta-shell {
  padding-top: 1.4rem;
}

.cta-banner {
  border-radius: 24px;
  border: 1px solid #d2e7db;
  background:
    radial-gradient(circle at 18% 50%, rgba(198, 255, 109, 0.22), transparent 35%),
    radial-gradient(circle at 84% 26%, rgba(201, 237, 255, 0.24), transparent 35%),
    #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 1rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #d6e1e6;
  background: linear-gradient(180deg, #f6faf8, #ffffff);
  padding: 2rem 0 1.35rem;
}

.location-review-section {
  padding-top: 1rem;
  padding-bottom: 0.4rem;
}

.location-review-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  gap: 1rem;
}

.location-map-card,
.google-reviews-card {
  border: 1px solid #d6e2e8;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.location-map-card h2,
.google-reviews-card h3 {
  margin-bottom: 0.4rem;
}

.map-frame {
  margin-top: 0.72rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7e1e7;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact-quick-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.google-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.google-reviews-list {
  margin-top: 0.72rem;
  display: grid;
  gap: 0.6rem;
}

.google-review-item {
  border: 1px solid #d7e3e8;
  border-radius: 14px;
  background: #f9fcfb;
  padding: 0.72rem;
}

.google-review-head {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.google-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cfe0e8;
  background: linear-gradient(150deg, #e7f2f8, #d7ebe4);
  flex: 0 0 42px;
}

.google-review-avatar img,
.google-review-avatar span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.google-review-avatar img {
  object-fit: cover;
}

.google-review-avatar span {
  font-size: 0.76rem;
  font-weight: 800;
  color: #1a3a4a;
  letter-spacing: 0.02em;
}

.google-review-meta {
  min-width: 0;
  flex: 1;
}

.google-review-score {
  margin: 0 0 0 auto;
  font-weight: 800;
  color: #0f3a4b;
  white-space: nowrap;
  font-size: 0.84rem;
}

.google-review-copy {
  margin: 0.45rem 0 0;
  color: #33414e;
}

.google-review-author {
  margin: 0;
  font-weight: 700;
  color: #5a6774;
  font-size: 0.84rem;
}

.google-review-author a {
  color: inherit;
}

.google-review-time {
  margin: 0.14rem 0 0;
  color: #667382;
  font-size: 0.78rem;
}

.google-review-link {
  display: inline-flex;
  margin-top: 0.46rem;
  font-weight: 700;
}

.review-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.78rem;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 0.5rem;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(6, 15, 23, 0.25);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.floating-action:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.floating-action svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 16px;
}

.floating-action.whatsapp {
  background: linear-gradient(150deg, #0fbe66, #0a9f54);
}

.floating-action.call {
  background: linear-gradient(150deg, #0f7fa3, #0d617d);
}

.floating-action.linkedin {
  background: linear-gradient(150deg, #1a6fb8, #145591);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.list-clean {
  margin: 0;
  padding-left: 1rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.js .reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-inner-grid,
  .grid.cards-3,
  .feature-mosaic,
  .footer-grid,
  .cta-banner,
  .location-review-grid {
    grid-template-columns: 1fr;
  }

  .offer-points,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-topline {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .offer-metric-main {
    font-size: clamp(1.7rem, 5vw, 3.2rem);
  }

  .offer-metric-old {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
  }

  .workflow-track {
    animation-duration: 22s;
  }

  .hero-floating {
    width: min(860px, 100%);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .trust-logo-chip {
    min-width: 136px;
    height: 56px;
  }

  .trust-logo-chip img {
    max-width: 112px;
    max-height: 27px;
  }

  .stack-copy {
    max-width: 650px;
  }

  .stack-card {
    width: 162px;
  }

  .media-placeholder {
    height: 138px;
  }

  .float-card {
    min-height: 92px;
    padding: 0.9rem;
  }

  .doctor-photo-placeholder {
    height: auto;
  }
}

@media (max-width: 920px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    row-gap: 0.55rem;
    padding: 0.45rem 0;
  }

  .brand {
    grid-column: 1 / 2;
  }

  .header-actions {
    grid-column: 2 / 3;
  }

  .header-actions .nav-cta,
  .header-actions .nav-ghost {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding-bottom: 0.5rem;
    border-top: 1px solid #e3eaee;
    padding-top: 0.55rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 3.1rem;
  }

  h1 {
    max-width: 24ch;
  }

  .offer-topline h2 {
    font-size: clamp(1.1rem, 5.2vw, 1.6rem);
  }

  .offer-metric {
    gap: 0.34rem;
  }

  .offer-points li {
    font-size: 0.8rem;
  }

  .workflow-loop {
    padding: 0.58rem;
  }

  .workflow-step {
    font-size: 0.75rem;
    padding: 0.28rem 0.56rem;
  }

  .workflow-track {
    animation-duration: 24s;
  }

  .offer-points,
  .inner-stat-grid,
  .grid.cards-2,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .stack-scroll-section {
    min-height: auto;
  }

  .stack-sticky {
    position: relative;
    min-height: auto;
    padding: 2.1rem 0;
  }

  .stack-shell {
    min-height: auto;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }

  .stack-copy {
    max-width: 100%;
    margin-bottom: 1.1rem;
  }

  .stack-copy h2 {
    max-width: 14ch;
    font-size: clamp(1.9rem, 10vw, 3.3rem);
  }

  .stack-canvas {
    position: static;
    pointer-events: auto;
    display: grid;
    gap: 0.75rem;
  }

  .stack-card {
    position: static;
    width: 100%;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .stack-curve,
  .stack-glow {
    display: none;
  }

  .hero-floating {
    display: none;
  }

  .doctor-photo-placeholder {
    height: auto;
  }

  .trust-logos {
    margin-top: 0.8rem;
    padding-top: 0.75rem;
  }

  .trust-logos-track {
    animation-duration: 34s;
  }

  .trust-logo-chip {
    min-width: 128px;
    height: 52px;
    padding: 0.45rem 0.72rem;
  }

  .trust-logo-chip img {
    max-width: 102px;
    max-height: 24px;
  }

  .map-frame iframe {
    height: 260px;
  }

  .pickup-map {
    height: 228px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 0.42rem;
  }

  .floating-action {
    width: 46px;
    height: 46px;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
  }

  .floating-action span {
    display: none;
  }
}
