/* ==========================================================
   Jacqui's Cleaning Services — recreated from Figma
   Design canvas: 1920px desktop / 375px mobile
   ========================================================== */

:root {
  --navy: #002f73;
  --accent: #00a1f1;
  --ink: #1d1d1f;
  --grey: #f5f5f7;
  --card-blue: #e5f5fd;
  --line: #ebebeb;
  --star: #fec42d;
  --btn-ink: #dddddd;
  --radius-lg: 24px;
  --radius-md: 16px;
  --edge: 8px;            /* page gutter around full-bleed blocks */
  --container: 1320px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  max-width: 1920px;
  margin: 0 auto;
}

img { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
input { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- shared two-column split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.split > :nth-child(2),
.split-content { max-width: 644px; }

.section-label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.section-label.on-dark { color: rgba(255, 255, 255, 0.64); }

.h-md {
  font-size: clamp(32px, 2.34vw, 45px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.h-lg {
  font-size: clamp(38px, 3.33vw, 64px);
  line-height: 1.0625;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.h-lg.on-dark { color: #fff; }

.body-lg {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.content-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; }

.fw-500 { font-weight: 500; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 16px 20px 16px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0, 47, 115, 0.18); }
.btn .icon-arrow { width: 24px; height: 24px; flex: 0 0 auto; }

.btn-navy { background: var(--navy); color: var(--btn-ink); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white-navy { background: #fff; color: var(--navy); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 92px;
  padding: 0 72px;
  background: #fff;
  transition: box-shadow 0.25s ease;
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(10, 13, 18, 0.08); }

.logo img { height: 64px; width: auto; }

.main-nav {
  display: flex;
  gap: 72px;
  margin-left: auto;
  margin-right: 40px;
}
.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--accent); }

.header-cta { width: 200px; justify-content: space-between; gap: 0; padding: 9px 16px 9px 20px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.2s; }

.mobile-menu {
  position: fixed;
  inset: 92px 0 auto 0;
  z-index: 99;
  background: #fff;
  padding: 32px 24px 40px;
  box-shadow: 0 24px 32px rgba(10, 13, 18, 0.12);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.mobile-menu nav a { font-size: 18px; font-weight: 500; color: var(--navy); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 880px;
  margin: 0 var(--edge);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 40%; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }

.hero-title { position: absolute; left: 64px; top: 52px; }
.hero-pre { font-size: 23px; opacity: 0.72; letter-spacing: -0.03em; margin-bottom: 8px; }
.hero-big {
  font-size: clamp(64px, 8.23vw, 158px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
  display: flex;
  align-items: flex-start;
}
.reg-badge {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 28px;
  margin-top: 26px;
  flex: 0 0 auto;
}
.hero-sub {
  font-size: clamp(28px, 2.34vw, 45px);
  font-weight: 500;
  letter-spacing: -0.03em;
  opacity: 0.8;
  margin-left: clamp(120px, 16.2vw, 311px);
  margin-top: 4px;
}

.hero-services {
  position: absolute;
  top: 64px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.hero-services li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: #4eccff; }

.hero-ticks {
  position: absolute;
  top: 432px;
  left: 64px;
  width: calc(100% - 128px);
  height: 16px;
}

.hero-tagline {
  position: absolute;
  left: 64px;
  bottom: 60px;
  font-size: 23px;
  line-height: 27px;
  letter-spacing: -0.01em;
  opacity: 0.72;
}

.hero-contact {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  align-items: center;
}
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #fff; white-space: nowrap; }
.contact-icon { width: 20px; height: 20px; opacity: 0.56; }

/* steam cleaning mini-card */
.steam-card {
  position: absolute;
  right: 64px;
  bottom: 64px;
  width: 360px;
  height: 160px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 8px;
  display: flex;
  align-items: center;
  color: var(--navy);
  transition: transform 0.2s ease;
}
.steam-card:hover { transform: translateY(-2px); }
.steam-img { width: 108px; height: 144px; object-fit: cover; border-radius: 12px; flex: 0 0 auto; }
.steam-label { flex: 1; padding-left: 30px; font-size: 23px; font-weight: 500; line-height: 27px; letter-spacing: -0.03em; }
.steam-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--btn-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex: 0 0 auto;
}
.steam-icon svg { width: 24px; height: 24px; }

/* ==========================================================
   ABOUT
   ========================================================== */
.about { padding: 160px 0 96px; }
.about .split-content { display: flex; flex-direction: column; gap: 40px; }

/* ==========================================================
   BOOK YOUR CLEAN (banner, 2 variants)
   ========================================================== */
.book {
  display: flex;
  gap: var(--edge);
  margin: 0 var(--edge);
  min-height: 640px;
}
.book-media {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.book-media img { width: 100%; height: 100%; object-fit: cover; }

.book-panel {
  flex: 0 0 508px;
  border-radius: var(--radius-lg);
  padding: 64px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.book-navy .book-panel { background: var(--navy); }
.book-dark .book-panel { background: var(--ink); }

.book-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: -0.03em;
}
.book-title span { color: rgba(255, 255, 255, 0.48); }

.book-form { display: flex; flex-direction: column; margin-top: auto; }
.book-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 20px 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  outline: none;
  margin-bottom: 8px;
}
.book-form input::placeholder { color: rgba(255, 255, 255, 0.48); }
.book-form input:focus { border-color: var(--accent); }

.book-checklist { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.book-checklist li { display: flex; align-items: center; gap: 12px; font-size: 16px; opacity: 0.8; }
.check {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.check svg { width: 16px; height: 16px; }

.book-form .btn { justify-content: space-between; gap: 0; width: 100%; }
.book-form .btn:disabled { opacity: 0.7; cursor: wait; }

/* honeypot — visually hidden, still in the DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.88);
}
.form-status.is-error { color: #ffb4a8; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { padding: 160px 0 0; }

.service-cards { margin-top: 108px; display: flex; flex-direction: column; gap: 64px; }

.service-card {
  position: relative;
  background: var(--card-blue);
  border-radius: var(--radius-md);
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.05);
  min-height: 440px;
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 8px;
}
.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 0 56px 56px;
}

.service-title { display: flex; align-items: center; gap: 16px; }
.service-num {
  font-size: clamp(96px, 8.23vw, 158px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.08;
}
.service-title h3 {
  font-size: clamp(30px, 2.34vw, 45px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.service-text > p {
  margin-top: auto;
  padding-top: 28px;
  max-width: 530px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.service-img {
  flex: 0 0 644px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08),
              0 4px 6px -2px rgba(10, 13, 18, 0.03),
              0 2px 2px -1px rgba(10, 13, 18, 0.04);
}
.service-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.services-cta { margin-top: 108px; }

/* ==========================================================
   BEFORE & AFTER (navy showcase)
   ========================================================== */
.showcase {
  margin: 160px var(--edge) 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 160px 0;
  overflow: hidden;
}
.showcase-head {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 108px;
}

.ba-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 0 max(24px, calc((100% - var(--container)) / 2));
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.ba-track.is-dragging { cursor: grabbing; }
.ba-track img { -webkit-user-drag: none; }
.ba-track::-webkit-scrollbar { display: none; }

.ba-card {
  flex: 0 0 660px;
  background: #fff;
  border-radius: 20px;
  padding: 8px;
}

/* draggable before/after comparison — --pos is the divider position */
.ba-images {
  position: relative;
  height: 429px;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
  outline-offset: 2px;
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; }
.ba-layer-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }

.ba-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  pointer-events: none;
}
.ba-pill-after { left: auto; right: 8px; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 8px rgba(10, 13, 18, 0.3);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  left: var(--pos, 50%);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 13, 18, 0.16);
  pointer-events: none;
}
.ba-handle img { width: 24px; height: 24px; }

.ba-content { padding: 48px 40px 56px; }
.ba-stars { display: flex; gap: 8px; }
.ba-stars svg { width: 16px; height: 16px; fill: var(--star); }
.ba-quote {
  margin-top: 32px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.01em;
  opacity: 0.88;
}
.ba-author { margin-top: 72px; }
.ba-name { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.ba-loc { margin-top: 16px; font-size: 16px; opacity: 0.72; }

.ba-dots { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 40px; }
.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.ba-dot.is-active {
  background: transparent;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.87);
  width: 10px;
  height: 10px;
}

/* ==========================================================
   TESTIMONIAL
   ========================================================== */
.testimonial { padding: 160px 0; }

.avatars-block { margin-top: 108px; }
.avatars { display: flex; gap: 20px; }
.avatar {
  position: relative;
  width: 120px;
  height: 120px;
  flex: 0 0 auto;
  padding: 0;
  transition: opacity 0.25s ease;
}
.avatar img:first-child {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.25s ease;
}
.avatar.is-active img:first-child { filter: none; }
.avatar:not(.is-active) { opacity: 0.48; }
.avatar:not(.is-active):hover { opacity: 0.75; }
.quote-mark {
  position: absolute;
  top: 0;
  right: -6px;
  width: 42px;
  height: 32px;
}
.avatar-author {
  width: 120px;
  text-align: center;
  margin-top: 16px;
  transition: transform 0.3s ease;
}
.t-name { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.t-loc { margin-top: 8px; font-size: 14px; line-height: 20px; opacity: 0.72; }

.t-counter { display: flex; flex-direction: column; gap: 24px; }
.t-number { font-size: clamp(40px, 3.33vw, 64px); font-weight: 600; line-height: 1.0625; letter-spacing: -0.03em; }
.t-sub { font-size: clamp(28px, 2.34vw, 45px); font-weight: 500; line-height: 1.18; letter-spacing: -0.04em; opacity: 0.48; }

.t-quote {
  margin-top: 108px;
  font-size: 23px;
  line-height: 37px;
  letter-spacing: -0.01em;
}

.t-arrows { display: flex; gap: 12px; margin-top: 80px; }
.t-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0, 161, 241, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.t-arrow svg { width: 24px; height: 24px; }
.t-next { border-color: var(--accent); }
.t-arrow:hover { background: rgba(0, 161, 241, 0.08); }

.t-fade { transition: opacity 0.25s ease; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  margin: 0 var(--edge);
  background: var(--grey);
  border-radius: var(--radius-lg);
  padding: 140px 0 160px;
}
.faq-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
}
.faq .split { align-items: stretch; }
.faq-cta { margin-top: auto; }

.faq .h-md { margin-bottom: 80px; }
.faq-list { display: flex; flex-direction: column; gap: 64px; }
.faq-q { font-size: 23px; font-weight: 500; line-height: 37px; letter-spacing: -0.01em; }
.faq-a { margin-top: 24px; font-size: 18px; line-height: 28px; letter-spacing: -0.01em; opacity: 0.72; }

/* book #2 follows FAQ with the page gutter */
.book-dark { margin-top: var(--edge); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { margin-top: var(--edge); }

.footer-card {
  position: relative;
  margin: 0 var(--edge);
  border-radius: var(--radius-lg);
  background: var(--ink);
  overflow: hidden;
  color: #fff;
}

.footer-photo { position: relative; height: 722px; }
.footer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
.footer-photo-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.32); }
.footer-photo-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 400px;
  background: linear-gradient(to bottom, rgba(29, 29, 31, 0), #1d1d1f);
}

.footer-body { position: relative; padding-top: 108px; }

.footer-grid {
  display: grid;
  grid-template-columns: 225px 225px 1fr 305px;
  gap: 32px;
}
.footer-col-title { font-size: 23px; font-weight: 500; letter-spacing: -0.01em; opacity: 0.32; }
.footer-col hr { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.16); margin: 12px 0 0; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 42px; }
.footer-links a { font-size: 16px; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); }

.footer-contact-list { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 42px; }
.footer-contact-list .contact-item { font-size: 16px; line-height: 22px; align-items: flex-start; }
.footer-contact-list .contact-icon { margin-top: 1px; }

.footer-watermark { margin-top: 80px; }
.footer-watermark img { width: 100%; opacity: 0.4; }

.go-top {
  position: absolute;
  right: 72px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
}
.go-top svg { width: 32px; height: 32px; }

/* copyright bar */
.copyright { background: #fff; }
.copyright-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
}
.copy-left { font-size: 16px; color: rgba(29, 29, 31, 0.64); }
.copy-left a { color: var(--navy); font-weight: 500; text-decoration: underline; }
.copy-links { display: flex; gap: 32px; }
.copy-links a { font-size: 16px; color: var(--ink); opacity: 0.72; }
.copy-links a:hover { opacity: 1; }
.powered-by { display: flex; align-items: center; gap: 8px; }
.powered-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.56);
}
.panther-mark { width: 28px; height: 28px; }
.panther-word { width: 70px; height: 24px; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1500px) {
  .main-nav { gap: 40px; }
  .service-img { flex-basis: 48%; }
}

