:root {
  --navy: #4892e1;
  --blue: #16389e;
  --white: #ffffff;
  --light: #f8f9fc;
  --border: #e4e8f0;
  --text: #1a2340;
  --muted: #6b7a99;
  --radius: 12px;
  --shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, "SF Pro Text", BlinkMacSystemFont, "Helvetica Neue",
    sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo-text,
.btn,
.nav-cta {
  font-family: "Gabarito", sans-serif;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 6%;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

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

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.82;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.menu-open nav {
  z-index: 250;
}

.mobile-menu a {
  font-family: "Gabarito", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.15s;
}

.mobile-menu a:hover {
  color: var(--blue);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.13s;
}

.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.18s;
}

.mobile-menu.active a:nth-child(4) {
  transition-delay: 0.23s;
}

.mobile-menu.active a:nth-child(5) {
  transition-delay: 0.28s;
}

.mobile-menu .m-cta {
  font-size: 1rem;
  background: var(--navy);
  color: white !important;
  padding: 14px 36px;
  border-radius: 6px;
  margin-top: 8px;
}

/* LAYOUT */
section {
  padding: 96px 6%;
}

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

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* HERO */
#hero {
  padding-top: 136px;
  padding-bottom: 96px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.beta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.beta-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: "Gabarito", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 440px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 32px;
  padding-left: 12px;
  border-left: 2px solid var(--border);
  line-height: 1.6;
}

.hero-nopes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.nope {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.nope-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: "Gabarito", sans-serif;
  background: var(--navy);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.82;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Mockup */
.hero-mockup {
  position: relative;
}

.mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-top {
  background: var(--navy);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-top-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.mockup-top-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mockup-top h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
}

.mockup-top p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.mockup-body {
  padding: 18px 20px;
}

.m-patient {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--light);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.m-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: "Gabarito", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-patient-info h5 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.m-patient-info p {
  font-size: 0.72rem;
  color: var(--muted);
}

.m-tests {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.m-test {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 7px;
  border: 1px solid var(--border);
}

.m-test.active {
  border-color: var(--blue);
  background: #f0f6ff;
}

.m-test-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.m-test-time {
  font-size: 0.7rem;
  color: var(--muted);
}

.m-test-badge {
  font-size: 0.66rem;
  font-weight: 700;
  background: var(--blue);
  color: white;
  padding: 2px 7px;
  border-radius: 3px;
}

.m-results {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
}

.m-results-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.m-bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.m-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-bar-lbl {
  font-size: 0.69rem;
  color: var(--muted);
  width: 70px;
  flex-shrink: 0;
}

.m-bar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.m-bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
}

.m-bar-val {
  font-size: 0.69rem;
  font-weight: 700;
  color: var(--navy);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.m-float {
  position: absolute;
  top: -14px;
  right: -14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-float-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.m-float span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.m-float small {
  font-size: 0.67rem;
  color: var(--muted);
  display: block;
}

.m-float2 {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 9px 13px;
}

.m-float2 span {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.m-float2 small {
  font-size: 0.67rem;
  color: var(--muted);
}

/* PLATFORM */
#platform {
  background: var(--light);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.p-card {
  background: var(--white);
  padding: 26px 22px;
  transition: background 0.15s;
}

.p-card:hover {
  background: #f0f6ff;
}

.p-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--navy);
}

.p-card h3 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.p-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.p-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* TESTS */
#tests {
  background: var(--white);
}

.tests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.t-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  background: var(--white);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.t-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.t-card.highlight {
  border-color: var(--navy);
}

.t-time {
  font-family: "Gabarito", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.t-time-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.t-name {
  font-family: "Gabarito", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}

.t-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.t-use {
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
  padding: 7px 10px;
  background: var(--light);
  border-radius: 5px;
  border-left: 2px solid var(--navy);
}

.t-custom-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--navy);
}

/* EHR */
#ehr {
  background: var(--light);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.ehr-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.ehr-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  transition: background 0.15s;
}

.ehr-card:hover {
  background: #f0f6ff;
}

.ehr-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.ehr-card h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.ehr-card p {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.55;
}

.ehr-screen {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ehr-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ehr-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.ehr-bar-title {
  font-size: 0.71rem;
  color: var(--muted);
  margin-left: 6px;
}

.ehr-body {
  padding: 18px;
}

.ehr-patient-label {
  font-family: "Gabarito", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.ehr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}

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

.ehr-row-lbl {
  color: var(--muted);
}

.ehr-row-val {
  font-weight: 600;
  color: var(--text);
}

.ehr-row-val.ok {
  color: #22c55e;
}

.ehr-row-val.blue {
  color: var(--blue);
}

/* PRICING */
#pricing {
  background: var(--white);
}

