:root {
  --navy: #071d35;
  --navy-2: #0a2948;
  --gold: #c99a3a;
  --gold-2: #e4bd65;
  --ink: #101828;
  --muted: #667085;
  --line: #e8eaf0;
  --paper: #ffffff;
  --wash: #f7f7f5;
  --shadow: 0 18px 48px rgba(10, 24, 44, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo.light {
  height: 62px;
  max-width: 299px;
}

.brand-logo.dark {
  height: 71px;
  max-width: 83px;
}

.mark {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5em;
}

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

.nav-links a { color: #1e2b3a; }
.nav-links a:hover { color: var(--gold); }

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--navy);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(201, 154, 58, 0.26);
}

.button.primary { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #fff; }
.button.dark { background: var(--navy); color: #fff; box-shadow: none; }
.button.outline { border-color: rgba(255, 255, 255, 0.58); color: #fff; box-shadow: none; }
.button.ghost { background: #fff; color: var(--navy); border-color: #d8c69f; box-shadow: none; }

.hero {
  min-height: 600px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 29, 53, 0.96), rgba(7, 29, 53, 0.82) 45%, rgba(7, 29, 53, 0.5)),
    url("assets/hero-skyline.png") center / cover;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 38px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin: 18px 0 16px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.gold { color: var(--gold-2); }

.hero p {
  max-width: 610px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 48px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.stat .icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  font-size: 20px;
}

.stat div { min-width: 0; }

.stat strong { display: block; font-size: 25px; line-height: 1; }
.stat div span { display: block; color: rgba(255, 255, 255, 0.72); font-size: 13px; white-space: nowrap; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.section-title h2 { font-size: clamp(30px, 4vw, 43px); line-height: 1.08; margin-bottom: 12px; }
.section-title p { color: var(--muted); }

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 26px;
  box-shadow: 0 10px 28px rgba(20, 32, 48, 0.06);
}

.card h3 { font-size: 20px; line-height: 1.2; margin: 18px 0 10px; }
.card p { color: var(--muted); font-size: 15px; }

.icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-2);
  border: 4px solid #f1eadb;
}

.icon svg { width: 31px; height: 31px; stroke: currentColor; stroke-width: 1.8; fill: none; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.process-split {
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.process-intro {
  max-width: 300px;
}

.banner {
  background: var(--navy);
  color: #fff;
  border-radius: 6px 6px 0 0;
  padding: 42px 52px;
}

.panel {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.panel-body { padding: 46px 52px; }
.ticks { list-style: none; padding: 0; margin: 20px 0 0; }
.ticks li { margin: 10px 0; color: #344054; }
.ticks li::before { content: "✓"; color: #fff; background: var(--gold); border-radius: 50%; padding: 1px 5px; margin-right: 10px; font-size: 12px; }

.photo-stack { position: relative; padding-bottom: 74px; }
.photo-stack img { border-radius: 6px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.metric-row {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.metric {
  background: linear-gradient(180deg, #082743, #04172a);
  color: #fff;
  border: 1px solid rgba(228, 189, 101, 0.45);
  border-radius: 6px;
  padding: 22px 12px;
  text-align: center;
}

.metric strong { display: block; font-size: 32px; line-height: 1; }
.metric span { font-size: 13px; color: rgba(255, 255, 255, 0.78); }

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}

.step { text-align: center; position: relative; }
.step::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -14px;
  color: var(--gold);
  font-size: 28px;
}
.step:last-child::after { display: none; }
.num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}
.step .icon { display: grid; margin: 8px auto 14px; background: #fff; color: var(--navy); border-color: #f2f3f6; width: 80px; height: 80px; }
.step .icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step p { color: var(--muted); font-size: 14px; }

.contact-band {
  background:
    linear-gradient(90deg, rgba(7, 29, 53, 0.98), rgba(7, 29, 53, 0.86) 48%, rgba(7, 29, 53, 0.16)),
    url("assets/office-reception.png") center / cover;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.contact-content { padding: 44px; max-width: 760px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.contact-card { background: #fff; color: var(--ink); border-radius: 6px; padding: 24px; min-height: 170px; }
.contact-card p { color: var(--muted); font-size: 15px; }

.contact-response {
  display: grid;
  gap: 0;
  margin: 30px 0;
  max-width: 640px;
  background: transparent;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-row:last-child { border-bottom: 0; }
.contact-row .badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(228, 189, 101, 0.42);
}
.contact-row strong { display: block; color: #fff; margin-bottom: 3px; }
.contact-row p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 15px; }

.footer-cta {
  background: var(--navy);
  color: #fff;
  padding: 0 24px;
}
.footer-cta .inner, .footer .inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.footer-cta .inner {
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.footer-cta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 0;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
}

.footer-contact-item .badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(228, 189, 101, 0.42);
}

.footer-contact-item strong {
  font-size: 13px;
  margin-bottom: 2px;
}

.footer-contact-item span {
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact-item a,
.appointment-help a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item a:hover,
.appointment-help a:hover {
  color: var(--gold-2);
}

.footer {
  background: #04172a;
  color: rgba(255, 255, 255, 0.72);
  padding: 24px;
  font-size: 13px;
}

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

.footer a:hover {
  color: var(--gold-2);
}

.footer .inner {
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-brand .mark { font-size: 29px; }

.footer-brand .brand-logo.dark {
  height: 62px;
  width: 62px;
}

.footer-brand small {
  display: block;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-weight: 800;
}

.socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.page-hero {
  background: linear-gradient(90deg, rgba(7, 29, 53, 0.97), rgba(7, 29, 53, 0.86)), url("assets/hero-skyline.png") center / cover;
  color: #fff;
  padding: 74px 24px;
}
.page-hero .inner { max-width: 980px; margin: 0 auto; text-align: center; }
.page-hero h1 { margin-left: auto; margin-right: auto; }

.lead-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 18px;
  background:
    linear-gradient(90deg, rgba(7, 29, 53, 0.92), rgba(7, 29, 53, 0.68)),
    url("assets/hero-skyline.png") center / cover;
}

.lead-shell-branded {
  align-items: start;
  min-height: auto;
  padding: 54px 18px 68px;
}

.lead-card {
  width: min(100%, 470px);
  background: #fff;
  border-radius: 10px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.lead-card-wide {
  width: min(100%, 860px);
  border-top: 6px solid var(--gold);
}

.lead-card-wide .brand {
  justify-content: center;
  margin-right: 0;
}

.lead-copy {
  max-width: 620px;
  margin: 24px auto 24px;
  text-align: center;
}

.lead-copy h1 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

.lead-copy p {
  color: var(--muted);
  font-size: 17px;
}

.lead-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 22px;
}

.lead-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f8f4ea;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.lead-benefits span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.cognito-frame-shell {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.07);
}

.cognito-frame-header {
  min-height: 64px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
}

.cognito-frame-header strong {
  display: block;
  line-height: 1.2;
}

.cognito-frame-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.secure-pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(228, 189, 101, 0.45);
  border-radius: 999px;
  color: var(--gold-2) !important;
  font-weight: 900;
}

.cog-button,
.cog-button button,
.cog-button__text {
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

.cognito-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
}

.lead-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-grid { display: grid; gap: 13px; }
label { display: grid; gap: 6px; color: #344054; font-weight: 700; font-size: 13px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  min-height: 46px;
  padding: 11px 13px;
  font: inherit;
}
textarea { min-height: 100px; resize: vertical; }

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.consent-row input {
  min-height: auto;
  width: 16px;
  margin-top: 2px;
}

.notice { display: none; margin-top: 14px; color: #067647; font-weight: 700; }
.notice.show { display: block; }

.appointment-top {
  min-height: 96px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: #fff;
}

.appointment-brand { color: #fff; }
.appointment-help { text-align: right; color: rgba(255, 255, 255, 0.72); font-size: 13px; }
.appointment-help strong { display: block; color: #fff; font-size: 17px; }

.appointment-page {
  padding: 48px 6%;
  background: #fbfbfa;
}

.appointment-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.appointment-step { display: none; }
.appointment-step.active { display: grid; }
.appointment-copy h1, .confirmation-main h1 {
  color: var(--navy);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.08;
  margin: 14px 0 22px;
}
.appointment-copy p, .confirmation-main p { max-width: 490px; color: #344054; font-size: 18px; }

.benefit-list { display: grid; gap: 26px; margin-top: 44px; }
.benefit { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: center; }
.benefit-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  border: 1px solid #f1eadb;
  font-size: 24px;
}
.benefit strong { display: block; color: var(--navy); font-size: 18px; }
.benefit span { color: #475467; }

.calendar-card, .summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.mock-calendar-link { cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.mock-calendar-link:hover { transform: translateY(-2px); box-shadow: 0 24px 56px rgba(10, 24, 44, 0.16); }
.mock-calendar-link:focus-visible { outline: 3px solid rgba(201, 154, 58, 0.5); outline-offset: 4px; }

.calendar-card h2, .summary-card h2, .next-card h2 { margin-bottom: 26px; color: var(--navy); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.calendar-head button {
  border: 0;
  background: transparent;
  color: #667085;
  font-size: 34px;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}
.calendar-grid span { color: #667085; font-size: 12px; font-weight: 900; }
.calendar-grid button {
  min-height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #344054;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.calendar-grid button.muted { color: #a7acb5; }
.calendar-grid button.selected { background: #1458e0; color: #fff; box-shadow: 0 8px 18px rgba(20, 88, 224, 0.3); }

.calendar-card h3 { margin: 28px 0 14px; color: var(--navy); }
.calendar-card h3 span { color: #475467; font-weight: 500; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.time-grid button {
  min-height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.time-grid button:hover, .time-grid button.selected { border-color: var(--gold); background: #fff8e8; }
.timezone { margin-top: 18px; color: #667085; font-size: 14px; }

.confirmation {
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.checkmark {
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 6px solid var(--gold);
  color: var(--gold);
  font-size: 58px;
  font-weight: 300;
}
.confirmation-main h2 { color: var(--navy); }
.confirmation-side { display: grid; gap: 18px; }
.summary-card dl { display: grid; grid-template-columns: 120px 1fr; gap: 12px; margin: 0; }
.summary-card dt { color: #475467; font-weight: 900; }
.summary-card dd { margin: 0; color: var(--navy); font-weight: 700; }
.next-card { padding: 26px; background: var(--navy); color: #fff; border-radius: 7px; box-shadow: var(--shadow); }
.next-card h2 { color: #fff; margin-bottom: 18px; }
.next-card ol { margin: 0; padding-left: 28px; display: grid; gap: 14px; }
.next-card li { padding-left: 6px; font-weight: 800; }
.after-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.after-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}
.after-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy);
}
.after-card p { margin: 2px 0 0; color: #475467; }

.appointment-bottom-strip {
  max-width: 1160px;
  margin: 44px auto 0;
}

.appointment-after-grid {
  margin-top: 0;
}

@media (max-width: 920px) {
  .menu-button { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 18px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav .button { display: none; }
  .cards, .contact-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .process-intro { max-width: 100%; transform: none; }
  .process { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .appointment-grid, .confirmation { grid-template-columns: 1fr; }
  .appointment-grid { gap: 34px; }
  .after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav { padding: 0 16px; }
  .brand-logo.light { height: 51px; max-width: 242px; }
  .brand-text span { letter-spacing: 0.25em; }
  .hero-inner { padding: 54px 18px 30px; }
  .section { padding: 48px 18px; }
  .cards, .contact-grid, .metric-row { grid-template-columns: 1fr; }
  .metric-row { position: static; margin-top: 14px; }
  .photo-stack { padding-bottom: 0; }
  .panel-body, .banner, .contact-content { padding: 30px 22px; }
  .lead-card { padding: 24px; }
  .lead-shell-branded { padding: 28px 12px; }
  .lead-card-wide { border-top-width: 5px; }
  .lead-copy { margin: 18px auto; }
  .lead-copy p { font-size: 15px; }
  .lead-benefits { justify-content: flex-start; }
  .cognito-frame-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .cognito-frame { min-height: 820px; }
  .footer-cta .inner, .footer .inner { align-items: flex-start; flex-direction: column; }
  .footer-contact { grid-template-columns: 1fr; }
  .appointment-top { min-height: auto; padding: 18px; align-items: flex-start; flex-direction: column; }
  .appointment-brand .brand-logo.dark { height: 62px; width: 62px; }
  .appointment-brand .mark { font-size: 28px; }
  .appointment-brand .brand-text strong { font-size: 12px; }
  .appointment-brand .brand-text span { font-size: 9px; letter-spacing: 0.32em; }
  .appointment-help { text-align: left; }
  .appointment-help strong { font-size: 15px; }
  .appointment-page { padding: 30px 16px; }
  .appointment-copy h1, .confirmation-main h1 {
    font-size: 38px;
    line-height: 1.08;
    margin: 10px 0 16px;
  }
  .appointment-copy p, .confirmation-main p { font-size: 16px; }
  .benefit-list { gap: 18px; margin-top: 28px; }
  .benefit { grid-template-columns: 46px 1fr; gap: 13px; }
  .benefit-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .benefit strong { font-size: 15px; }
  .benefit span { font-size: 14px; }
  .time-grid { grid-template-columns: 1fr 1fr; }
  .calendar-card, .summary-card { padding: 24px; }
  .calendar-card h2 { font-size: 22px; }
  .calendar-head { margin-bottom: 16px; }
  .calendar-head button { font-size: 28px; padding: 0 4px; }
  .calendar-grid { gap: 4px; }
  .calendar-grid span { font-size: 10px; }
  .calendar-grid button {
    min-height: 34px;
    font-size: 13px;
  }
  .calendar-card h3 { font-size: 16px; margin: 22px 0 12px; }
  .time-grid { gap: 9px; }
  .time-grid button {
    min-height: 42px;
    font-size: 13px;
    padding: 6px;
  }
  .timezone { font-size: 12px; margin-bottom: 0; }
  .checkmark {
    width: 82px;
    height: 82px;
    font-size: 44px;
  }
  .summary-card dl { grid-template-columns: 90px 1fr; gap: 10px; }
  .next-card { padding: 22px; }
  .after-card {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }
  .after-card span {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 390px) {
  .nav {
    min-height: 56px;
    gap: 10px;
    padding: 0 10px;
  }
  .brand-logo.light {
    height: 30px;
    max-width: 150px;
  }
  .menu-button {
    padding: 7px 9px;
    font-size: 13px;
  }
  .hero-inner { padding: 42px 16px 26px; }
  .hero p { font-size: 17px; }
  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    text-align: center;
  }
  .footer-brand {
    width: 100%;
    min-width: 0;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-brand .brand-logo.dark {
    flex: 0 0 42px;
    height: 42px;
    width: 42px;
  }
  .footer-brand strong { font-size: 12px; line-height: 1.25; }
  .footer-brand small {
    max-width: none;
    font-size: 12px;
    line-height: 1.35;
  }
  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 13px;
  }
  .footer-contact-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }
  .footer-contact-item span {
    overflow-wrap: anywhere;
  }
  .appointment-page { padding: 24px 12px; }
  .appointment-top { padding: 14px; }
  .appointment-brand .brand-logo.dark {
    height: 42px;
    width: 42px;
  }
  .appointment-copy h1, .confirmation-main h1 { font-size: 34px; }
  .calendar-card, .summary-card { padding: 18px; }
  .calendar-grid { gap: 2px; }
  .calendar-grid button {
    min-height: 31px;
    font-size: 12px;
  }
  .time-grid { grid-template-columns: 1fr; }
}
