/* ==========================================================================
   Rapid Haul — design system
   Palette carried over from the previous site so branding stays consistent.
   Type is Archivo / Archivo Black: industrial, condensed-ish, two weights only.
   ========================================================================== */

:root {
  --teal: #00b7b3;
  --teal-dark: #008f8c;
  --teal-deep: #00615f;
  --black: #070b0d;
  --charcoal: #11181c;
  --slate: #1d272c;
  --muted: #637078;
  --line: #dce5e7;
  --light: #f4fbfb;
  --paper: #fff;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgb(7 11 13 / 6%), 0 4px 12px rgb(7 11 13 / 5%);
  --shadow: 0 2px 4px rgb(7 11 13 / 5%), 0 12px 32px rgb(7 11 13 / 8%);
  --shadow-lg: 0 4px 8px rgb(7 11 13 / 6%), 0 24px 60px rgb(7 11 13 / 14%);

  --wrap: 1180px;
  --gut: 20px;

  --bar-h: 0px; /* height of the sticky mobile action bar; set at the media query */

  --sans: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Archivo Black", "Archivo", ui-sans-serif, system-ui, sans-serif;
}

/* --------------------------------------------------------------- reset ---- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--black);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 7.4vw, 3.65rem); }
h2 { font-size: clamp(1.65rem, 5.2vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 3.2vw, 1.3rem); }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--teal-dark); }

ul { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  background: var(--black); color: #fff; padding: 10px 16px;
  border-radius: 8px; transform: translateY(-160%);
  transition: transform 0.15s;
}
.skip:focus { transform: none; }

/* -------------------------------------------------------------- layout ---- */

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

section { position: relative; }

