/* ============================================================
   Springline Cleaning — shared styles
   Brand: navy #0d2149 · blue #1f6fe5 · white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --navy:        #0f2138;
  --navy-2:      #16304f;
  --blue:        #007bc5;
  --blue-dark:   #0067a7;
  --ink:         #16243a;
  --muted:       #5b6577;
  --line:        #e4e8ef;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fb;
  --white:       #ffffff;

  --maxw:        1200px;
  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 18px 50px -24px rgba(13,33,73,.35);
  --shadow-sm:   0 8px 24px -16px rgba(13,33,73,.40);

  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

p { margin: 0; }

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

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }

/* ---------- Logo (official SVG wordmark) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
}
.logo svg, .logo .logo-img {
  height: 152px;
  width: auto;
  display: block;
}
.site-footer .logo svg { height: 120px; }
.logo-word--unused {
  font-family: var(--font-head);
  font-weight: 800;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -.02em;
  transform: skewX(-2deg);
}
.logo-word .spring { color: var(--navy); }
.logo-word .line   { color: var(--blue); }
.logo-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--muted);
  padding-left: 3px;
}
/* on dark backgrounds */
.on-dark .logo-word .spring { color: #fff; }
.on-dark .logo-sub { color: rgba(255,255,255,.62); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 24px -12px rgba(31,111,229,.7); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--navy); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 186px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: color .15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--bg);
  padding: 84px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--blue); }
.hero-lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  position: relative;
}
.hero-media image-slot {
  width: 100%;
  height: 480px;
  box-shadow: var(--shadow);
}

/* ---------- Trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
}
.trust-item .lbl { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; margin-bottom: 16px; }
.sec-head p { font-size: 18px; color: var(--muted); }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.card .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(31,111,229,.1);
  color: var(--blue);
  margin-bottom: 20px;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* feature card with image */
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-card image-slot { width: 100%; height: 210px; }
.feature-card .fc-body { padding: 26px 28px 30px; }
.feature-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.fc-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 7px;
}
.fc-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.feature-card:hover .fc-link svg { transform: translateX(4px); }

