:root {
  --bg: #f7fbfd;
  --paper: #ffffff;
  --ink: #102238;
  --muted: #5d6f80;
  --line: #d6e8f0;
  --blue: #24a8df;
  --blue-dark: #17345a;
  --green: #24c0a4;
  --soft: #eef8fc;
  --shadow: 0 18px 54px rgba(16, 34, 56, 0.1);
  --radius: 26px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(36, 168, 223, 0.14), transparent 34vw),
    var(--bg);
  color: var(--ink);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 251, 253, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 232, 240, 0.9);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap img {
  width: 158px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #405366;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 59, 99, 0.18);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.66fr);
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #c9dde8;
  color: var(--blue-dark);
  font-weight: 850;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(16, 34, 56, 0.055);
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 6px rgba(36, 192, 164, 0.14);
}

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

h1 {
  max-width: 720px;
  margin: 18px 0 20px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.032em;
  font-weight: 760;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(14.5px, 1.25vw, 16px);
  color: #405366;
  line-height: 1.5;
}

.strong-location {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  max-width: 680px;
  margin: 0 0 26px;
  padding: 17px 19px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(16, 34, 56, 0.065);
}

.pin {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pin svg {
  width: 28px;
  height: 28px;
  display: block;
}

.pin circle,
.pin path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.strong-location b {
  display: block;
  font-size: 16.5px;
  color: var(--ink);
  margin-bottom: 4px;
}

.strong-location span {
  color: var(--muted);
  font-size: 14.5px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 16px 32px rgba(21, 59, 99, 0.22);
}

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

.hero-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13.5px;
}

.hero-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 31px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-card {
  padding: 26px;
  background: linear-gradient(145deg, #ffffff 0%, #eef9fd 100%);
  border-bottom: 1px solid var(--line);
}

.price-label {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
}

.price {
  font-size: clamp(36px, 3.8vw, 47px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 8px;
}

.price-sub {
  color: #516577;
  margin: 0;
  font-size: 14.5px;
}

.form-box {
  padding: 25px 26px 28px;
}

.form-box h2 {
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.form-box p {
  color: var(--muted);
  margin-bottom: 17px;
  font-size: 14.5px;
}

.field {
  margin-bottom: 12px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #304356;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5e4ec;
  border-radius: 15px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfe;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 169, 223, 0.12);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 14px 0 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-box .btn {
  width: 100%;
  border: none;
  min-height: 53px;
  font-size: 15px;
}

.status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eaf8f3;
  color: #1a6c58;
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: 58px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head .section-tag,
.split .section-tag,
.final-cta .section-tag {
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(27px, 2.7vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 760;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

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

.card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 46px rgba(16, 34, 56, 0.055);
  overflow: hidden;
}

.card::after,
.step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.9;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
  font-size: 19px;
}

h3 {
  font-size: 19px;
  line-height: 1.16;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
  color: var(--ink);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.doctor-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 31px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 43%;
}

.doctor-caption {
  padding: 22px;
}

.doctor-caption b {
  display: block;
  font-size: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.doctor-caption span {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  color: #425568;
  font-size: 15.5px;
}

.check-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(36, 192, 164, 0.13);
  color: #14947e;
  font-weight: 900;
  line-height: 1;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 23px;
  min-height: 184px;
  box-shadow: 0 16px 42px rgba(16, 34, 56, 0.05);
  counter-increment: step;
  overflow: hidden;
}

.step::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--blue-dark);
  font-weight: 900;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 17.5px;
}

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

.location-band {
  background: linear-gradient(135deg, #13365d, #1c759f);
  color: #ffffff;
  border-radius: 32px;
  padding: clamp(30px, 4.8vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.32fr);
  align-items: center;
  gap: 24px;
  box-shadow: 0 26px 64px rgba(21, 59, 99, 0.22);
}

.location-band .section-tag {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  margin-bottom: 16px;
}

.location-band h2 {
  color: #ffffff;
  margin-bottom: 14px;
  max-width: 780px;
}

.location-band p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
  max-width: 790px;
  font-size: 17px;
}

.location-badge {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  padding: 22px;
}

.location-badge span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}

.location-badge span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.location-badge strong {
  display: block;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 9px;
}

.location-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.5px;
  line-height: 1.45;
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 12px 34px rgba(16, 34, 56, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

details::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  opacity: 0.72;
}

details:hover {
  transform: translateY(-1px);
  border-color: #acd5e7;
  background: #fbfdfe;
  box-shadow: 0 18px 42px rgba(16, 34, 56, 0.085);
}

details[open] {
  border-color: #9bcde2;
  box-shadow: 0 20px 46px rgba(16, 34, 56, 0.09);
}

summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px 22px 27px;
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
  list-style: none;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

.summary-text {
  font-size: 18px;
  line-height: 1.28;
}

.summary-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #f0f8fb;
  border: 1px solid #d5e9f1;
  color: #4f6679;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.summary-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex: 0 0 36px;
  box-shadow: 0 10px 22px rgba(36, 168, 223, 0.22);
}

.summary-icon::before,
.summary-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.summary-icon::before {
  width: 13px;
  height: 2px;
}

.summary-icon::after {
  width: 2px;
  height: 13px;
}

details[open] .summary-hint {
  color: #17345a;
  background: #e9f6fb;
  border-color: #c8e2ee;
}

details[open] .summary-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

details p {
  color: var(--muted);
  margin: 0;
  padding: 0 24px 22px 27px;
  font-size: 15.5px;
}

.final-cta {
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(34px, 5.5vw, 58px);
  box-shadow: var(--shadow);
}

.final-cta .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.final-cta p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 17px;
}

.footer {
  padding: 28px 0 42px;
  color: #6b7b89;
  font-size: 14px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 23px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  align-items: center;
}

.legal {
  margin-top: 19px;
  color: #7c8b98;
  font-size: 12px;
  line-height: 1.55;
}

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

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
  }

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

  .location-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 14px 18px;
  }

  .logo-wrap img {
    width: 142px;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 32px 0 42px;
  }

  h1 {
    font-size: 32px;
    letter-spacing: -0.032em;
  }

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

  .strong-location {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .price-card,
  .form-box {
    padding: 22px;
  }

  .price {
    font-size: 37px;
  }

  .section {
    padding: 50px 0;
  }

  .section-tight {
    padding-top: 18px;
  }

  h2 {
    font-size: 28px;
  }

  .section-tag,
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.07em;
  }

  .cards,
  .process {
    grid-template-columns: 1fr;
  }

  .card,
  .step {
    padding: 21px;
  }

  .doctor-card img {
    height: 340px;
    object-position: center 43%;
  }

  .location-band {
    border-radius: 26px;
    padding: 28px 22px;
  }

  .summary-text {
    font-size: 16.5px;
  }

  .summary-hint {
    display: none;
  }

  summary {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 18px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .summary-text {
    font-size: 16.5px;
  }

  .summary-hint {
    display: none;
  }

  summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px 18px 18px 22px;
  }

  details p {
    padding: 0 18px 18px 22px;
  }

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