.sect { padding-block: clamp(56px, 9vw, 96px); }
.sect--tight { padding-block: clamp(40px, 6vw, 64px); }
.sect--light { background: var(--light); }
.sect--dark { background: var(--black); color: #cfdadd; }
.sect--dark h2, .sect--dark h3, .sect--dark h4 { color: #fff; }

.sect-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.sect-head--center { margin-inline: auto; text-align: center; }
.sect-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.sect--dark .sect-head p { color: #93a3a8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.sect--dark .eyebrow { color: var(--teal); }

/* ------------------------------------------------------------- buttons ---- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em;
  border: 2px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease, color 0.14s ease;
}
.btn:active { transform: translateY(1px) scale(0.995); }
.btn svg { flex: none; width: 20px; height: 20px; }

.btn--primary {
  background: var(--teal); color: #04211f;
  box-shadow: 0 6px 18px rgb(0 183 179 / 32%);
}
.btn--primary:hover { background: #00cdc8; color: #04211f; box-shadow: 0 10px 26px rgb(0 183 179 / 40%); }

.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--slate); color: #fff; }

.btn--ghost { background: transparent; color: var(--black); border-color: var(--line); }
.btn--ghost:hover { background: var(--light); border-color: var(--teal); color: var(--black); }

.btn--on-dark { background: rgb(255 255 255 / 8%); color: #fff; border-color: rgb(255 255 255 / 24%); }
.btn--on-dark:hover { background: rgb(255 255 255 / 16%); color: #fff; }

.btn--lg { min-height: 58px; font-size: 1.06rem; padding: 16px 28px; }
@media (min-width: 560px) {
  .btn--lg { min-height: 64px; font-size: 1.12rem; padding: 18px 34px; }
}
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--stack { flex-direction: column; }
@media (min-width: 560px) {
  .btn-row--stack { flex-direction: row; }
}

.btn-note {
  margin: 14px 0 0; font-size: 0.9rem; color: var(--muted);
}
.sect--dark .btn-note { color: #93a3a8; }

/* ---------------------------------------------------- announcement bar ---- */

.announce {
  background: var(--teal-deep); color: #d7f6f5;
  font-size: 0.85rem; font-weight: 600;
  text-align: center;
  padding: 9px var(--gut);
}
.announce a { color: #fff; text-decoration: none; border-bottom: 1px solid rgb(255 255 255 / 45%); }
.announce b { color: #fff; }
.announce .dot { opacity: 0.5; margin-inline: 8px; }
@media (max-width: 560px) {
  .announce .opt { display: none; }
}

/* ------------------------------------------------------------ nav bar ----- */

.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgb(255 255 255 / 94%);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; gap: 16px;
  min-height: 68px;
}
.nav__logo { flex: none; margin-right: auto; line-height: 0; }
.nav__logo img { width: 132px; height: 67px; object-fit: contain; }

.nav__menu { display: none; }
.nav__phone { display: none; }

.nav__toggle {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 48px; padding: 0 4px 0 12px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--black);
}
.nav__bars { position: relative; width: 26px; height: 16px; flex: none; }
.nav__bars span {
  position: absolute; left: 0; height: 2.5px; width: 100%;
  background: var(--black); border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav__bars span:nth-child(1) { top: 0; }
.nav__bars span:nth-child(2) { top: 6.75px; }
.nav__bars span:nth-child(3) { top: 13.5px; }
.nav.is-open .nav__bars span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.nav.is-open .nav__bars span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__bars span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

.nav__cta { display: none; }

/* mobile drawer */
.drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100vh - 68px);
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
  padding-bottom: 24px;
}
.nav.is-open .drawer { display: block; }

.drawer__group { border-bottom: 1px solid var(--line); }
.drawer__link,
.drawer summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 16px 4px;
  font-weight: 700; font-size: 1.06rem;
  color: var(--black); text-decoration: none;
  cursor: pointer; list-style: none;
}
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary::after {
  content: ""; flex: none;
  width: 9px; height: 9px;
  border-right: 2.5px solid var(--muted); border-bottom: 2.5px solid var(--muted);
  transform: rotate(45deg); margin-right: 6px;
  transition: transform 0.2s;
}
.drawer details[open] summary::after { transform: rotate(-135deg); }
.drawer__sub { padding: 0 4px 14px 14px; }
.drawer__sub a {
  display: block; padding: 11px 0;
  color: var(--muted); font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
}
.drawer__sub a:hover { color: var(--teal-dark); }
.drawer__foot { padding-top: 20px; display: grid; gap: 10px; }

@media (min-width: 1000px) {
  .nav__toggle, .drawer { display: none !important; }
  .nav__menu {
    display: flex; align-items: center; gap: 4px;
  }
  .nav__item { position: relative; }
  .nav__item > a,
  .nav__item > button {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 13px; min-height: 44px;
    font-family: var(--sans); font-size: 0.94rem; font-weight: 600;
    color: var(--charcoal); text-decoration: none;
    background: none; border: 0; cursor: pointer; border-radius: 10px;
  }
  .nav__item > a:hover,
  .nav__item > button:hover { background: var(--light); color: var(--black); }
  .nav__item--has > button::after {
    content: ""; width: 6px; height: 6px;
    border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: translateY(-2px) rotate(45deg);
  }
  .nav__drop {
    position: absolute; top: calc(100% + 6px); left: 0;
    min-width: 268px; padding: 10px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  }
  .nav__item:hover .nav__drop,
  .nav__item:focus-within .nav__drop { opacity: 1; visibility: visible; transform: none; }
  .nav__drop a {
    display: block; padding: 10px 12px; border-radius: 8px;
    font-size: 0.94rem; font-weight: 600; color: var(--charcoal); text-decoration: none;
  }
  .nav__drop a:hover { background: var(--light); color: var(--teal-deep); }
  .nav__drop hr { border: 0; border-top: 1px solid var(--line); margin: 8px 4px; }

  .nav__phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--display); font-size: 1.02rem;
    color: var(--black); text-decoration: none;
    padding-left: 12px; margin-left: 6px;
    border-left: 1px solid var(--line);
  }
  .nav__phone svg { width: 18px; height: 18px; color: var(--teal-dark); }
  .nav__cta { display: inline-flex; min-height: 48px; padding: 12px 22px; font-size: 0.96rem; margin-left: 6px; }
  .nav__logo img { width: 150px; height: 76px; }
}