@media (max-width: 1200px) {
  .site-header { padding: 0 32px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero { height: 760px; }
  .hero-services { display: none; }
  .hero-ticks { display: none; }

  .book-panel { flex-basis: 440px; padding: 48px; }

  .service-card { flex-direction: column; }
  .service-text { padding: 32px 24px 0; }
  .service-img { flex-basis: auto; }
  .service-img img { aspect-ratio: 628 / 408; height: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > span { display: none; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; padding: 0 16px; }
  .logo img { height: 44px; }
  .mobile-menu { inset: 72px 0 auto 0; }

  .split { grid-template-columns: 1fr; gap: 24px; }

  .hero { height: 692px; }
  .hero-title { left: 16px; top: 40px; right: 16px; }
  .hero-sub { margin-left: 96px; }
  .hero-tagline {
    left: 16px;
    right: 16px;
    bottom: 120px;
    font-size: 19px;
    line-height: 25px;
  }
  .hero-contact { width: calc(100% - 32px); justify-content: flex-start; flex-wrap: wrap; gap: 12px 24px; bottom: 32px; left: 16px; transform: none; }
  .steam-card { position: static; width: auto; margin: 8px var(--edge) 0; }
  .steam-card-wrap { margin: 8px; }

  /* steam card moves below hero on mobile */
  .hero .steam-card {
    position: absolute;
    right: 16px;
    bottom: 180px;
    display: none;
  }

  .about { padding: 96px 0 64px; }

  .book { flex-direction: column; min-height: 0; }
  .book-media { min-height: 343px; }
  .book-media img { min-height: 343px; }
  .book-panel { flex-basis: auto; padding: 48px 24px; }
  .book-title { margin-bottom: 48px; }

  .services { padding: 96px 0 0; }
  .service-cards { margin-top: 56px; gap: 32px; }
  .service-text { padding: 24px 16px 0; }
  .service-text > p { margin-top: 20px; }
  .services-cta { margin-top: 64px; }

  .showcase { margin-top: 96px; padding: 96px 0; }
  .showcase-head { margin-bottom: 56px; }
  .ba-card { flex: 0 0 85%; }
  .ba-images { height: auto; aspect-ratio: 644 / 429; }
  .ba-content { padding: 32px 20px 40px; }
  .ba-author { margin-top: 40px; }

  .testimonial { padding: 96px 0; }
  .avatars-block { margin-top: 40px; }
  .t-quote { margin-top: 48px; }
  .t-arrows { margin-top: 48px; }

  .faq { padding: 96px 0; }
  .faq .h-md { margin-bottom: 48px; }
  .faq-list { gap: 40px; }
  .faq-cta { margin-top: 40px; }

  .footer-photo { height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-body { margin-top: -80px; }
  .footer-watermark { margin-top: 56px; }
  .go-top { position: static; flex-direction: row; justify-content: center; margin: 32px auto 24px; }

  .copyright-row { flex-direction: column; justify-content: center; height: auto; padding: 24px 0; gap: 16px; text-align: center; }
}
