/* ==========================================================================
   The Laundry Room — Commercial Pickup & Delivery landing page
   Brand palette pulled from thelaundryroom321.com (Elementor globals):
     #273B74 deep navy, #0181D4 bright blue, white.
   ========================================================================== */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body,
h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd {
  margin: 0;
}

ul, ol { padding: 0; list-style: none; }

/* height:auto is load-bearing — every img carries width/height attributes to
   reserve layout space, so anything that sets only `width` in CSS would
   otherwise stretch the image to the attribute's height. */
img, picture, svg { max-width: 100%; height: auto; display: block; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* ---------- Tokens ---------- */
:root {
  --navy: #273b74;
  --navy-deep: #1b2c57;
  --navy-ink: #16233f;
  --blue: #0181d4;
  --blue-bright: #38a9f0;
  --blue-wash: #eaf4fd;
  --amber: #ffc24a;
  --amber-deep: #b97e05;

  --ink: #16233f;
  --body: #46536e;
  --muted: #6b7896;
  --line: #dfe6f1;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;

  --ok: #12805c;
  --err: #c0392b;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(22, 35, 63, .06), 0 2px 6px rgba(22, 35, 63, .05);
  --shadow: 0 4px 12px rgba(22, 35, 63, .08), 0 12px 30px rgba(22, 35, 63, .08);
  --shadow-lg: 0 10px 24px rgba(22, 35, 63, .12), 0 28px 60px rgba(22, 35, 63, .16);

  --wrap: 1140px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 6.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.35rem); }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--ink); font-weight: 700; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-deep); color: #cfdcf2; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section__head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}
