:root {
  --ink: #102033;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dbe5ee;
  --surface: #ffffff;
  --surface-soft: #f4faf9;
  --teal-dark: #0f766e;
  --teal: #14b8a6;
  --teal-light: #ccfbf1;
  --blue: #2563eb;
  --blue-soft: #eff6ff;
  --green: #10b981;
  --danger: #b91c1c;
  --max: 1180px;
  --shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 229, 238, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--teal-dark),
      var(--teal),
      var(--blue)
    );
  box-shadow: 0 12px 24px rgba(20, 184, 166, 0.24);
  font-size: 15px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475569;
  font-size: 14px;
  font-weight: 750;
}

.main-nav > a:not(.button):hover {
  color: var(--teal-dark);
}

.nav-login {
  margin-left: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  padding: 13px 22px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--teal-dark),
      var(--teal),
      var(--blue)
    );
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.28);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 13px;
}

.button-secondary {
  border: 1px solid #b8d8d4;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  background: #eef7f5;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 82px;
  background:
    linear-gradient(
      135deg,
      #f0faf7 0%,
      #fbfdff 48%,
      #eef5ff 100%
    );
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  top: -190px;
  left: -170px;
  background: rgba(20, 184, 166, 0.14);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -260px;
  background: rgba(37, 99, 235, 0.11);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #0f1f31;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--teal-dark);
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #526174;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust span:not(.trust-icon) {
  display: grid;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.hero-trust small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-light);
  font-size: 12px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  min-height: 505px;
  overflow: hidden;
  border: 9px solid #172033;
  border-radius: 42px;
  background: #ffffff;
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.19),
    0 8px 30px rgba(20, 184, 166, 0.14);
  transform: rotate(2deg);
}

.phone-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 19px;
  border-bottom: 1px solid #e6eef4;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.mini-brand span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-dark), var(--blue));
  font-size: 9px;
}

.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.12);
}

.request-preview {
  padding: 26px 23px;
}

.request-preview > p {
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-preview h2 {
  margin: 8px 0 22px;
  color: #162438;
  font-size: 25px;
  line-height: 1.17;
  letter-spacing: -0.035em;
}

.preview-location,
.professional-card {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid #d9e7e7;
  border-radius: 17px;
  padding: 15px;
}

.preview-location {
  background: #f3fbf9;
}

.preview-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--teal-dark);
  background: #d8f7f1;
  font-weight: 900;
}

.preview-location div,
.professional-card div {
  display: grid;
}

.preview-location small,
.professional-card small,
.professional-card span:not(.verified) {
  color: var(--muted);
  font-size: 10px;
}

.preview-location strong,
.professional-card strong {
  color: var(--ink);
  font-size: 13px;
}

.professional-card {
  margin-top: 13px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.professional-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-size: 23px;
  font-weight: 800;
}

.verified {
  width: 25px;
  height: 25px;
  display: grid;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
}

.preview-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 24px;
}

.preview-progress span {
  height: 6px;
  border-radius: 999px;
  background: #dbe5ee;
}

.preview-progress span.active {
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.preview-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 17px;
}

.preview-status > span {
  display: grid;
  border-radius: 14px;
  padding: 12px;
  background: #f8fafc;
}

.preview-status small {
  color: var(--muted);
  font-size: 9px;
}

.preview-status strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-card-top {
  top: 60px;
  right: -10px;
}

.floating-card-bottom {
  bottom: 65px;
  left: -15px;
}

.floating-card div {
  display: grid;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.floating-icon {
  width: 35px;
  height: 35px;
  display: grid;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 11px;
  font-weight: 900;
}

.floating-icon.shield {
  color: var(--teal-dark);
  background: #d8f7f1;
}

.floating-icon.location {
  color: var(--blue);
  background: var(--blue-soft);
}

.trust-strip {
  border-top: 1px solid #e7edf3;
  border-bottom: 1px solid #e7edf3;
  background: #ffffff;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip-grid > div {
  display: grid;
  padding: 24px 27px;
  border-right: 1px solid #e7edf3;
}

.trust-strip-grid > div:last-child {
  border-right: 0;
}

.trust-strip-grid strong {
  color: var(--ink);
  font-size: 14px;
}

.trust-strip-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: #f6fbfa;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading h2,
.feature-copy h2,
.security-heading h2,
.final-cta h2 {
  margin: 0;
  color: #132238;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child,
.feature-copy > p:not(.eyebrow) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.step-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid #e2eaf0;
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
}

.step-number {
  position: absolute;
  top: 17px;
  right: 20px;
  color: #d7e3e7;
  font-size: 34px;
  font-weight: 900;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-dark);
  background: #e5f8f4;
  font-size: 22px;
  font-weight: 900;
}

