@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #0b1f33;
  --muted: #52616b;
  --soft: #eaf6fa;
  --surface: #ffffff;
  --line: #dce5ec;
  --blue: #087ea4;
  --blue-dark: #0b1f33;
  --green: #28a66a;
  --mint: #e4f7ec;
  --coral: #d94a3a;
  --amber: #f3b047;
  --shadow: 0 18px 45px rgba(19, 33, 47, 0.12);
  font-family:
    "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7faf8;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 236, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  width: min(1220px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 112px;
  height: auto;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 800;
}

.brand-name {
  display: grid;
  line-height: 1.05;
}

.brand-name small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  border-radius: 8px;
  color: #30445a;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 10px 11px;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--blue-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  padding: 0 16px;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

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

.button-primary {
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(9, 104, 215, 0.2);
  color: #fff;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--blue-dark);
}

.button-quiet {
  background: var(--mint);
  color: #136345;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 28, 48, 0.88), rgba(6, 55, 87, 0.68) 52%, rgba(248, 251, 253, 0.18)),
    url("assets/app-agenda.png") right center / min(46vw, 620px) auto no-repeat,
    linear-gradient(135deg, #0b5db4, #1b916c 62%, #f8fbfd);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 6vw;
  bottom: -8vh;
  width: min(34vw, 420px);
  height: min(65vh, 610px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    url("assets/app-dashboard.png") center top / cover no-repeat;
  box-shadow: 0 36px 80px rgba(4, 17, 31, 0.28);
  content: "";
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 72px 0 104px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #bfe8da;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--amber);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: 4.2rem;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.hero-proof div {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 14px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.6rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.band {
  padding: 86px 0;
}

.band-white {
  background: #fff;
}

.band-soft {
  background: #f1f7fa;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 3rem;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p,
.text-lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(19, 33, 47, 0.05);
  padding: 26px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

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

.icon-tile {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
}

.card:nth-child(2) .icon-tile,
.feature-list li:nth-child(2n) .icon-tile {
  background: var(--mint);
  color: var(--green);
}

.card:nth-child(3) .icon-tile,
.feature-list li:nth-child(3n) .icon-tile {
  background: #fff1db;
  color: #a86509;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-dark);
  font-weight: 700;
}

button.text-link,
.contact-reveal {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.contact-reveal span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.step::before {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  content: counter(step);
  counter-increment: step;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: #31465c;
  font-weight: 800;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.feature-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.feature-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.feature-list .icon-tile,
.check-list .icon-tile {
  width: 40px;
  height: 40px;
  margin: 0;
  flex: 0 0 auto;
}

.feature-list strong,
.check-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list span,
.check-list span {
  color: var(--muted);
  line-height: 1.55;
}

.product-frame {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: end;
}

.phone-stack {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.phone {
  position: absolute;
  width: min(240px, 46vw);
  overflow: hidden;
  border: 10px solid #101820;
  border-radius: 34px;
  background: #101820;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
}

.phone.one {
  z-index: 3;
  transform: translateX(-68px) rotate(-4deg);
}

.phone.two {
  z-index: 2;
  transform: translate(82px, 34px) rotate(5deg);
}

.phone.three {
  z-index: 1;
  opacity: 0.82;
  transform: translate(18px, -84px) scale(0.9);
}

.governance {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.security-panel {
  border-radius: 8px;
  background: #102538;
  color: #fff;
  padding: 34px;
}

.security-panel p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.7rem;
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  background: linear-gradient(135deg, #0d5fb7, #188264 72%, #f3b047);
  color: #fff;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.65;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 39, 62, 0.9), rgba(12, 81, 112, 0.78)),
    url("assets/app-dashboard.png") right 18% center / min(38vw, 500px) auto no-repeat,
    #12324b;
  color: #fff;
  padding: 94px 0 78px;
}

.page-hero .hero-lead {
  max-width: 760px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.5fr);
  gap: 36px;
  align-items: start;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #31465c;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-success {
  display: none;
  margin-top: 16px;
  border: 1px solid #a8dfc8;
  border-radius: 8px;
  background: var(--mint);
  color: #136345;
  font-weight: 800;
  padding: 14px;
}

.form-success.is-visible {
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.login-panel {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  gap: 18px;
  text-align: center;
}

.login-audience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.legal {
  max-width: 860px;
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(10, 39, 62, 0.94), rgba(12, 81, 112, 0.82)),
    #12324b;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  padding: 9px 12px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(19, 33, 47, 0.05);
  padding: 24px;
}

.legal-summary h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-summary p {
  color: var(--muted);
  line-height: 1.65;
}

.legal-document {
  max-width: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(19, 33, 47, 0.05);
  padding: clamp(24px, 4vw, 46px);
}

.legal h2 {
  margin-top: 32px;
  font-size: 1.55rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  margin: 26px 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.legal ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.75;
}

.retention-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.notice-box {
  border: 1px solid #b8dce8;
  border-radius: 8px;
  background: #eaf6fa;
  color: #213f54;
  font-weight: 800;
  line-height: 1.6;
  margin: 18px 0;
  padding: 16px;
}

.privacy-form .button {
  width: 100%;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0e2030;
  color: #fff;
}

.footer-inner {
  display: grid;
  width: min(1160px, calc(100% - 32px));
  grid-template-columns: 1.2fr repeat(4, 0.6fr);
  gap: 26px;
  margin: 0 auto;
  padding: 46px 0;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  padding: 18px 0 26px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 14px;
  }

  .nav-actions .button-secondary {
    display: none;
  }

  h1,
  .landing-hero h1,
  .page-hero h1 {
    font-size: 3.5rem;
  }

  .section-heading h2,
  .clinic-cta h2 {
    font-size: 2.45rem;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(6, 28, 48, 0.92), rgba(6, 55, 87, 0.78)),
      url("assets/app-agenda.png") center bottom / 78vw auto no-repeat,
      #0b5db4;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding-bottom: 260px;
  }

  .audience-grid,
  .steps,
  .split,
  .governance,
  .legal-layout,
  .page-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .steps {
    counter-reset: step;
  }

  .product-frame,
  .phone-stack {
    min-height: 520px;
  }

  .cta-band .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    width: min(100% - 22px, 1160px);
  }

  .brand-name small,
  .nav-actions .button-primary {
    display: none;
  }

  h1,
  .landing-hero h1,
  .page-hero h1 {
    font-size: 2.85rem;
  }

  .hero-lead,
  .landing-hero .hero-lead {
    font-size: 1.08rem;
  }

  .section-heading h2,
  .clinic-cta h2 {
    font-size: 2.1rem;
  }

  .hero-content {
    padding: 56px 0 230px;
  }

  .hero-proof,
  .feature-list,
  .metric-grid,
  .form-grid,
  .login-audience {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 62px 0;
  }

  .card,
  .form-panel,
  .security-panel {
    padding: 20px;
  }

  .phone {
    width: min(210px, 58vw);
  }

  .phone.one {
    transform: translateX(-44px) rotate(-4deg);
  }

  .phone.two {
    transform: translate(48px, 28px) rotate(5deg);
  }

  .page-hero {
    padding: 70px 0;
    background:
      linear-gradient(180deg, rgba(10, 39, 62, 0.94), rgba(12, 81, 112, 0.78)),
      #12324b;
  }
}

/* Commercial landing refresh */
.landing-hero {
  min-height: min(820px, calc(100vh - 76px));
  background:
    linear-gradient(115deg, rgba(247, 250, 248, 0.96) 0%, rgba(234, 246, 250, 0.98) 48%, rgba(221, 244, 235, 0.96) 100%);
  color: var(--ink);
}

.landing-hero::after {
  display: none;
}

.landing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.landing-hero .hero-content {
  max-width: 760px;
  padding: 72px 0 78px;
}

.landing-hero .eyebrow {
  color: #087ea4;
}

.landing-hero h1 {
  max-width: 820px;
  color: #0b1f33;
  font-size: 4.5rem;
  line-height: 1.05;
}

.landing-hero .hero-lead {
  max-width: 740px;
  color: #425463;
  font-size: 1.25rem;
}

.hero-secondary-link {
  display: inline-flex;
  margin-top: 18px;
  color: #0b5f7a;
  font-weight: 700;
}

.benefit-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: center;
  justify-items: center;
}

.trust-strip {
  border-top: 1px solid rgba(8, 126, 164, 0.12);
  border-bottom: 1px solid rgba(8, 126, 164, 0.12);
  background: #ffffff;
}

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

.trust-grid div {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(8, 126, 164, 0.12);
  color: #334856;
  font-weight: 800;
  line-height: 1.45;
  padding: 20px 24px;
}

.trust-grid div:first-child {
  border-left: 1px solid rgba(8, 126, 164, 0.12);
}

.trust-grid i {
  flex: 0 0 auto;
  color: #087ea4;
}

.benefit-visual::before {
  position: absolute;
  inset: 8% 0 12% 10%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 30% 24%, rgba(40, 166, 106, 0.18), transparent 34%),
    linear-gradient(140deg, #ffffff, #eaf6fa);
  box-shadow: 0 26px 70px rgba(11, 31, 51, 0.12);
  content: "";
}

.people-card {
  position: absolute;
  top: 92px;
  left: 0;
  z-index: 2;
  width: min(280px, 54vw);
  border: 1px solid rgba(8, 126, 164, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(11, 31, 51, 0.14);
  padding: 20px;
}

.people-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.1rem;
}

.people-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.visual-badge {
  display: inline-flex;
  border-radius: 999px;
  background: var(--mint);
  color: #146a46;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 10px;
}

.phone-mockup {
  position: relative;
  z-index: 3;
  width: min(320px, 76vw);
  min-height: 560px;
  border: 12px solid #102538;
  border-radius: 36px;
  background:
    linear-gradient(#f9fcfd, #ffffff);
  box-shadow: 0 34px 80px rgba(11, 31, 51, 0.24);
  padding: 44px 18px 20px;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 78px;
  height: 7px;
  border-radius: 999px;
  background: #d7e2ea;
  transform: translateX(-50%);
}

.app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  border: 1px solid #dce8ee;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.app-card.top {
  border-color: rgba(8, 126, 164, 0.22);
  background: #eaf6fa;
}

.app-card strong {
  display: block;
  color: #0b1f33;
  font-size: 0.96rem;
}

.app-card small {
  display: block;
  margin-top: 4px;
  color: #5f7084;
  line-height: 1.35;
}

.app-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: #d7eef6;
  color: #087ea4;
}

.app-icon.green {
  background: #dff5ec;
  color: #178653;
}

.app-icon.amber {
  background: #fff1db;
  color: #9a650e;
}

.app-action {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #087ea4;
  color: #fff;
  font-weight: 700;
}

.practical-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.step h3 + p {
  color: #52616b;
  font-weight: 600;
}

.quote-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #0b1f33, #0c5266);
  color: #fff;
  min-height: 430px;
  padding: 44px;
}

