/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0C1A3A;
  --navy2: #162852;
  --navy3: #1E3A6E;
  --gold: #C8973A;
  --gold2: #E0B060;
  --gold3: #F5D08A;
  --off: #F7F6F2;
  --white: #FFFFFF;
  --text: #0C1A3A;
  --muted: #5A6A8A;
  --light: #A8B4CC;
  --border: #DDE3EE;
  --surface: #EFF2F9;
  --green: #1A7A4A;
  --greenbg: #E6F5EE;
  --red: #B91C1C;
  --redbg: #FEE2E2;
  --r: 10px;
  --rl: 14px;
  --rxl: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--off);
  font-size: 15px;
  line-height: 1.65;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

/* ── Nav ── */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold2);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .68);
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: var(--r);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold2) !important;
}

/* ── Flash messages ── */
.flash-container {
  max-width: 1080px;
  margin: 12px auto;
  padding: 0 5%;
}

.flash {
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 14px;
  margin-bottom: 8px;
}

.flash-success {
  background: var(--greenbg);
  color: var(--green);
  border: 1px solid #9FE1CB;
}

.flash-error {
  background: var(--redbg);
  color: var(--red);
  border: 1px solid #FCA5A5;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy3) 100%);
  color: #fff;
  padding: 80px 5% 96px;
  text-align: center;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 58, .15);
  border: 1px solid rgba(200, 151, 58, .35);
  color: var(--gold3);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: 'Sora', sans-serif;
}

h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

h1 em {
  color: var(--gold2);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .7);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}

.hero-price-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

.hero-price {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold2);
}

.hero-price-vat {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
}

.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--r);
  border: none;
  transition: background .2s, transform .1s;
  letter-spacing: -.2px;
}

.btn-hero:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

.trust-tick {
  color: var(--gold2);
  font-weight: 700;
}