.step-card h3 {
  margin: 27px 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-copy {
  max-width: 560px;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.feature-list li span {
  width: 23px;
  height: 23px;
  display: grid;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-light);
  font-size: 10px;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 900;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.feature-panel {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
}

.patient-panel {
  background:
    linear-gradient(
      145deg,
      #dff8f2,
      #eef8ff
    );
}

.specialist-panel {
  background:
    linear-gradient(
      145deg,
      #eef6ff,
      #e4faf6
    );
}

.panel-orbit {
  position: absolute;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 390px;
  height: 390px;
}

.orbit-two {
  width: 530px;
  height: 530px;
}

.feature-ui,
.specialist-ui {
  position: relative;
  z-index: 2;
  width: min(82%, 430px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.feature-ui-header,
.specialist-ui-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.feature-ui-header div,
.specialist-ui-top div {
  display: grid;
}

.feature-ui-header small,
.specialist-ui-top small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.feature-ui-header strong,
.specialist-ui-top strong {
  margin-top: 4px;
  font-size: 18px;
}

.status-pill,
.active-pill {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: var(--teal-light);
  font-size: 9px;
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 27px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 8px;
  width: 2px;
  background: #dde7ed;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 15px;
}

.timeline-item > span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #cbd5e1;
  box-shadow: 0 0 0 1px #dbe5ee;
}

.timeline-item.complete > span {
  background: var(--teal);
}

.timeline-item.current > span {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.11);
}

.timeline-item div {
  display: grid;
}

.timeline-item strong {
  font-size: 13px;
}

.timeline-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 24px 0 14px;
}

.metric-grid article {
  display: grid;
  border-radius: 16px;
  padding: 15px;
  background: #f5f9fc;
}

.metric-grid small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.metric-grid strong {
  margin-top: 5px;
  color: var(--teal-dark);
  font-size: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid #e1e9ef;
  border-radius: 16px;
  padding: 13px;
}

.service-symbol {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 900;
}

.service-row div {
  display: grid;
}

.service-row strong {
  font-size: 11px;
}

.service-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.security-section {
  padding-top: 24px;
}

.security-box {
  border-radius: 34px;
  padding: 50px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(37, 99, 235, 0.42),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #0d665f,
      #0c7d73 48%,
      #163f7a
    );
  box-shadow: 0 34px 70px rgba(15, 118, 110, 0.2);
}

.security-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 23px;
  align-items: flex-start;
}

.security-heading .eyebrow {
  color: #a7f3d0;
}

.security-heading h2 {
  max-width: 850px;
  color: #ffffff;
}

.security-shield {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 21px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 25px;
  font-weight: 900;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.security-grid article {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 21px;
  background: rgba(255, 255, 255, 0.08);
}

.security-grid article > span {
  color: #99f6e4;
  font-size: 11px;
  font-weight: 900;
}

.security-grid h3 {
  margin: 11px 0 8px;
  font-size: 16px;
}

.security-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.faq-section {
  padding-top: 88px;
}

.faq-grid {
  width: min(850px, 100%);
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-grid details {
  border: 1px solid #e0e8ef;
  border-radius: 18px;
  padding: 0 20px;
  background: #ffffff;
}

.faq-grid summary {
  padding: 19px 0;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-grid p {
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.medical-notice {
  padding: 0 0 74px;
}

.medical-notice-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border: 1px solid #fed7aa;
  border-radius: 22px;
  padding: 22px 25px;
  color: #7c2d12;
  background: #fff7ed;
}

.notice-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: #ea580c;
  font-weight: 900;
}

.medical-notice-inner p {
  margin: 3px 0 0;
  font-size: 12px;
}

.medical-notice-inner a {
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
}

.final-cta {
  padding: 72px 0;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #0f766e,
      #0f887c 50%,
      #215cb4
    );
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
}

.final-cta .eyebrow {
  color: #a7f3d0;
}

.final-cta h2 {
  max-width: 720px;
  color: #ffffff;
}

.final-cta p:not(.eyebrow) {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.final-actions {
  display: flex;
  gap: 10px;
}

.button-white {
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: none;
}

.button-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  padding: 64px 0 25px;
  color: #cbd5e1;
  background: #0f1c2d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
}

.footer-brand .brand-copy strong {
  color: #ffffff;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #94a3b8;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 13px;
}

.footer-grid a:not(.brand) {
  color: #94a3b8;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: grid;
  gap: 7px;
  margin-top: 50px;
  border-top: 1px solid #26364a;
  padding-top: 22px;
  color: #64748b;
  font-size: 11px;
}

.footer-bottom-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.development-credit {
  color: #64748b;
  font-size: 10px;
  line-height: 1.5;
}

.development-credit strong {
  color: #94a3b8;
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
  background: #f8fafc;
}

.legal-main {
  padding: 68px 0 90px;
}

.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.legal-card {
  border: 1px solid #e1e8ee;
  border-radius: 28px;
  padding: 42px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-version {
  margin: 14px 0 30px;
  color: var(--muted);
  font-size: 12px;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-alert {
  margin: 25px 0;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  padding: 15px 17px;
  color: #164e63;
  background: #ecfeff;
  font-size: 13px;
}

.legal-warning {
  border-left-color: #f97316;
  color: #7c2d12;
  background: #fff7ed;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }

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

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 67px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #e0e8ef;
    border-radius: 20px;
    padding: 14px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 10px 12px;
  }

  .nav-login {
    margin-left: 0;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-grid,
  .feature-grid,
  .feature-grid.reverse,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .feature-copy {
    max-width: none;
  }

  .feature-grid.reverse .feature-panel {
    order: 2;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid #e7edf3;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .hero {
    padding: 54px 0 50px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }

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

  .phone-card {
    width: min(92%, 365px);
    min-height: 470px;
  }

  .floating-card {
    display: none;
  }

  .trust-strip-grid,
  .steps-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid #e7edf3;
  }

  .trust-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .feature-grid {
    gap: 42px;
  }

  .feature-panel {
    min-height: 410px;
  }

  .feature-ui,
  .specialist-ui {
    width: 91%;
    padding: 18px;
  }

  .security-box {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .security-heading {
    grid-template-columns: 1fr;
  }

  .medical-notice-inner {
    grid-template-columns: auto 1fr;
  }

  .medical-notice-inner a {
    grid-column: 2;
  }

  .final-actions {
    display: grid;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom-main {
    flex-direction: column;
    gap: 4px;
  }

  .legal-card {
    border-radius: 22px;
    padding: 26px 20px;
  }
}