.quote-panel p {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.18;
}

.quote-panel span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.compact-list {
  grid-template-columns: 1fr;
}

.app-preview-panel {
  display: grid;
  justify-items: center;
}

.clean-phone {
  width: min(300px, 72vw);
  min-height: 520px;
}

.clinic-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.clinic-cta > div:first-child {
  max-width: 720px;
}

.clinic-cta h2 {
  margin-bottom: 12px;
  font-size: 3rem;
  font-weight: 750;
  line-height: 1.1;
}

.clinic-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.platform-proof .product-frame {
  min-height: 520px;
}

.platform-proof .phone {
  width: min(210px, 42vw);
}

.cta-band {
  background: linear-gradient(135deg, #0b1f33, #087ea4 62%, #28a66a);
}

.button-primary {
  background: #087ea4;
  box-shadow: 0 14px 28px rgba(8, 126, 164, 0.22);
}

.button-secondary {
  color: #0b1f33;
}

@media (max-width: 980px) {
  .landing-hero {
    background:
      linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(234, 246, 250, 0.98));
  }

  .landing-hero-inner {
    grid-template-columns: 1fr;
  }

  .landing-hero .hero-content {
    padding: 64px 0 10px;
  }

  .benefit-visual {
    min-height: 600px;
    padding-bottom: 50px;
  }

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

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

  .trust-grid div,
  .trust-grid div:first-child {
    border-right: 1px solid rgba(8, 126, 164, 0.12);
    border-left: 1px solid rgba(8, 126, 164, 0.12);
    border-bottom: 1px solid rgba(8, 126, 164, 0.12);
  }

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

@media (max-width: 700px) {
  .landing-hero .hero-content {
    padding-top: 42px;
  }

  .brand-logo {
    width: 88px;
  }

  .landing-hero h1 {
    font-size: 2.85rem;
  }

  .benefit-visual {
    min-height: 500px;
  }

  .people-card {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
  }

  .phone-mockup {
    margin-top: 98px;
    min-height: 500px;
  }

  .practical-steps {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    min-height: auto;
    padding: 28px;
  }

  .platform-proof .phone-stack {
    min-height: 460px;
  }
}
