/* ---------- Tokens ---------- */
:root {
  --navy: #0A2B66;
  --sky: #14A3DE;        /* logo light blue — decorative only (fails text contrast) */
  --sky-text: #0A6FA6;   /* darker sky for text on white (5.5:1) */
  --sky-tint: #E6F4FB;
  --ground: #F3F7FB;
  --white: #FFFFFF;
  --line: #D6E2EE;
  --line-strong: #C7D5E3;
  --muted: #4A5B73;
  --muted-light: #8A9BB0;
  --off: #E3EAF2;
  --shadow-lg: 0 24px 48px rgba(10, 43, 102, 0.18);
  --shadow-sm: 0 6px 18px rgba(10, 43, 102, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1280px;
  --gutter: 80px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--ground);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-text); }
a:hover { color: var(--navy); }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

section h2 { font-size: 44px; }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky-text); margin-bottom: 12px; }
.body-lg { font-size: 18px; line-height: 1.6; color: var(--muted); margin-top: 16px; }
.section-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 8px; }
.section-head .body-lg { margin-top: 12px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card h2, .card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 16px; color: var(--muted); }

.pill, .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--sky-tint); color: var(--sky-text);
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
}
.badge { padding: 6px 12px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-light { background: rgba(255,255,255,0.14); color: var(--white); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px;
  border-radius: 12px; border: 2px solid transparent;
  font-size: 16px; font-weight: 700; text-decoration: none;
  cursor: pointer; transition: transform .12s ease, background .12s ease, color .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { height: 48px; padding: 0 22px; border-radius: 10px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 18px; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: #0E3A85; color: var(--white); }
.btn-outline { background: var(--white); color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--sky-tint); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white); border-bottom: 1px solid var(--line);
}
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 36px; font-size: 16px; font-weight: 600; }
.nav a { color: var(--navy); text-decoration: none; }
.nav a:hover { color: var(--sky-text); }
.nav .nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.nav .btn { color: var(--white); }
.nav .btn:hover { color: var(--white); }
.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { background: var(--white); padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero h1 { font-size: 64px; line-height: 1.04; }
.lead { font-size: 22px; line-height: 1.45; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 15px; font-weight: 600; color: var(--muted); margin-top: 8px; }
.hero-checks li { display: flex; align-items: center; gap: 8px; }
.hero-checks svg { color: var(--sky-text); flex-shrink: 0; }
.hero-figure { margin: 0; position: relative; }
.hero-figure img { width: 100%; aspect-ratio: 624 / 400; object-fit: cover; object-position: 50% 50%; border-radius: 20px; box-shadow: var(--shadow-lg); }

/* ---------- Benefits ---------- */
.benefits { padding: 32px 0 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.icon-box {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  background: var(--sky-tint); color: var(--sky-text);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Why ---------- */
.why { padding: 96px 0 72px; }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.why-media { display: flex; flex-direction: column; gap: 16px; }
.why-photo { width: 100%; aspect-ratio: 816 / 433; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-sm); }
.why-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.tile { padding: 22px; display: flex; flex-direction: column; gap: 6px; }
.tile strong { font-size: 16px; font-weight: 800; }
.tile span { font-size: 15px; color: var(--muted); line-height: 1.45; }

/* ---------- How it works ---------- */
.how { background: var(--white); padding: 80px 0; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; counter-reset: step; }
.step { background: var(--ground); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
}
.step h3 { font-size: 22px; }
.step p { font-size: 16px; line-height: 1.55; color: var(--muted); }

.truck-band { background: var(--white); padding: 48px 0; }
.truck { display: block; width: 100%; max-width: 960px; height: auto; margin: 0 auto; }

/* ---------- Pricing ---------- */
.pricing { padding: 96px 0 80px; }
.pricing-tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.price-desc { font-size: 16px; line-height: 1.5; color: inherit; opacity: 0.85; }
.price-card.price-card-wide { margin-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.price-wide-copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.price-card .price-wide-copy .btn { width: auto; margin-top: 0; }
.price-wide-list { color: var(--navy); }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.price-card .btn { width: 100%; margin-top: auto; }
.price-card-primary { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 24px 48px rgba(10, 43, 102, 0.22); }
.price { display: flex; flex-direction: column; gap: 4px; }
.price-amount { font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.price-name { font-size: 20px; font-weight: 700; }
.price-title { font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.price-sub { font-size: 18px; color: var(--muted); }
.checklist { display: flex; flex-direction: column; gap: 12px; font-size: 16px; line-height: 1.4; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; }
.checklist li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237FD3F5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.checklist-dark li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A6FA6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.checklist-plus li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A6FA6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}

/* ---------- Book: calendar + form ---------- */
.book { background: var(--white); padding: 80px 0; }
.book-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 40px; align-items: start; }
.book-step { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.step-tag { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; color: var(--navy); }
.step-tag .step-num { width: 32px; height: 32px; font-size: 14px; }
.book-note { font-size: 14px; color: var(--muted); }
.legend { display: flex; flex-wrap: wrap; gap: 12px 24px; font-size: 15px; font-weight: 600; color: var(--muted); margin: 4px 0 0; }
.legend li { display: flex; align-items: center; gap: 8px; }
.legend-swatch { width: 22px; height: 22px; border-radius: 50%; display: inline-block; }
.legend-open { border: 2px solid var(--sky); }
.legend-selected { background: var(--navy); }
.legend-off { background: var(--off); }
.calendar { background: var(--ground); border-radius: var(--radius-lg); padding: 32px; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.calendar-title { font-size: 18px; font-weight: 800; white-space: nowrap; }
.calendar-month { font-size: 15px; font-weight: 600; color: var(--muted); white-space: nowrap; }
.calendar-days, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.calendar-days { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 12px; }
.cal-cell { height: 52px; display: flex; align-items: center; justify-content: center; }
.calendar-nav { display: flex; align-items: center; gap: 6px; }
.cal-arrow {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.cal-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day {
  width: 44px; height: 44px; border-radius: 50%; padding: 0;
  border: 2px solid transparent; background: none; color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; cursor: pointer;
}
.cal-day.is-open { border-color: var(--sky); }
.cal-day.is-open:hover { background: var(--sky-tint); }
.cal-day.is-selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
.cal-day.is-off { color: var(--muted-light); text-decoration: line-through; font-weight: 500; cursor: not-allowed; }
.cal-day.is-today.is-off { text-decoration: none; }
.calendar-windows { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.calendar-windows-title { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.calendar-windows-title strong { color: var(--navy); }
.calendar-windows-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.window-btn {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px 14px; border-radius: 12px; border: 2px solid var(--line);
  background: var(--white); color: var(--navy); font-weight: 700; font-size: 15px; cursor: pointer; text-align: left;
}
.window-btn small { font-size: 12px; font-weight: 600; color: var(--sky-text); }
.window-btn:hover { border-color: var(--sky); }
.window-btn.is-selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
.window-btn.is-selected small { color: #C9DDF0; }
.window-btn:disabled { cursor: not-allowed; color: var(--muted-light); background: var(--off); border-color: var(--off); }
.window-btn:disabled small { color: var(--muted-light); }
.calendar-note { margin-top: 14px; font-size: 14px; color: var(--muted); min-height: 1.4em; }
.slot-box {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; align-items: center;
  padding: 14px 16px; border-radius: 12px; border: 1px dashed var(--line-strong); background: var(--white);
}
.slot-box.is-set { border-style: solid; border-color: var(--sky); }
.slot-box.is-missing { border-color: #B42318; }
.slot-label { font-size: 13px; font-weight: 700; color: var(--muted); grid-column: 1; }
.slot-value { font-size: 16px; font-weight: 700; grid-column: 1; }
.slot-link { grid-column: 2; grid-row: 1 / span 2; font-size: 14px; font-weight: 700; white-space: nowrap; }
@media (min-width: 861px) { .slot-link { display: none; } }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1040px; margin: 0 auto; }
.faq .card h3 { font-size: 18px; }
.faq .card p { line-height: 1.55; }

/* ---------- Quote form ---------- */
.quote-form { background: var(--ground); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.quote-form, .field { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field select, .field input[type="file"] { min-width: 0; max-width: 100%; }
.field label { font-size: 14px; font-weight: 700; }
.req { color: #B42318; font-weight: 700; }
.form-required-note { font-size: 13px; color: var(--muted); margin-top: -6px; }
.field input:not([type="file"]), .field select, .field textarea {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--white); color: var(--navy); font-size: 16px;
}
.field textarea { height: auto; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--sky); outline-offset: 1px; border-color: var(--sky); }
.dropzone {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; min-height: 76px; border: 2px dashed var(--line-strong); border-radius: 12px;
  background: var(--white); cursor: pointer; transition: border-color .12s ease, background .12s ease;
}
.dropzone:hover, .dropzone.is-dragover { border-color: var(--sky); background: var(--sky-tint); }
.dropzone:focus-within { outline: 2px solid var(--sky); outline-offset: 1px; }
.dropzone.has-file { border-style: solid; border-color: var(--sky); }
.dropzone.is-missing { border-color: #B42318; }
.dropzone-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.dropzone-thumb {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 10px; overflow: hidden;
  background: var(--sky-tint); color: var(--sky-text); display: flex; align-items: center; justify-content: center;
}
.dropzone-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dropzone-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.dropzone-text strong { font-size: 15px; font-weight: 700; color: var(--navy); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dropzone-text small { font-size: 13px; color: var(--muted); line-height: 1.35; }
.dropzone-cta {
  flex-shrink: 0; height: 40px; padding: 0 16px; border-radius: 10px; border: 2px solid var(--line);
  background: var(--white); color: var(--navy); font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center;
}
.dropzone:hover .dropzone-cta { border-color: var(--navy); }
.dropzone[hidden], .photo-list[hidden] { display: none; }
.photo-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.photo-item {
  display: flex; align-items: center; gap: 14px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white);
}
.photo-item .dropzone-thumb { width: 44px; height: 44px; }
.photo-item .dropzone-text small.is-error { color: #B42318; font-weight: 600; }
.photo-remove {
  flex-shrink: 0; height: 36px; padding: 0 12px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
}
.photo-remove:hover { border-color: var(--navy); }
.photo-remove:focus-visible { outline: 2px solid var(--sky); outline-offset: 1px; }
.quote-form .btn { margin-top: 6px; }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; }
.form-note.is-error { color: #B42318; }
.form-note.is-success { color: #067647; font-weight: 600; }

/* ---------- CTA ---------- */
.cta { padding: 80px 0 0; }
.cta-inner {
  background: var(--navy); color: var(--white); border-radius: 28px;
  padding: 56px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta h2 { font-size: 40px; margin-bottom: 10px; }
.cta p { font-size: 18px; color: #C9DDF0; }
.cta .btn { flex-shrink: 0; height: 60px; padding: 0 32px; border-radius: 14px; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 72px; padding: 40px 0 48px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); }
.footer-brand img { height: 40px; width: auto; align-self: flex-start; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 28px; font-size: 14px; font-weight: 600; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--navy); }
.footer-copy { font-size: 14px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .hero h1 { font-size: 52px; }
  section h2 { font-size: 38px; }
  .cta-inner { padding: 44px 40px; }
}

@media (max-width: 860px) {
  :root { --gutter: 16px; }
  .header-inner { height: 64px; }
  .brand img { height: 38px; }
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; border-bottom: 0; }

  .hero { padding: 28px 0 32px; }
  .hero-grid, .why-grid, .book-grid, .pricing-tiers, .price-card-wide, .faq-grid, .form-row { grid-template-columns: 1fr; }
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: 38px; }
  .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-checks { flex-direction: column; gap: 8px; }
  .hero-figure img { border-radius: 16px; }

  .benefits { padding-top: 24px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 20px; }

  section h2 { font-size: 30px; }
  .body-lg { font-size: 16px; }
  .why { padding: 48px 0 40px; }
  .why-grid { gap: 24px; }
  .why-tiles { gap: 10px; }
  .tile { padding: 14px; }
  .tile span { display: none; }

  .how, .book { padding: 40px 0; }
  .book-grid { gap: 32px; }
  .pricing, .faq { padding: 48px 0 40px; }
  .section-head { text-align: left; align-items: flex-start; margin-bottom: 24px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .truck-band { padding: 24px 0; }
  .step { padding: 18px; flex-direction: row; gap: 14px; flex-wrap: wrap; }
  .step-num { width: 36px; height: 36px; font-size: 16px; }
  .step h3 { font-size: 17px; flex: 1; align-self: center; }
  .step p { flex-basis: 100%; font-size: 15px; }

  .price-card { padding: 24px; }
  .pricing-tiers { gap: 12px; }
  .price-card-wide { gap: 16px; }
  .price-card .price-wide-copy .btn { width: 100%; }
  .price-amount { font-size: 44px; }
  .price-name { font-size: 18px; }
  .price-title { font-size: 26px; }
  .price-card .btn { white-space: normal; height: auto; min-height: 52px; padding: 12px 20px; font-size: 16px; }

  .calendar { padding: 18px; }
  .calendar-head { flex-wrap: wrap; gap: 8px; }
  .slot-box { grid-template-columns: 1fr; }
  .slot-link { grid-column: 1; grid-row: auto; margin-top: 4px; }
  .calendar-days, .calendar-grid { gap: 4px; }
  .cal-cell { height: 44px; }
  .cal-day { width: 38px; height: 38px; font-size: 14px; }
  .calendar-title { font-size: 16px; }

  .quote-form { padding: 20px; }
  .dropzone { flex-wrap: wrap; }
  .dropzone-cta { width: 100%; justify-content: center; }
  .cta { padding-top: 40px; }
  .cta-inner { flex-direction: column; align-items: stretch; text-align: left; padding: 32px 24px; border-radius: 20px; }
  .cta h2 { font-size: 28px; }
  .cta .btn { width: 100%; }

  .site-footer { margin-top: 40px; padding: 28px 0 36px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }
}

/* ---------- Success page ---------- */
.thanks-body { display: flex; flex-direction: column; min-height: 100vh; }
.thanks-home-link { font-size: 16px; font-weight: 700; color: var(--navy); text-decoration: none; }
.thanks-main { flex-grow: 1; display: flex; align-items: center; justify-content: center; padding: 48px var(--gutter); }
.thanks-card {
  width: 100%; max-width: 720px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 48px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
  box-shadow: 0 24px 48px rgba(10, 43, 102, 0.10);
}
.thanks-check { width: 72px; height: 72px; border-radius: 50%; background: var(--sky-tint); color: var(--sky-text); display: flex; align-items: center; justify-content: center; }
.thanks-card h1 { font-size: 44px; }
.thanks-lead { margin-top: 0; max-width: 560px; }
.thanks-lead strong { color: var(--navy); }
.thanks-steps { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 8px; }
.thanks-steps li { background: var(--ground); border-radius: 14px; padding: 18px 16px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.thanks-steps .step-num { width: 32px; height: 32px; font-size: 14px; }
.thanks-steps strong { font-size: 15px; }
.thanks-steps span:not(.step-num) { font-size: 13px; color: var(--muted); line-height: 1.4; }
.thanks-footer { margin-top: 0; }
@media (max-width: 860px) {
  .thanks-main { padding: 24px var(--gutter); align-items: flex-start; }
  .thanks-card { padding: 28px 20px; }
  .thanks-card h1 { font-size: 30px; }
  .thanks-steps { grid-template-columns: 1fr; }
  .thanks-steps li { flex-direction: row; flex-wrap: wrap; align-items: center; text-align: left; }
  .thanks-steps strong { flex: 1; }
  .thanks-steps span:not(.step-num) { flex-basis: 100%; }
}