/* ---------- Split row (alternating image/text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split + .split { margin-top: 88px; }
.split image-slot { width: 100%; height: 420px; box-shadow: var(--shadow); }
.split.flip .split-media { order: 2; }
.split h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 18px; }
.split p { font-size: 17px; color: var(--muted); margin-bottom: 22px; }
.check-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.check-list .tick {
  flex: none;
  width: 22px; height: 22px; margin-top: 2px;
  border-radius: 50%;
  background: rgba(31,111,229,.12);
  color: var(--blue);
  display: grid; place-items: center;
}
.check-list .tick svg { width: 13px; height: 13px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  background: linear-gradient(120deg, #0b1c40, #15336b);
  color: #fff;
  border-radius: 22px;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 48ch; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, #0b1c40, #15336b);
  color: #fff;
  padding: 88px 0 96px;
}
.page-hero .eyebrow { color: #6ea4f5; }
.page-hero h1 { color: #fff; font-size: clamp(38px, 4.6vw, 56px); font-weight: 800; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 19px; max-width: 56ch; }
.crumbs {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}
.crumbs a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 70px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-grid p { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 18px; max-width: 32ch; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Contact section (inline form) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.contact-info .eyebrow { margin-bottom: 18px; }
.contact-info h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; margin-bottom: 16px; }
.contact-info p { font-size: 18px; color: var(--muted); margin-bottom: 30px; max-width: 42ch; }
.contact-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-points li { display: flex; gap: 14px; align-items: center; }
.contact-points .cp-ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,123,197,.1); color: var(--blue);
  display: grid; place-items: center;
}
.contact-points .cp-ic svg { width: 21px; height: 21px; }
.contact-points .cp-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.contact-points .cp-value { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--navy); }

.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--navy);
}
.field label .req { color: var(--blue); }
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6577' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 40px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background-color: #fff;
}
.field textarea { resize: vertical; min-height: 92px; }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success .fs-ic {
  width: 60px; height: 60px; margin: 0 auto 18px;
  border-radius: 50%; background: rgba(0,123,197,.12); color: var(--blue);
  display: grid; place-items: center;
}
.form-success .fs-ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15.5px; }
.quote-form.sent .form-body { display: none; }
.quote-form.sent .form-success { display: block; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8,18,38,.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 90px -30px rgba(8,18,38,.6);
  overflow: hidden;
  animation: modal-in .22s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head {
  background: linear-gradient(120deg, #0b1c40, #15336b);
  color: #fff;
  padding: 26px 30px 24px;
  position: relative;
}
.modal-head h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.modal-head p { color: rgba(255,255,255,.72); font-size: 14.5px; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff;
  display: grid; place-items: center;
  transition: background .15s ease;
}
.modal-close:hover { background: rgba(255,255,255,.28); }
.modal-close svg { width: 17px; height: 17px; }
.modal-body { padding: 28px 30px 30px; }
.modal-body .field:last-of-type { margin-bottom: 22px; }

/* ---------- Partnerships band ---------- */
.partner-band {
  background: linear-gradient(120deg, #0b1c40, #15336b);
  color: #fff;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.partner-band .eyebrow { color: #6ea4f5; }
.partner-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.partner-copy p {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  margin-bottom: 26px;
  max-width: 46ch;
}
.partner-media image-slot { width: 100%; height: 400px; box-shadow: var(--shadow); }
.partner-list { margin-bottom: 30px; }
.partner-list li { color: #fff; }
.partner-list .tick { background: rgba(255,255,255,.16); color: #fff; }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal .updated {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--muted); margin-bottom: 40px;
}
.legal h2 {
  font-size: 24px; font-weight: 800; color: var(--navy);
  margin: 40px 0 14px;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.legal p { font-size: 16.5px; color: var(--ink); margin-bottom: 14px; line-height: 1.7; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
.legal li { font-size: 16.5px; color: var(--ink); line-height: 1.6; }
.legal a { color: var(--blue); }
.legal a:hover { text-decoration: underline; }
.legal .note {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 22px; margin-top: 36px;
  font-size: 14.5px; color: var(--muted);
}

/* ---------- Footer actions: Join Our Team + socials ---------- */
.footer-actions { margin-top: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.btn-join { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-join:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-social { display: flex; gap: 12px; }
.social-ic {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,.78);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.social-ic:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.social-ic svg { width: 18px; height: 18px; }

/* ---------- Footer legal row ---------- */
.footer-legal { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.6); transition: color .15s ease; }
.footer-legal a:hover { color: var(--blue); }

/* ---------- Thank-you page ---------- */
.thankyou { padding: 110px 0; }
.thankyou-card { max-width: 600px; margin: 0 auto; text-align: center; }
.thankyou-ic {
  width: 84px; height: 84px; margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(0,123,197,.12);
  color: var(--blue);
  display: grid; place-items: center;
}
.thankyou-ic svg { width: 42px; height: 42px; }
.thankyou-card h1 { font-size: clamp(38px, 5vw, 56px); font-weight: 800; margin-bottom: 18px; }
.thankyou-card > p {
  font-size: 19px; color: var(--muted);
  max-width: 48ch; margin: 0 auto 34px;
}
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.thankyou-meta { font-size: 15px; color: var(--muted); }
.thankyou-meta a { color: var(--blue); font-weight: 600; }
.thankyou-meta a:hover { text-decoration: underline; }

/* visually-hidden honeypot safeguard */
.hp-field { position: absolute; left: -9999px; }

/* ---------- Mobile nav (hamburger + drawer) ---------- */
.nav-toggle { display: none; }

.nav-toggle {
  width: 46px; height: 46px;
  border: none; background: transparent; cursor: pointer;
  padding: 0; position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(8,18,38,.5);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(82vw, 340px);
  background: #fff;
  box-shadow: -20px 0 60px -20px rgba(8,18,38,.5);
  padding: 26px 26px 32px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-close {
  align-self: flex-end;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  display: grid; place-items: center; cursor: pointer;
}
.nav-drawer-close svg { width: 18px; height: 18px; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; }
.nav-drawer-links a {
  font-family: var(--font-head); font-weight: 700; font-size: 22px;
  color: var(--navy); padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-links a.active { color: var(--blue); }
.nav-drawer-foot { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.nav-drawer-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--navy);
}
.nav-drawer-phone svg { width: 19px; height: 19px; color: var(--blue); }
.nav-drawer-foot .btn { justify-content: center; }
.nav-drawer-hours { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 0; }
  .hero { padding: 44px 0 56px; }
  .hero-grid, .split, .split.flip .split-media { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .hero-media image-slot, .split image-slot { height: 300px; }
  .partner-grid { grid-template-columns: 1fr; gap: 34px; }
  .partner-media image-slot { height: 280px; }
  .partner-copy { order: 1; }
  .partner-media { order: 2; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .cta-band { padding: 44px 32px; }
  .nav { height: 110px; }
  .logo svg, .logo .logo-img { height: 88px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(34px, 9vw, 46px); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .cta-actions { width: 100%; }
  .cta-band .cta-actions .btn { flex: 1; justify-content: center; }
  .logo svg, .logo .logo-img { height: 72px; }
}