/* ---------------------------------------------------------------- hero ---- */

.hero {
  position: relative;
  background: var(--black);
  color: #cfdadd;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 88% 12%, rgb(0 183 179 / 20%), transparent 62%),
    radial-gradient(70% 60% at 0% 100%, rgb(0 183 179 / 10%), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(28px, 4vw, 48px);
  padding-block: clamp(26px, 5vw, 72px) clamp(36px, 5vw, 76px);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero__lede {
  font-size: clamp(1.04rem, 2.4vw, 1.18rem);
  color: #9fb0b5; max-width: 46ch; margin-bottom: 24px;
}
.hero .eyebrow { color: var(--teal); }

.trust {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0 0 22px; padding: 0; list-style: none;
}
.trust li {
  display: flex; align-items: center; gap: 9px;
  margin: 0; font-size: 0.94rem; font-weight: 600; color: #dbe6e8;
}
.trust svg { flex: none; width: 17px; height: 17px; color: var(--teal); }

.hero__geo {
  margin: 16px 0 0; font-size: 0.9rem; color: #8b9ca1;
  display: flex; align-items: center; gap: 8px;
}
.hero__geo svg { width: 16px; height: 16px; color: var(--teal-dark); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__tag {
  position: absolute; bottom: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgb(7 11 13 / 82%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 14%);
}
.hero__tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.02fr 0.98fr; align-items: center; }
  .trust { max-width: 460px; }
}

/* ------------------------------------------------------- proof strip ------ */

.proof {
  background: var(--charcoal);
  border-top: 1px solid rgb(255 255 255 / 8%);
  padding-block: 22px;
  color: #b9c7cb;
}
.proof__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 28px; justify-content: space-between;
}
.proof__stars { display: flex; align-items: center; gap: 10px; }
.proof__stars svg { width: 19px; height: 19px; color: #ffc53d; }
.proof__stars b { color: #fff; font-family: var(--display); font-size: 1rem; }
.proof__pills { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.proof__pills span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.84rem; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  background: rgb(255 255 255 / 6%); border: 1px solid rgb(255 255 255 / 10%);
}
.proof__pills svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
.proof a.proof__link {
  color: #fff; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border-bottom: 1px solid var(--teal);
  white-space: nowrap;
}

/* --------------------------------------------------------------- cards ---- */

.grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column;
  padding: 24px 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #bfd6d7; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.99rem; margin-bottom: 16px; }
.card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 0.92rem; color: var(--teal-deep);
  text-decoration: none;
}
.card__link svg { width: 15px; height: 15px; transition: transform 0.16s; }
.card:hover .card__link svg { transform: translateX(3px); }

.card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 13px;
  background: linear-gradient(145deg, #e2f8f7, #d0f0ef);
  color: var(--teal-deep);
  border: 1px solid #b9e8e6;
}
.card__icon svg { width: 24px; height: 24px; }

/* ------------------------------------------------------ before / after ---- */

.ba { display: grid; gap: clamp(28px, 5vw, 44px); }
.ba__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ba__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  padding: 20px 22px 16px;
}
.ba__head h3 { margin: 0; }
.ba__head span { color: var(--muted); font-size: 0.93rem; }
.ba__pair {
  display: grid; gap: 2px;
  background: var(--line);
}
@media (min-width: 700px) { .ba__pair { grid-template-columns: 1fr 1fr; } }
.ba__shot { position: relative; background: #eef4f5; }
.ba__shot img { width: 100%; }
.ba__label {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--display); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
  color: #fff; background: rgb(7 11 13 / 86%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.ba__label--after { background: var(--teal-deep); }

/* ---------------------------------------------------------- steps 1-2-3 --- */

.steps {
  counter-reset: step;
  display: grid; gap: 16px;
  list-style: none; margin: 0 0 30px; padding: 0;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step;
  position: relative;
  margin: 0; padding: 26px 22px 22px;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(step);
  display: grid; place-items: center;
  width: 38px; height: 38px; margin-bottom: 14px;
  font-family: var(--display); font-size: 1.05rem;
  color: #04211f; background: var(--teal);
  border-radius: 11px;
}
.steps h3 { margin-bottom: 6px; font-size: 1.12rem; }
.steps p { color: #9fb0b5; font-size: 0.97rem; margin: 0; }

.sect--light .steps li { background: #fff; border-color: var(--line); }
.sect--light .steps p { color: var(--muted); }

/* --------------------------------------------------------- commercial ---- */

.comm {
  background:
    linear-gradient(160deg, #0c1417 0%, #071012 55%, #04191a 100%);
  color: #c3d1d5;
  position: relative; overflow: hidden;
}
.comm::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(80% 70% at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(80% 70% at 70% 20%, #000, transparent 75%);
  pointer-events: none;
}
.comm__inner { position: relative; z-index: 1; display: grid; gap: clamp(30px, 4vw, 52px); }
@media (min-width: 940px) { .comm__inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.comm h2, .comm h3 { color: #fff; }
.comm__lede { color: #9db0b5; font-size: 1.06rem; }

.checks { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; }
@media (min-width: 600px) { .checks { grid-template-columns: 1fr 1fr; } }
.checks li {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 0; font-size: 0.97rem; font-weight: 600; color: #dae5e8;
}
.checks svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--teal); }

/* ---------------------------------------------------------------- form ---- */

.formcard {
  background: #fff; color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 34px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.formcard h3 { margin-bottom: 6px; }
.formcard > p { color: var(--muted); font-size: 0.96rem; }

.field { margin-bottom: 15px; }
.field label {
  display: block; margin-bottom: 6px;
  font-size: 0.86rem; font-weight: 700; color: var(--slate);
}
.field .req { color: var(--teal-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans); font-size: 1rem;
  color: var(--charcoal); background: var(--light);
  padding: 14px 15px; min-height: 52px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color 0.15s, background-color 0.15s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23637078' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
}
.field textarea { min-height: 112px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: #fff; border-color: var(--teal); outline: none;
  box-shadow: 0 0 0 3px rgb(0 183 179 / 16%);
}
.field-row { display: grid; gap: 15px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.hp { position: absolute; left: -9999px; opacity: 0; }

.form-note {
  display: flex; gap: 11px; align-items: flex-start;
  margin: 0 0 18px; padding: 14px 16px;
  background: #e9f8f7; border: 1px solid #bfe9e7;
  border-radius: var(--radius-sm);
  font-size: 0.93rem; line-height: 1.45; color: #0b3f3e;
}
.form-note svg { flex: none; width: 19px; height: 19px; margin-top: 2px; color: var(--teal-deep); }
.form-note a { color: #063c3b; font-weight: 700; }

.form-fine { margin: 14px 0 0; font-size: 0.82rem; color: var(--muted); }

/* --------------------------------------------------------------- trailer -- */

.trailer-grid { display: grid; gap: 16px; margin-bottom: 22px; }
@media (min-width: 640px) { .trailer-grid { grid-template-columns: 1fr 1fr; } }
.trailer {
  padding: 24px 22px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
}
.trailer--flag { border-color: var(--teal); box-shadow: 0 0 0 3px rgb(0 183 179 / 12%); }
.trailer__price {
  font-family: var(--display); font-size: 2rem; color: var(--black);
  line-height: 1; margin: 6px 0 10px;
}
.trailer__price small { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.trailer h3 { font-size: 1.08rem; margin-bottom: 2px; }
.trailer p { color: var(--muted); font-size: 0.96rem; margin: 0; }
.trailer__badge {
  display: inline-block; margin-bottom: 12px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-deep);
  background: #e2f8f7; border-radius: 999px; padding: 5px 11px;
}
.fine {
  font-size: 0.86rem; color: var(--muted);
}

/* ------------------------------------------------------------- reviews ---- */

.reviews { display: grid; gap: 16px; align-items: start; }
@media (min-width: 700px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  display: flex; flex-direction: column;
  padding: 24px 22px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.review__stars { display: flex; gap: 2px; margin-bottom: 13px; }
.review__stars svg { width: 17px; height: 17px; color: #ffc53d; }
.review blockquote {
  margin: 0 0 16px; font-size: 1rem; line-height: 1.55; color: var(--charcoal);
}
.review__by {
  margin-top: auto; display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
}
.review__by b { color: var(--black); font-family: var(--display); font-weight: 400; font-size: 0.95rem; }
.review__src {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px;
}

/* ---------------------------------------------------------------- areas --- */

.areas { display: grid; gap: 14px; }
@media (min-width: 620px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .areas { grid-template-columns: repeat(3, 1fr); } }
.area {
  display: block; padding: 20px 20px 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; text-decoration: none;
  transition: border-color 0.16s, transform 0.16s, box-shadow 0.16s;
}
.area:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.area h3 {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 1.1rem; margin-bottom: 8px;
}
.area h3 svg { width: 16px; height: 16px; color: var(--teal-dark); flex: none; }
.area p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.area-more { margin-top: 20px; font-size: 0.94rem; color: var(--muted); }

/* ------------------------------------------------------------------ faq --- */

.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 20px 2px; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.05rem; line-height: 1.3;
  color: var(--black);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; position: relative; top: 6px;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--teal-dark), var(--teal-dark)) center/14px 2.5px no-repeat,
    linear-gradient(var(--teal-dark), var(--teal-dark)) center/2.5px 14px no-repeat;
  transition: transform 0.22s ease, opacity 0.2s;
}
.faq details[open] summary::after { transform: rotate(90deg); opacity: 0.6; }
.faq details[open] summary { padding-bottom: 8px; }
.faq__a { padding: 0 40px 22px 2px; color: var(--muted); }
.faq__a p { font-size: 1rem; }

/* -------------------------------------------------------------- closing --- */

.close-cta { position: relative; overflow: hidden; }
.close-cta__inner { display: grid; gap: clamp(28px, 4vw, 46px); }
@media (min-width: 940px) {
  .close-cta__inner { grid-template-columns: 0.92fr 1.08fr; align-items: start; }
}
.close-cta ul.trust { grid-template-columns: 1fr; gap: 10px; }

/* --------------------------------------------------------------- footer --- */

.footer {
  background: var(--black); color: #8fa0a5;
  padding-block: clamp(44px, 6vw, 68px) 28px;
  font-size: 0.94rem;
}
.footer__grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer img.footer__logo { width: 148px; height: 75px; object-fit: contain; margin-bottom: 16px; }
.footer h2 {
  color: #fff; font-size: 0.78rem; letter-spacing: 0.13em;
  text-transform: uppercase; margin-bottom: 14px;
  line-height: 1.3;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: #a8b8bc; text-decoration: none; }
.footer a:hover { color: var(--teal); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { flex: none; width: 17px; height: 17px; margin-top: 3px; color: var(--teal-dark); }
.footer__contact a { color: #fff; font-weight: 600; }
.footer__legal {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between;
  font-size: 0.84rem; color: #6f8085;
}
.footer__map {
  margin-top: 20px; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
}
.footer__map iframe { display: block; width: 100%; height: 190px; border: 0; }

/* --------------------------------------------------- sticky action bar ---- */

.actionbar { display: none; }

@media (max-width: 999px) {
  :root { --bar-h: 74px; }
  .actionbar {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgb(7 11 13 / 96%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgb(255 255 255 / 12%);
  }
  .actionbar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 54px; border-radius: 14px;
    font-family: var(--display); font-size: 0.94rem;
    letter-spacing: 0.04em; text-decoration: none;
  }
  .actionbar svg { width: 19px; height: 19px; flex: none; }
  .actionbar .ab-call { background: #fff; color: var(--black); }
  .actionbar .ab-text { background: var(--teal); color: #04211f; }
}

/* ---------------------------------------------------------- inner pages -- */

.crumbs {
  padding-block: 16px 0;
  font-size: 0.84rem; color: var(--muted);
}
.crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.crumbs li { margin: 0; display: flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; color: #b3c1c5; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--teal-dark); }
.crumbs [aria-current] { color: var(--black); font-weight: 600; }

.pagehead {
  background: linear-gradient(170deg, #fff 0%, var(--light) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(22px, 3vw, 34px) clamp(40px, 5vw, 60px);
}
.pagehead h1 { margin-bottom: 16px; }
.pagehead__lede {
  font-size: clamp(1.04rem, 2.2vw, 1.16rem);
  color: var(--muted); max-width: 60ch; margin-bottom: 26px;
}

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.35rem, 3.6vw, 1.75rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3a464b; }

.split { display: grid; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 940px) { .split { grid-template-columns: 1.25fr 0.75fr; align-items: start; } }

.aside {
  position: sticky; top: 92px;
  padding: 24px 22px;
  background: var(--light); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.aside h3 { font-size: 1.1rem; margin-bottom: 10px; }
.aside p { font-size: 0.95rem; color: var(--muted); }
.aside .btn { width: 100%; margin-bottom: 10px; }
.aside .btn:last-of-type { margin-bottom: 0; }

.taglist { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.taglist li { margin: 0; }
.taglist span, .taglist a {
  display: inline-block; padding: 8px 14px;
  background: var(--light); border: 1px solid var(--line);
  border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  color: var(--slate); text-decoration: none;
}
.taglist a:hover { border-color: var(--teal); color: var(--teal-deep); }

.itemlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .itemlist { grid-template-columns: 1fr 1fr; } }
.itemlist li {
  display: flex; gap: 10px; align-items: flex-start; margin: 0;
  font-size: 0.98rem;
}
.itemlist svg { flex: none; width: 17px; height: 17px; margin-top: 4px; color: var(--teal); }

.policy { display: grid; gap: 18px; }
@media (min-width: 760px) { .policy { grid-template-columns: 1fr 1fr; } }
.policy > div {
  padding: 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.policy h3 { font-size: 1.05rem; margin-bottom: 12px; }
.policy ul { margin: 0; padding-left: 1.1em; }
.policy li { font-size: 0.94rem; color: var(--muted); }

.related { display: grid; gap: 14px; }
@media (min-width: 700px) { .related { grid-template-columns: repeat(3, 1fr); } }
.related a {
  display: block; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; background: #fff;
  transition: border-color 0.16s, transform 0.16s;
}
.related a:hover { border-color: var(--teal); transform: translateY(-2px); }
.related strong { display: block; color: var(--black); font-family: var(--display); font-weight: 400; margin-bottom: 4px; }
.related span { font-size: 0.88rem; color: var(--muted); }

/* thank-you */
.ty { text-align: center; max-width: 620px; margin-inline: auto; padding-block: clamp(60px, 10vw, 110px); }
.ty__tick {
  display: grid; place-items: center; width: 74px; height: 74px;
  margin: 0 auto 24px; border-radius: 50%;
  background: #e2f8f7; border: 2px solid var(--teal); color: var(--teal-deep);
}
.ty__tick svg { width: 36px; height: 36px; }

/* ------------------------------------------------------------ animation --- */

@media (prefers-reduced-motion: no-preference) {
  .rise {
    animation: rise 0.55s cubic-bezier(0.16, 0.84, 0.44, 1) both;
  }
  .rise-2 { animation-delay: 0.07s; }
  .rise-3 { animation-delay: 0.14s; }
  .rise-4 { animation-delay: 0.21s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
  .reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 0.84, 0.44, 1);
  }
  .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* no-JS safety: never leave content hidden */
.no-js .reveal { opacity: 1; transform: none; }
