* {
  box-sizing: border-box;
}

:root {
  --teal: #3fbbc0;
  --teal-dark: #0c9498;
  --navy: #10213f;
  --muted: #66738f;
  --line: #dfe6ee;
  --soft: #f7fbfc;
  --soft-teal: #eefafb;
  --white: #ffffff;
  --danger: #e5484d;
}

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--navy);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.35;
}

body {
  min-width: 1180px;
}

button, input {
  font: inherit;
}

.site-header {
  height: 84px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  background: var(--white);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 150px;
  height: 72px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: 104px;
  height: 82px;
  object-fit: contain;
}

.brand-name {
  font-size: 25px;
  line-height: 1;
  letter-spacing: .02em;
  font-weight: 800;
  color: #0f84a5;
}

.brand-subtitle {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .12em;
  color: #66738f;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--teal-dark);
}

.main-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.header-actions {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  width: 28px;
  height: 28px;
}

.phone-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--teal-dark);
}

.phone-block strong,
.phone-block span {
  display: block;
}

.phone-block strong {
  font-size: 14px;
}

.phone-block span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.primary-btn {
  border: 0;
  background: linear-gradient(180deg, #18a8ad 0%, #0d9298 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(13,146,152,.16);
}

.header-cta {
  padding: 14px 24px;
}

.page-shell {
  padding: 18px 48px 0;
}

h1 {
  text-align: center;
  font-size: 31px;
  letter-spacing: .015em;
  margin: 0;
  font-weight: 800;
}

.title-underline {
  width: 36px;
  height: 2px;
  background: var(--teal);
  margin: 10px auto 12px;
}

.stepper {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: start;
  max-width: 980px;
  margin: 0 auto 16px;
}

.step {
  text-align: center;
  position: relative;
  min-width: 140px;
}

.step-circle {
  margin: 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef1f4;
  border: 1px solid #d8dee6;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step.active .step-circle {
  background: linear-gradient(180deg, #1aa8ac, #0b8f93);
  color: #fff;
  border-color: #0b8f93;
}

.step-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.step.active .step-label {
  color: var(--teal-dark);
}

.step-line {
  height: 2px;
  background: #dfe4e8;
  margin-top: 16px;
}

.step-line.active {
  background: #1aa8ac;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.07fr 1fr;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
}

.booking-card {
  border: 1px solid #d9e2e8;
  border-radius: 13px;
  background: var(--white);
  min-height: 558px;
  padding: 18px 20px 16px;
  box-shadow: 0 1px 2px rgba(16, 33, 63, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.icon-circle {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid #d8e4e7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fbfefe;
}

.icon-circle svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-heading h2 {
  font-size: 20px;
  margin: 0 0 2px;
}

.card-heading p {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
}

.calendar-box {
  border: 1px solid #d9e2e8;
  border-radius: 9px;
  padding: 10px 12px 12px;
  background: #fcfefe;
}

.calendar-header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-header strong {
  text-align: center;
  font-size: 17px;
}

.calendar-header button {
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.calendar-header button:hover:not(:disabled),
.calendar-header button:focus-visible:not(:disabled) {
  border-color: #bfe5e7;
  background: var(--soft-teal);
  color: var(--teal-dark);
  outline: none;
}

.calendar-header button:disabled {
  color: #c1c9d4;
  cursor: not-allowed;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.weekdays {
  font-size: 11px;
  font-weight: 700;
  color: #4f5d77;
  margin-bottom: 7px;
}

.days {
  gap: 6px 0;
  font-size: 13px;
}

.days span,
.days button {
  height: 27px;
  display: grid;
  place-items: center;
}

.days button {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.days button:hover:not(:disabled),
.days button:focus-visible:not(:disabled) {
  background: var(--soft-teal);
  outline: 2px solid var(--teal);
}

.days button:disabled {
  color: #aeb7c6;
  cursor: not-allowed;
}

.days .adjacent-month {
  color: #bdc5d1;
}

.days button.today:not(.selected) {
  color: var(--teal-dark);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px #8fdadd;
}

.days .muted {
  color: #9ba6bb;
}

.days .selected {
  width: 34px;
  height: 34px;
  justify-self: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #1baeb2, #0b9197);
  color: #fff;
}

.days button.selected:hover,
.days button.selected:focus-visible {
  background: linear-gradient(180deg, #1baeb2, #0b9197);
}

.calendar-legend {
  display: flex;
  gap: 28px;
  padding: 12px 2px 14px;
  font-size: 12px;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.available { background: var(--teal-dark); }
.disabled { background: #d8dee7; }

.info-box,
.trust-box,
.contact-strip {
  border: 1px solid #cfe8ee;
  background: linear-gradient(180deg, #f7fcfd 0%, #f4fafc 100%);
  border-radius: 9px;
}

.info-box {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
}

.info-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--teal-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-weight: 800;
}

.info-box strong {
  display: block;
  font-size: 13px;
  margin-bottom: 7px;
}

.info-box p {
  margin: 0;
  font-size: 12px;
}

.patient-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.patient-form label > span:first-child {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.patient-form b {
  color: #ea3b48;
}

.patient-form small {
  font-weight: 400;
}

.input-wrap,
.phone-input {
  min-height: 41px;
  border: 1px solid #d7e0e8;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
}

.input-wrap input,
.phone-input input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0 12px;
  height: 39px;
  color: var(--navy);
}

.input-wrap input::placeholder,
.phone-input input::placeholder {
  color: #94a0b5;
}

.input-icon {
  width: 42px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #8c9ab0;
  border-right: 1px solid #e1e7ec;
}

.phone-input input {
  border-left: 1px solid #e1e7ec;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.phone-symbol {
  color: #8d99ac;
}

.flag {
  font-size: 18px;
}

.caret {
  color: #6e7a90;
}

.trust-box {
  padding: 13px 14px;
  display: flex;
  gap: 12px;
}

.shield-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 36px;
  clip-path: polygon(50% 0, 88% 16%, 82% 70%, 50% 100%, 18% 70%, 12% 16%);
  border: 2px solid var(--teal-dark);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.trust-box strong {
  color: var(--teal-dark);
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}

.trust-box p {
  margin: 0 0 2px;
  font-size: 11px;
}

.trust-box a {
  display: inline-block;
  margin-top: 4px;
  color: #0c9098;
  font-size: 11px;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 2px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.consent-row span {
  font-size: 11px !important;
  line-height: 1.45;
  font-weight: 600 !important;
  margin: 0 !important;
}

.wide-btn {
  height: 40px;
  width: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wide-btn span {
  position: absolute;
  right: 16px;
  font-size: 22px;
}

.wide-btn:disabled {
  background: #b9c7cb;
  box-shadow: none;
  cursor: not-allowed;
}

.submit-error {
  margin: -5px 0 0;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.3;
}

.booking-card.current-step {
  border-color: rgba(63, 187, 192, 0.65);
  box-shadow: 0 5px 18px rgba(12, 148, 152, 0.09);
}

.required-note {
  font-size: 10px;
  color: #5f6d84;
}

.confirmation-hero {
  text-align: center;
  padding: 4px 0 12px;
}

/* Na desktopu su sve tri kolone već vidljive, pa prelazak na korak 3 bez
   ovoga prolazi skoro neprimjetno (samo suptilna promjena ivice kartice) —
   korisnik nema jasan znak da je zahtjev zaista poslan. */
@media (prefers-reduced-motion: no-preference) {
  .confirmation-card.current-step .confirmation-hero {
    animation: confirmation-pop 0.45s ease-out;
  }
}

@keyframes confirmation-pop {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  60% {
    transform: scale(1.03);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.message-icon {
  width: 94px;
  height: 94px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: #f8fcfd;
  border: 1px solid #d9e7e9;
  display: grid;
  place-items: center;
}

.message-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmation-hero h3 {
  margin: 4px 0 8px;
  font-size: 24px;
  color: #0b9297;
}

.confirmation-hero p {
  margin: 0;
  font-size: 13px;
}

.summary-card {
  border: 1px solid #d6e0e8;
  border-radius: 9px;
  overflow: hidden;
  margin-top: 6px;
  margin-bottom: 10px;
}

.summary-row {
  min-height: 53px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
}

.summary-row + .summary-row {
  border-top: 1px solid #e5eaee;
}

.summary-icon {
  color: var(--teal-dark);
  font-size: 22px;
}

.summary-row span,
.summary-row strong,
.summary-row small {
  display: block;
}

.summary-row span {
  font-size: 10px;
  color: #4c5870;
}

.summary-row strong {
  font-size: 13px;
}

.summary-row small {
  font-size: 11px;
}

.outline-btn {
  width: 100%;
  height: 37px;
  border: 1px solid #19a4aa;
  background: #fff;
  color: #0b9297;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  cursor: pointer;
}

.outline-btn svg {
  width: 19px;
  height: 19px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -5px;
}

.contact-strip {
  padding: 8px 12px;
  font-size: 11px;
  text-align: center;
  margin-top: 4px;
}

.benefit-grid {
  max-width: 1440px;
  margin: 18px auto 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card {
  min-height: 92px;
  border: 1px solid #dbe3ea;
  border-radius: 12px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
}

.benefit-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #f2f9fb);
  box-shadow: 0 7px 18px rgba(16, 33, 63, .13);
}

.benefit-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-card h4 {
  margin: 0 0 5px;
  font-size: 13px;
  color: #0b9297;
}

.benefit-card p {
  margin: 0;
  font-size: 11px;
}

.site-footer {
  min-height: 110px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 16px 60px;
  background: #fff;
}

.footer-name {
  font-size: 22px;
}

.footer-col h5 {
  margin: 0 0 8px;
  color: #075fd2;
  font-size: 12px;
}

.footer-col p {
  margin: 0;
  color: #075fd2;
  font-size: 11px;
  line-height: 1.7;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #3dbbc1;
  color: #fff;
  font-size: 18px;
}

.social-icon .bx {
  font-size: 18px;
}

/* Obavještenje o obradi ličnih podataka */
.privacy-page {
  min-width: 0;
  background: linear-gradient(180deg, #f5fbfc 0, #fff 390px);
}

.privacy-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.privacy-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.privacy-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.privacy-back:hover,
.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 31px 36px;
  border: 1px solid #cae6e8;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #effafb);
  box-shadow: 0 18px 45px rgba(16, 33, 63, .08);
}

.privacy-shield {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50% 50% 56% 56%;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: 31px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(12, 148, 152, .22);
}

.privacy-kicker {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.privacy-hero h1 {
  margin: 0 0 9px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.privacy-hero > div > p:last-child {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.privacy-summary {
  position: sticky;
  top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 33, 63, .06);
}

.privacy-summary > strong {
  color: var(--teal-dark);
  font-size: 18px;
}

.privacy-summary ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 23px;
  padding: 0;
  list-style: none;
}

.privacy-summary li {
  position: relative;
  padding-left: 22px;
  color: #40506b;
  font-size: 13px;
  line-height: 1.55;
}

.privacy-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.privacy-contact-card {
  display: grid;
  gap: 6px;
  padding: 15px;
  border-radius: 9px;
  background: var(--soft-teal);
}

.privacy-contact-card span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.privacy-contact-card a,
.privacy-content a,
.consent-row a {
  color: var(--teal-dark);
  font-weight: 750;
}

.privacy-contact-card a {
  font-size: 13px;
  text-decoration: none;
}

.privacy-content {
  display: grid;
  gap: 16px;
}

.privacy-content section {
  padding: 25px 29px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 33, 63, .045);
}

.privacy-content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 13px;
  font-size: 20px;
}

.privacy-content h2 span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--soft-teal);
  color: var(--teal-dark);
  font-size: 13px;
}

.privacy-content p {
  margin: 0;
  color: #40506b;
  font-size: 14px;
  line-height: 1.75;
}

.privacy-content p + p {
  margin-top: 10px;
}

.privacy-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: 7px;
  background: var(--soft-teal);
  color: #33435f;
  font-size: 13px;
  line-height: 1.65;
}

.privacy-content .privacy-updated {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

@media (max-width: 1250px) {
  body {
    min-width: 1024px;
  }

  .main-nav {
    gap: 22px;
  }

  .site-header {
    grid-template-columns: 260px 1fr auto;
    padding-inline: 20px;
  }

  .page-shell {
    padding-inline: 28px;
  }

  .booking-grid {
    gap: 18px;
  }
}

@media (min-width: 768px) and (max-height: 1100px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  body {
    display: grid;
    grid-template-rows: 64px minmax(0, 1fr) 72px;
  }

  .site-header {
    height: 64px;
    padding-block: 3px;
  }

  .brand-logo {
    width: 104px;
    height: 58px;
  }

  .header-cta {
    padding: 10px 19px;
  }

  .page-shell {
    min-height: 0;
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    padding: 7px 34px 6px;
  }

  h1 {
    font-size: 23px;
    line-height: 1.1;
  }

  .title-underline {
    margin: 4px auto 5px;
  }

  .stepper {
    margin-bottom: 5px;
  }

  .step-circle {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .step-line {
    margin-top: 13px;
  }

  .step-label {
    margin-top: 2px;
    font-size: 11px;
  }

  .booking-grid {
    min-height: 0;
    height: 100%;
    gap: 20px;
  }

  .booking-card {
    min-height: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 14px 8px;
  }

  .card-heading {
    gap: 10px;
    margin-bottom: 6px;
  }

  .icon-circle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .icon-circle svg {
    width: 22px;
    height: 22px;
  }

  .card-heading h2 {
    font-size: 17px;
  }

  .calendar-box {
    padding: 5px 9px 7px;
  }

  #date-card .calendar-box {
    padding: 10px 12px 11px;
  }

  .calendar-header {
    margin-bottom: 2px;
  }

  #date-card .calendar-header {
    margin-bottom: 8px;
  }

  .calendar-header button {
    font-size: 22px;
  }

  #date-card .calendar-header button {
    width: 35px;
    height: 35px;
    font-size: 26px;
  }

  .calendar-header strong {
    font-size: 15px;
  }

  #date-card .calendar-header strong {
    font-size: 18px;
  }

  .weekdays {
    margin-bottom: 3px;
  }

  #date-card .weekdays {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .days {
    gap: 1px 0;
    font-size: 11px;
  }

  #date-card .days {
    gap: 3px 0;
    font-size: 12px;
  }

  .days span,
  .days button {
    height: 21px;
  }

  #date-card .days span,
  #date-card .days button {
    height: 38px;
  }

  .days .selected {
    width: 27px;
    height: 27px;
  }

  #date-card .days .selected {
    width: 38px;
    height: 38px;
  }

  .calendar-legend {
    padding: 5px 2px 6px;
  }

  #date-card .calendar-legend {
    padding: 10px 3px 11px;
    font-size: 12px;
  }

  .info-box {
    gap: 9px;
    padding: 7px 10px;
  }

  #date-card .info-box {
    gap: 12px;
    padding: 11px 12px;
  }

  #date-card .info-box strong {
    font-size: 12px;
  }

  #date-card .info-box p {
    font-size: 11px;
  }

  .info-box p,
  .trust-box p {
    font-size: 10px;
    line-height: 1.25;
  }

  .info-box strong,
  .trust-box strong {
    font-size: 11px;
  }

  .patient-form > label {
    margin-bottom: 5px;
  }

  .patient-form label > span:first-child {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .input-wrap,
  .phone-input {
    height: 33px;
  }

  .input-wrap input,
  .phone-input input {
    font-size: 12px;
  }

  .trust-box {
    margin: 6px 0;
    padding: 7px 10px;
  }

  .consent-row {
    margin: 5px 0;
    font-size: 10px;
    line-height: 1.2;
  }

  .wide-btn {
    height: 33px;
  }

  .confirmation-hero {
    padding: 0 0 5px;
  }

  .message-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 3px;
  }

  .message-icon svg {
    width: 38px;
    height: 38px;
  }

  .confirmation-hero h3 {
    margin: 1px 0 2px;
    font-size: 18px;
  }

  .confirmation-hero p {
    margin: 0;
    font-size: 10px;
  }

  .summary-card {
    margin: 4px 0 5px;
  }

  .summary-row {
    min-height: 42px;
    padding: 4px 9px;
  }

  .summary-row span,
  .summary-row small {
    font-size: 9px;
  }

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

  .outline-btn {
    height: 29px;
    margin-bottom: 4px;
    font-size: 11px;
  }

  .contact-strip {
    margin-top: 1px;
    padding: 5px 8px;
    font-size: 9px;
  }

  .benefit-grid {
    margin: 6px auto 0;
    gap: 10px;
  }

  .benefit-card {
    min-height: 54px;
    padding: 6px 11px;
    gap: 9px;
  }

  .benefit-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .benefit-icon img {
    width: 40px;
    height: 40px;
  }

  .benefit-card h4 {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .benefit-card p {
    font-size: 9px;
  }

  .site-footer {
    min-height: 0;
    height: 72px;
    padding: 3px 48px;
  }

  .footer-logo {
    width: 66px;
    height: 64px;
  }

  .footer-col h5 {
    margin-bottom: 3px;
  }

  .footer-col p {
    font-size: 9px;
    line-height: 1.35;
  }

  .social-icon {
    width: 29px;
    height: 29px;
  }

  html.privacy-document,
  html.privacy-document body {
    height: auto;
    min-height: 100%;
    overflow: visible;
  }

  html.privacy-document body {
    display: block;
  }

  .privacy-page .site-header {
    height: 64px;
  }

  .privacy-page .site-footer {
    min-height: 110px;
    height: auto;
    padding: 16px 60px;
  }

  .privacy-page .footer-logo {
    width: 104px;
    height: 82px;
  }

  .privacy-page .footer-col h5 {
    margin-bottom: 8px;
  }

  .privacy-page .footer-col p {
    font-size: 11px;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .site-header {
    min-height: 68px;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 14px;
  }

  .brand-logo {
    width: 92px;
    height: 54px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    height: auto;
    margin-left: auto;
  }

  .phone-block {
    gap: 6px;
  }

  .phone-icon {
    width: 21px;
    height: 21px;
  }

  .phone-block strong {
    font-size: 11px;
  }

  .phone-block span {
    font-size: 8px;
    line-height: 1.25;
  }

  .page-shell {
    padding: 18px 12px 0;
  }

  h1 {
    font-size: 23px;
    line-height: 1.15;
  }

  .title-underline {
    margin-bottom: 15px;
  }

  .stepper {
    grid-template-columns: minmax(0, auto) 1fr minmax(0, auto) 1fr minmax(0, auto);
    width: 100%;
    margin-bottom: 18px;
  }

  .step {
    min-width: 0;
  }

  .step-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .step-line {
    margin-top: 14px;
  }

  .step-label {
    margin-top: 5px;
    font-size: 10px;
    white-space: nowrap;
  }

  .booking-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .booking-card {
    display: none;
    width: 100%;
    min-height: 0;
    padding: 16px 14px;
    scroll-margin-top: 12px;
    scroll-snap-align: start;
  }

  .booking-card.current-step {
    display: block;
  }

  .card-heading {
    gap: 11px;
    margin-bottom: 14px;
  }

  .icon-circle {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .icon-circle svg {
    width: 22px;
    height: 22px;
  }

  .card-heading h2 {
    font-size: 18px;
  }

  .calendar-box {
    padding-inline: 8px;
  }

  .calendar-header strong {
    font-size: 16px;
  }

  .days {
    gap: 3px 0;
  }

  .days span,
  .days button {
    height: 36px;
  }

  .days .selected {
    width: 36px;
    height: 36px;
  }

  .days {
    font-size: 12px;
  }

  .calendar-legend {
    gap: 20px;
  }

  .info-box {
    padding: 12px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 14px auto;
  }

  .benefit-card {
    min-height: 76px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px 28px;
    text-align: center;
  }

  .footer-brand,
  .socials {
    justify-content: center;
  }

  .footer-logo {
    width: 108px;
    height: 86px;
    margin: 0 auto;
  }

  .privacy-main {
    width: 100%;
    padding: 20px 12px 36px;
  }

  .privacy-back {
    margin-bottom: 15px;
  }

  .privacy-hero {
    align-items: flex-start;
    gap: 14px;
    padding: 21px 17px;
    border-radius: 12px;
  }

  .privacy-shield {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 21px;
  }

  .privacy-hero h1 {
    font-size: 24px;
  }

  .privacy-hero > div > p:last-child {
    font-size: 14px;
    line-height: 1.55;
  }

  .privacy-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  .privacy-summary {
    position: static;
    width: 100%;
    padding: 19px;
  }

  .privacy-content {
    width: 100%;
    gap: 12px;
  }

  .privacy-content section {
    padding: 20px 17px;
  }

  .privacy-content h2 {
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.35;
  }

  .privacy-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}