.pricing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.check-sm {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.pr-card {
  background: var(--white);
  padding: 24px 20px;
  transition: background 0.15s;
}

.pr-card:hover {
  background: #f0f6ff;
}

.pr-name {
  font-family: "Gabarito", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pr-time {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.pr-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}

.pr-detail {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-cta h3 {
  font-family: "Gabarito", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.pricing-cta p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

.btn-white {
  font-family: "Gabarito", sans-serif;
  background: white;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-white:hover {
  opacity: 0.88;
}

/* BILLING */
#billing {
  background: var(--light);
}

.billing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.b-card {
  background: var(--white);
  padding: 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.15s;
}

.b-card:hover {
  background: #f0f6ff;
}

.b-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.b-card h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.b-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* WHEN */
#when {
  background: var(--white);
}

.when-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.w-card {
  background: var(--white);
  padding: 28px 20px;
  transition: background 0.15s;
}

.w-card:hover {
  background: #f0f6ff;
}

.w-num {
  font-family: "Gabarito", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.w-card h3 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.w-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* WHY */
#why {
  background: var(--light);
}

.why-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.why-item:first-child {
  padding-top: 0;
}

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

.why-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #fecaca;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ef4444;
  font-size: 0.62rem;
  font-weight: 700;
}

.why-item h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.why-item p {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-solution {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.why-solution-lbl {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.why-solution h3 {
  font-family: "Gabarito", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.why-solution p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.why-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
}

.why-check-icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* PATIENT */
#patient {
  background: var(--white);
}

.patient-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.patient-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.pat-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  transition: background 0.15s;
}

.pat-card:hover {
  background: #f0f6ff;
}

.pat-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.pat-card h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.pat-card p {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.55;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}

.patient-screenshots {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.patient-screenshots-wrap .patient-screenshot {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.phone {
  width: 205px;
  background: var(--navy);
  border-radius: 30px;
  padding: 13px 9px;
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 52px;
  height: 13px;
  background: var(--navy);
  border-radius: 7px;
  margin: 0 auto 9px;
}

.phone-screen {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.phone-head {
  background: var(--navy);
  padding: 13px;
  text-align: center;
}

.phone-head small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  display: block;
}

.phone-head h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.phone-prog {
  padding: 13px;
}

.phone-prog-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  color: var(--muted);
  margin-bottom: 5px;
}

.phone-prog-track {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}

.phone-prog-fill {
  height: 100%;
  width: 60%;
  background: var(--navy);
  border-radius: 2px;
}

.phone-q {
  padding: 0 13px 13px;
}

.phone-q p {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.5;
}

.phone-opts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-opt {
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
}

.phone-opt.sel {
  background: var(--navy);
  color: white;
  border-color: transparent;
}

.phone-mic {
  margin: 8px 13px 13px;
  background: var(--light);
  border-radius: 7px;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
}

.phone-mic-btn {
  width: 24px;
  height: 24px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-mic strong {
  font-size: 0.67rem;
  color: var(--navy);
  display: block;
  font-weight: 600;
}

.phone-mic span {
  font-size: 0.6rem;
  color: var(--muted);
}

/* FAQ */
#faq {
  background: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  padding: 26px 24px;
  transition: background 0.15s;
}

.faq-item:hover {
  background: #f0f6ff;
}

.faq-item h4 {
  font-family: "Gabarito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
#closing {
  background: var(--navy);
  padding: 112px 6%;
  text-align: center;
}

.closing-inner {
  max-width: 620px;
  margin: 0 auto;
}

.closing-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.closing-title {
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.closing-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

.closing-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 32px;
  text-align: left;
}

.closing-box h4 {
  font-family: "Gabarito", sans-serif;
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.closing-box p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.closing-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 16px;
}

/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.footer-logo-text {
  font-family: "Gabarito", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

footer p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ANIMATE */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 1024px) {
  .tests-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-inner,
  .two-col,
  .why-cols,
  .patient-cols {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-mockup,
  .ehr-screen {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .patient-screenshots {
    flex-direction: column;
    align-items: center;
  }

  .patient-screenshots-wrap .patient-screenshot {
    max-width: 260px;
  }

  .patient-screenshots-wrap .patient-screenshot:last-child {
    display: none;
  }

  section {
    padding: 72px 5%;
  }

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

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

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

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

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

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

  .pricing-cta {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  #closing {
    padding: 80px 5%;
  }
}

@media (max-width: 480px) {
  .when-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .closing-actions {
    flex-direction: column;
  }
}