.section__head p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
}
.section--navy .section__head p { color: #a9bcdd; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section--navy .eyebrow { color: var(--blue-bright); }

/* Accessible skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--navy);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff;
  box-shadow: 0 4px 14px rgba(1, 129, 212, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(1, 129, 212, .42);
}
.btn--primary:active { transform: translateY(0); }
.btn--primary[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .18); }

.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 8px;
}
.site-header__logo img { width: 132px; height: auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
.header-phone:hover {
  text-decoration: none;
  border-color: var(--blue);
  color: var(--blue);
}
.header-phone svg { width: 17px; height: 17px; flex: none; }
.header-phone .header-phone__label { display: none; }

.header-cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-deep);
  color: #dce7f8;
  padding: 40px 0 48px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/img/hero-facility.webp");
  background-size: cover;
  background-position: center 40%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    170deg,
    rgba(20, 34, 68, .93) 0%,
    rgba(27, 44, 87, .95) 45%,
    rgba(39, 59, 116, .97) 100%
  );
}

.hero__grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 194, 74, .16);
  border: 1px solid rgba(255, 194, 74, .5);
  color: var(--amber);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--blue-bright);
}

.hero__sub {
  margin-top: 18px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #c3d3ec;
  max-width: 33ch;
}
.hero__sub strong { color: #fff; }

.hero__points {
  margin-top: 22px;
  display: grid;
  gap: 11px;
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 1rem;
  color: #d7e3f7;
  font-weight: 500;
}
.hero__points svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 1px;
  color: var(--blue-bright);
}

.hero__cta-mobile { margin-top: 26px; }

.hero__trust {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: .88rem;
  font-weight: 600;
  color: #a9bcdd;
}
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--amber); flex: none; }

/* ---------- Form card ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 22px 24px;
  color: var(--body);
  scroll-margin-top: 80px;
}
.form-card__head { text-align: center; margin-bottom: 16px; }
.form-card__head h2 {
  font-size: 1.45rem;
  line-height: 1.2;
}
.form-card__offer {
  display: block;
  margin-top: 10px;
  font-size: .97rem;
  color: var(--body);
}
.form-card__offer b {
  color: var(--amber-deep);
  font-weight: 800;
}

.field { margin-bottom: 13px; }
.field label {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.field .req { color: var(--err); }

.field input,
.field select {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: #9aa6c0; }
.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1, 129, 212, .15);
  outline: none;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2346536e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.field input.invalid,
.field select.invalid {
  border-color: var(--err);
  background-color: #fdf3f2;
}

.field__error {
  display: none;
  margin-top: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--err);
}
.field input.invalid ~ .field__error,
.field select.invalid ~ .field__error { display: block; }

/* Honeypot — visually removed, still reachable by bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footnote {
  margin-top: 14px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.form-footnote a { color: var(--muted); text-decoration: underline; }

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status.is-error {
  background: #fdf3f2;
  border: 1px solid #f3c9c4;
  color: var(--err);
}

.form-reassure {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.form-reassure li { display: flex; align-items: center; gap: 6px; }
.form-reassure svg { width: 14px; height: 14px; color: var(--ok); flex: none; }

/* ---------- Segments strip ---------- */
.segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.segment {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.segment svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  color: var(--blue);
}
.segment h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.segment p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- Pain / problem ---------- */
.pain {
  display: grid;
  gap: 26px;
  align-items: center;
}
.pain__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}
.pain__list { margin-top: 22px; display: grid; gap: 14px; }
.pain__list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 1rem;
}
.pain__list svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  color: #c94f42;
}
.pain__turn {
  margin-top: 26px;
  padding: 20px 22px;
  background: var(--blue-wash);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 18px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(1, 129, 212, .3);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .96rem; color: var(--muted); }

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  gap: 16px;
}
.benefit {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 20px;
}
.benefit svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--blue-bright);
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { font-size: .93rem; color: #a9bcdd; line-height: 1.5; }

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  gap: 16px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.review__stars svg { width: 17px; height: 17px; color: #f5a623; }
.review__text {
  font-size: .97rem;
  line-height: 1.6;
  color: var(--body);
  flex: 1;
}
.review__by {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue-bright), var(--navy));
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.review__name {
  font-weight: 700;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.3;
}
.review__meta {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review__meta svg { width: 12px; height: 12px; }

.reviews-note {
  margin-top: 22px;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- Video slot (placeholder until the shoot wraps) ---------- */
.video-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0d1730;
  aspect-ratio: 16 / 9;
}
.video-slot video,
.video-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Offer band ---------- */
.offer-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.offer-band h2 { color: #fff; }
.offer-band > p {
  margin-top: 14px;
  color: #dbe9fb;
  font-size: 1.05rem;
}
.offer-band .btn { margin-top: 26px; }
.offer-band__alt {
  margin-top: 16px;
  font-size: .92rem;
  color: #c6dcf5;
}

.offer-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  text-align: left;
}
.offer-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  padding: 20px;
}
.offer-card--primary {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.offer-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
}
.offer-card--primary .offer-card__tag {
  background: var(--amber);
  color: #4a3200;
}
.offer-card__value {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}
.offer-card--primary .offer-card__value { color: var(--navy); }
.offer-card p {
  margin-top: 8px;
  font-size: .92rem;
  color: #dbe9fb;
}
.offer-card--primary p { color: var(--body); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -8px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -3px;
}
.faq details p {
  padding: 0 20px 20px;
  font-size: .96rem;
  color: var(--body);
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta .btn { margin-top: 24px; }
.final-cta__phone {
  margin-top: 18px;
  font-size: .95rem;
  color: var(--muted);
}
.final-cta__phone a { font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-ink);
  color: #93a4c4;
  padding: 40px 0 90px;
  font-size: .9rem;
}
.site-footer img { width: 128px; height: auto; margin-bottom: 18px; }
.site-footer__grid {
  display: grid;
  gap: 24px;
}
.site-footer h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-footer a { color: #cfdcf2; }
.site-footer li { margin-bottom: 5px; }
.site-footer__legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(22, 35, 63, .1);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 15px 18px; font-size: 1rem; }
.sticky-cta__call {
  flex: none;
  width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
}
.sticky-cta__call svg { width: 21px; height: 21px; }

/* ---------- Thank-you page ---------- */
.ty {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.ty__card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.ty__check {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(1, 129, 212, .35);
}
.ty__check svg { width: 38px; height: 38px; color: #fff; }
.ty p { margin-top: 16px; font-size: 1.05rem; }
.ty__next {
  margin-top: 32px;
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.ty__next h2 { font-size: 1.25rem; margin-bottom: 16px; }
.ty__next ol { display: grid; gap: 16px; }
.ty__next li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .97rem;
}
.ty__next .num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty__actions {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}
.ty__meta {
  margin-top: 26px;
  font-size: .88rem;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (min-width: 620px) {
  .segments { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .offer-cards { grid-template-columns: repeat(2, 1fr); }
  .ty__actions { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 30px 28px 28px; }
  .header-phone .header-phone__label { display: inline; }
}

@media (min-width: 900px) {
  .section { padding: 78px 0; }
  .hero { padding: 44px 0 56px; }
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
  }
  .hero__sub { max-width: 46ch; font-size: 1.15rem; }
  .hero__cta-mobile { display: none; }
  .header-cta { display: inline-flex; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .pain { grid-template-columns: 1fr 1fr; gap: 48px; }
  .pain__media { order: 2; }
  .offer-band { padding: 48px 40px; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 40px; }
  .form-card { padding: 28px 32px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