/* ── Sections ── */
.section {
  padding: 72px 5%;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-label-light {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.section-title-light {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.section-desc-light {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.section-cta-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}

.btn-outline-light:hover {
  border-color: var(--gold2);
  background: rgba(200, 151, 58, .1);
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}

.step-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}

.step-item:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(12, 26, 58, .1);
  transform: translateY(-2px);
}

.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.featured-badge {
  display: inline-block;
  background: rgba(200, 151, 58, .2);
  color: var(--gold3);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.service-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.featured .service-name {
  color: #fff;
}

.service-price {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.service-vat {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.featured .service-vat {
  color: rgba(255, 255, 255, .45);
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured .service-desc {
  color: rgba(255, 255, 255, .6);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.service-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.featured .service-features li {
  color: rgba(255, 255, 255, .7);
}

.featured .service-features li::before {
  color: var(--gold2);
}

.btn-service {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: var(--r);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: var(--surface);
  color: var(--navy);
  text-align: center;
  transition: background .2s;
}

.btn-service:hover {
  background: var(--border);
}

.featured .btn-service {
  background: var(--gold);
  color: var(--navy);
}

.featured .btn-service:hover {
  background: var(--gold2);
}

/* ── FAQ ── */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q:hover {
  background: var(--surface);
}

.faq-chevron {
  color: var(--light);
  font-size: 16px;
  transition: transform .2s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 22px 18px;
}

/* ── Buttons ── */
.btn-next {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: var(--r);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}

.btn-next:hover {
  background: var(--navy2);
}

.btn-back {
  background: none;
  border: 1px solid var(--border);
  padding: 11px 22px;
  border-radius: var(--r);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background .2s;
  display: inline-block;
}

.btn-back:hover {
  background: var(--surface);
}

.btn-pay {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 32px;
  border-radius: var(--r);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}

.btn-pay:hover {
  background: var(--gold2);
}

.btn-cancel {
  background: var(--redbg);
  color: var(--red);
  border: 1px solid #FCA5A5;
  padding: 10px 20px;
  border-radius: var(--r);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  margin-top: 12px;
}

.btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}

/* ── Forms ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=date],
select,
textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 13px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy3);
  box-shadow: 0 0 0 3px rgba(30, 58, 110, .09);
}

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

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-hint {
  font-size: 12px;
  color: var(--muted);
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.required {
  color: var(--red);
}

.info-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 24px 26px;
  margin-bottom: 16px;
}

.form-card-info {
  background: var(--surface);
  border-color: #C8D3E8;
}

.form-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
  align-items: center;
}

/* ── Booking shell ── */
.booking-shell {
  min-height: calc(100vh - 64px);
  background: var(--off);
  padding: 48px 5%;
}

.booking-container {
  max-width: 720px;
  margin: 0 auto;
}

.booking-header {
  margin-bottom: 32px;
}

.back-link {
  font-size: 13px;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 12px;
}

.back-link:hover {
  color: var(--navy);
}

.booking-title {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.booking-sub {
  color: var(--muted);
  font-size: 15px;
}

/* ── Progress bar ── */
.progress-bar {
  display: flex;
  gap: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--light);
  transition: all .25s;
}

.progress-step.active {
  background: var(--navy);
  color: #fff;
}

.progress-step.done {
  color: var(--green);
}

.progress-num {
  font-size: 11px;
}

/* ── Service picker ── */
.service-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: flex-start;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
}

.service-option:hover {
  border-color: var(--navy3);
}

.service-option.selected {
  border-color: var(--navy);
  background: var(--surface);
}

.service-option input {
  display: none;
}

.service-option-inner {
  flex: 1;
}

.service-option-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.service-option-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin: 2px 0;
}

.service-option-desc {
  font-size: 13px;
  color: var(--muted);
}

.service-option-check {
  display: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
}

.service-option.selected .service-option-check {
  display: flex;
}

/* ── Calendar ── */
.calendar-wrapper {
  max-width: 380px;
}

.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  width: 34px;
  height: 34px;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  background: var(--surface);
}

.cal-month-label {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.cal-weekdays span {
  font-size: 11px;
  font-weight: 600;
  color: var(--light);
  text-align: center;
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  font-size: 13px;
  cursor: pointer;
  color: var(--text);
  transition: background .15s;
}

.cal-day:hover:not(.disabled) {
  background: var(--surface);
}

.cal-day.selected {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

.cal-day.today {
  color: var(--gold);
  font-weight: 600;
}

.cal-day.disabled {
  color: var(--light);
  cursor: not-allowed;
}

.cal-hint {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  margin-top: 10px;
  min-height: 20px;
}

/* ── Time slots ── */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 9px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  color: var(--text);
}

.time-slot:hover:not(.unavailable) {
  border-color: var(--navy3);
  background: var(--surface);
}

.time-slot.selected {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.time-slot.unavailable {
  color: var(--light);
  cursor: not-allowed;
}

.slot-hint {
  font-size: 13px;
  color: var(--muted);
  grid-column: 1/-1;
}

.time-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

#submit-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── Order summary ── */
.order-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 22px 26px;
  margin-bottom: 16px;
}

.summary-rows {
  display: flex;
  flex-direction: column;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--surface);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--muted);
}

.summary-divider {
  border-top: 1px solid var(--border);
  margin: 4px 0;
}

.summary-total {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  border-top: 1px solid var(--border) !important;
  margin-top: 4px;
  padding-top: 12px !important;
}

/* ── Confirmation ── */
.confirmation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 48px 40px;
  text-align: center;
}

.confirm-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.confirm-title {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.confirm-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.confirm-ref {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 20px;
  font-family: monospace;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
}

.confirm-details {
  background: var(--surface);
  border-radius: var(--rl);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 20px;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  color: var(--muted);
}

.confirm-checklist {
  background: var(--greenbg);
  border: 1px solid #9FE1CB;
  border-radius: var(--rl);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 20px;
}

.confirm-checklist h3 {
  font-size: 14px;
  font-weight: 600;
  color: #0F6E56;
  margin-bottom: 8px;
}

.confirm-checklist ul {
  padding-left: 18px;
  font-size: 13px;
  color: #0F6E56;
  line-height: 1.9;
}

.confirm-help {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Auth ── */
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--off);
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
}

.auth-logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.auth-logo span {
  color: var(--gold2);
}

.auth-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .6);
  padding: 52px 5% 32px;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--gold2);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 8px;
}

.footer-company {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  max-width: 700px;
  line-height: 1.6;
  margin-top: 16px;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: 28px;
  }

  .hero-trust {
    gap: 12px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .section-cta-inner {
    flex-direction: column;
  }

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

  .step-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .step-item:last-child {
    border-bottom: none;
  }

  .progress-label {
    display: none;
  }

  .confirmation-card {
    padding: 32px 20px;
  }
}

.service-empty {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--r);
}

/* ── Legal pages ── */
.legal-shell {
  min-height: calc(100vh - 64px);
  background: var(--off);
  padding: 56px 5%;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-title {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 40px;
}

.legal-body h2 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

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

.legal-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-body ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-body a {
  color: var(--navy);
  text-decoration: underline;
}

.legal-body strong {
  color: var(--navy);
}