/* =================================================================
   SimpleMoving — landing page styles
   Design goals: trustworthy, professional, very easy to read.
   Large text, high contrast, generous spacing, clear buttons.
   ================================================================= */

:root {
  --navy:      #0f2e57;   /* brand / trust */
  --navy-2:    #163e72;
  --blue:      #2563eb;
  --accent:    #ff7a18;   /* call-to-action orange (high contrast) */
  --accent-d:  #e96807;
  --green:     #1aa260;   /* ticks / insured */
  --ink:       #1c2434;   /* body text */
  --ink-soft:  #4d586b;
  --line:      #e2e8f2;
  --bg:        #ffffff;
  --bg-soft:   #f4f7fc;
  --bg-strip:  #eef3fb;
  --white:     #ffffff;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 18px 40px -18px rgba(15, 46, 87, .35);
  --shadow-sm: 0 6px 18px -8px rgba(15, 46, 87, .25);
  --maxw:      1180px;
  --font:      "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

/* the HTML `hidden` attribute must always win over component display rules */
[hidden] { display: none !important; }

/* ---------- line icons (clean, professional, reused via <use>) ---------- */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico {
  width: 24px; height: 24px; display: inline-block; vertical-align: middle;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico--inline { width: 1.15em; height: 1.15em; margin-right: .15em; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;            /* large base for easy reading */
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 .5em; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 800px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-weight: 700; font-size: 1.05rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-align: center; line-height: 1.2; text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -10px rgba(255,122,24,.85); }
.btn--accent:hover { background: var(--accent-d); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: #f1f5fb; }
.btn--lg { font-size: 1.18rem; padding: 1.05rem 2rem; }
.btn--sm { font-size: .98rem; padding: .6rem 1.1rem; }
.btn--block { width: 100%; }

/* =================================================================
   TOP BAR
   ================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; gap: 1rem; padding-top: .6rem; padding-bottom: .6rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--navy); font-weight: 800; }
.brand:hover { text-decoration: none; }
.brand__icon { display: inline-flex; background: var(--navy); border-radius: 10px; padding: 6px 8px; }
.brand__text { font-size: 1.42rem; font-weight: 800; letter-spacing: -.03em; }
.brand__text strong { color: var(--accent); font-weight: 800; }
.brand__tld { font-size: .56em; font-weight: 700; opacity: .45; letter-spacing: 0; margin-left: .06em; }

.topbar__nav { display: flex; gap: 1.5rem; margin-left: 1.8rem; }
.topbar__nav a { color: var(--navy); font-weight: 600; font-size: .98rem; text-decoration: none; white-space: nowrap; }
.topbar__nav a:hover { color: var(--accent); }
.topbar__cta { white-space: nowrap; }

/* anchor targets clear the sticky header */
section[id], [id].quote { scroll-margin-top: 88px; }

.topbar__trust { margin-left: auto; display: flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .95rem; font-weight: 600; }
.topbar__trust-item { white-space: nowrap; }
.topbar__trust-item strong { color: var(--navy); }
.topbar__trust .topbar__trust-item:first-child { color: #f5a623; letter-spacing: 1px; }

.topbar__actions { display: flex; align-items: center; gap: .8rem; margin-left: 1rem; }
.phone-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--navy); white-space: nowrap; }
.phone-link:hover { text-decoration: none; }
.phone-link svg { color: var(--green); flex: none; }
.phone-link__text { display: flex; flex-direction: column; line-height: 1.1; }
.phone-link__label { font-size: .72rem; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.phone-link__number { font-size: 1.15rem; font-weight: 800; white-space: nowrap; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(37,99,235,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 3rem 0 3.5rem;
}

/* hero with a real moving photo behind a dark overlay (instant context + trust) */
.hero--photo {
  background:
    linear-gradient(100deg, rgba(8,23,45,.93) 0%, rgba(8,23,45,.85) 42%, rgba(11,32,60,.66) 100%),
    url("images/hero-van.jpg?v=4") center / cover no-repeat;
}
.hero--photo .hero__title { color: #fff; }
.hero--photo .hero__sub { color: #d7e2f2; }
.hero--photo .hero__sub strong { color: #fff; }
.hero--photo .hero__usps li { color: #eaf1fb; }
.hero--photo .hero__eyebrow { background: rgba(255,255,255,.14); color: #fff; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: start; }

.hero__eyebrow { display: inline-block; background: #e7f0ff; color: var(--blue); font-weight: 700;
  font-size: .9rem; padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem; }
.hero__title { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: .6rem; }
.hero__title .hl { color: var(--accent); }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 33ch; margin-bottom: 1.4rem; }
.hero__sub strong { color: var(--ink); }

.hero__usps { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .6rem; }
.hero__usps li { display: flex; align-items: flex-start; gap: .6rem; font-size: 1.06rem; font-weight: 600; }
.hero__usps li span { padding-top: 1px; }
.tick { width: 24px; height: 24px; color: #fff; background: var(--green); border-radius: 50%; padding: 3px; flex: none; }

.hero__cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.rbadge { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: .55rem .8rem; box-shadow: var(--shadow-sm); }
.rbadge__stars { color: #f5a623; letter-spacing: 1px; font-size: .95rem; }
.rbadge__text { font-size: .9rem; color: var(--ink-soft); }
.rbadge__text strong { color: var(--navy); }
.rbadge--plain svg { color: var(--green); }

/* =================================================================
   QUOTE FORM CARD
   ================================================================= */
.quote { position: relative; }
.quote__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.6rem; position: sticky; top: 92px;
}
.quote__head { margin-bottom: 1.2rem; }
.quote__title { font-size: 1.7rem; margin-bottom: .15rem; }
.quote__subtitle { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1rem; }
.quote__progress { height: 8px; background: var(--bg-strip); border-radius: 999px; overflow: hidden; }
.quote__progress-bar { height: 100%; width: 16.6%; background: linear-gradient(90deg, var(--accent), #ffa052);
  border-radius: 999px; transition: width .35s ease; }
.quote__step-label { font-size: .85rem; color: var(--ink-soft); font-weight: 700; margin: .45rem 0 0; text-transform: uppercase; letter-spacing: .05em; }

/* steps */
.step { border: 0; padding: 0; margin: 0; display: none; }
.step.is-active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step__q { font-size: 1.4rem; font-weight: 800; color: var(--navy); padding: 0; margin: 0 0 .35rem; }
.step__help { color: var(--ink-soft); font-size: .98rem; margin: 0 0 1rem; }
.step__error { color: #d92121; font-weight: 600; font-size: .95rem; min-height: 1.2em; margin: .5rem 0 0; }

/* option cards */
.options { display: grid; gap: .65rem; margin-bottom: .3rem; }
.options--grid { grid-template-columns: 1fr 1fr; gap: .55rem; }
.options--grid .opt__box { min-height: 50px; padding: .7rem .9rem; white-space: nowrap; }

/* step 1 follow-up question (bedrooms / describe) */
.subq { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px dashed var(--line); animation: fade .25s ease; }
.subq__label { font-weight: 700; color: var(--navy); margin: 0 0 .6rem; font-size: 1.02rem; }
.subq__label--spaced { margin-top: 1.4rem; }

/* service-tier (movers) radio cards */
.opt--service .opt__box { justify-content: space-between; align-items: center; min-height: 62px; gap: 1rem; }
.opt__svc { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.opt__svc strong { color: var(--ink); font-size: 1.04rem; }
.opt__svc em { font-style: normal; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.opt__price { color: var(--accent); font-weight: 800; white-space: nowrap; }
.opt--service .opt__pop { align-self: flex-start; background: var(--accent); color: #fff; font-size: .64rem;
  font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .1rem .45rem; border-radius: 999px; margin-bottom: .25rem; }
.subq .field { margin-bottom: 0; }
.options--bedrooms { display: flex; flex-wrap: wrap; gap: .5rem; }
.options--bedrooms .opt { flex: 0 0 auto; }
.options--bedrooms .opt__box { min-width: 54px; min-height: 46px; padding: .5rem .9rem; justify-content: center; }
.options--row { grid-auto-flow: column; grid-auto-columns: 1fr; }
.options--wrap { display: flex; flex-wrap: wrap; }
.options--wrap .opt { flex: 1 1 calc(50% - .65rem); }
.options--list { grid-template-columns: 1fr; }

.opt { position: relative; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt__box {
  display: flex; align-items: center; gap: .6rem; justify-content: flex-start;
  border: 2px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1rem;
  font-weight: 700; color: var(--ink); background: #fff; min-height: 58px;
  transition: border-color .15s, background .15s, box-shadow .15s; text-align: left;
}
.opt__emoji { font-size: 1.35rem; line-height: 1; }
.opt__ico { width: 22px; height: 22px; color: var(--blue); flex: none; }
.opt input:checked + .opt__box .opt__ico { color: var(--accent); }
.opt:hover .opt__box { border-color: #b9c6dd; }
.opt input:checked + .opt__box { border-color: var(--accent); background: #fff7f0; box-shadow: inset 0 0 0 1px var(--accent); }
.opt input:focus-visible + .opt__box { outline: 3px solid var(--accent); outline-offset: 2px; }
.opt--pill .opt__box { justify-content: center; min-height: 52px; }
.opt--grid .opt__box { flex-direction: column; }

/* fields */
.field { display: block; margin-bottom: 1rem; }
.field__label { display: block; font-weight: 700; color: var(--navy); margin-bottom: .35rem; font-size: 1.02rem; }
.field__hint { display: block; margin-top: .4rem; font-size: .88rem; color: var(--ink-soft); line-height: 1.4; }
.field__optional { color: var(--ink-soft); font-weight: 500; font-size: .9rem; }
.field__input {
  width: 100%; font-family: inherit; font-size: 1.1rem; color: var(--ink);
  padding: .85rem 1rem; border: 2px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,24,.18); }
textarea.field__input { resize: vertical; }
.subchoice { border: 0; padding: 0; margin: 0 0 1rem; }
.subchoice .field__label { margin-bottom: .5rem; }

.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); margin: .2rem 0 .4rem; cursor: pointer; }
.consent input { width: 22px; height: 22px; margin-top: 1px; flex: none; accent-color: var(--accent); }
.consent--tight { margin: 0 0 1.1rem; }

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* nav */
.quote__nav { display: flex; gap: .7rem; margin-top: 1.2rem; align-items: stretch; }
.quote__nav .btn--ghost { flex: 0 0 auto; }
.quote__reassure { display: flex; align-items: center; gap: .4rem; justify-content: center;
  color: var(--ink-soft); font-size: .88rem; margin: 1rem 0 0; }
.quote__reassure svg { color: var(--green); flex: none; }

/* success */
.quote__success { text-align: center; padding: 1.5rem .5rem; }
.quote__success-icon { width: 76px; height: 76px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 2.4rem; display: grid; place-items: center; font-weight: 800; }
.quote__success h2 { font-size: 1.6rem; }
.quote__success p { color: var(--ink-soft); }
.quote__success-call { font-weight: 700; color: var(--ink); margin-top: 1.2rem; }

/* =================================================================
   STRIP
   ================================================================= */
.strip { background: var(--navy); color: #fff; }
.strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; padding: 1.1rem 22px; }
.strip__item { font-size: 1rem; color: #c7d6ee; }
.strip__item strong { color: #fff; font-weight: 800; }

/* =================================================================
   SECTIONS
   ================================================================= */
.section { padding: 4.2rem 0; }
.section--alt { background: var(--bg-soft); }
.section--navy { background: var(--navy); }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); text-align: center; margin-bottom: .5rem; }
.section__title--light { color: #fff; }
.section__lead { text-align: center; color: var(--ink-soft); font-size: 1.15rem; max-width: 60ch; margin: 0 auto 2.6rem; }
.section--navy .section__lead { color: #c7d6ee; }
.section__cta { text-align: center; margin-top: 2.4rem; }

/* how it works */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step3 { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.step3__num { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: var(--accent); color: #fff; font-size: 1.4rem; font-weight: 800; display: grid; place-items: center; }
.step3 h3 { font-size: 1.25rem; }
.step3 p { color: var(--ink-soft); margin: 0; }

/* service cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__icon { width: 58px; height: 58px; border-radius: 15px; background: #eaf1fb;
  color: var(--blue); display: grid; place-items: center; margin-bottom: 1rem; }
.card__icon .ico { width: 30px; height: 30px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--ink-soft); margin: 0; }

/* photo gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.gallery--3 { grid-template-columns: repeat(3, 1fr); }
.gallery__item { margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { display: block; width: 100%; height: 215px; object-fit: cover; background: var(--bg-soft); }
.gallery__item figcaption { padding: .85rem 1rem; font-weight: 700; color: var(--navy); font-size: .98rem; }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 2px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.price-card--featured { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-8px); }
.price-card__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-weight: 700; font-size: .85rem; padding: .3rem .9rem; border-radius: 999px; white-space: nowrap; }
.price-card__head h3 { font-size: 1.35rem; margin-bottom: .15rem; }
.price-card__best { color: var(--ink-soft); font-size: .95rem; margin: 0 0 1rem; }
.price-card__price { font-size: 2.6rem; font-weight: 800; color: var(--navy); margin: 0 0 1.1rem; }
.price-card__price .from { font-size: .95rem; color: var(--ink-soft); font-weight: 600; display: block; margin-bottom: -.4rem; }
.price-card__price .per { font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
.price-card__list { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .55rem; flex: 1; }
.price-card__list li { position: relative; padding-left: 1.7rem; color: var(--ink); }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.pricing__note { text-align: center; color: var(--ink-soft); font-size: .98rem; max-width: 75ch; margin: 2rem auto 0; }
.pricing__note strong { color: var(--ink); }

/* trust grid */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.trust-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.6rem 1.5rem; }
.trust-item__icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(255,255,255,.12);
  color: #ffb24d; display: grid; place-items: center; margin-bottom: .9rem; }
.trust-item__icon .ico { width: 28px; height: 28px; }
.trust-item h3 { color: #fff; font-size: 1.2rem; }
.trust-item p { color: #c7d6ee; margin: 0; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); }
.review__stars { color: #f5a623; letter-spacing: 2px; font-size: 1.1rem; margin-bottom: .6rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1.08rem; color: var(--ink); }
.review figcaption { color: var(--ink-soft); font-weight: 700; }

/* areas */
.areas { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; max-width: 900px; margin-inline: auto; }
.areas li { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .65rem 1rem; text-align: center; font-weight: 600; color: var(--navy); }

/* faq */
.faq { display: grid; gap: .8rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; box-shadow: var(--shadow-sm); }
.faq__item summary { cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.12rem; padding: 1.15rem 0; list-style: none; position: relative; padding-right: 2rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--accent); font-weight: 400; line-height: 1; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { color: var(--ink-soft); margin: 0 0 1.2rem; }

/* final cta */
.finalcta { background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff; padding: 3.6rem 0; text-align: center; }
.finalcta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.finalcta p { color: #c7d6ee; font-size: 1.2rem; max-width: 50ch; margin: 0 auto 1.8rem; }
.finalcta__buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* footer */
.footer { background: #0a2243; color: #b9cae6; padding: 3rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer p { margin: 0 0 .55rem; }
.footer a { color: #b9cae6; }
.footer a:hover { color: #fff; }
.brand--footer .brand__text { font-size: 1.25rem; color: #fff; }
.footer__brand p { max-width: 34ch; }
.footer__reviews { color: #f5a623 !important; font-weight: 700; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 1.2rem 0 90px; }
.footer__bar p { margin: 0; font-size: .9rem; color: #8fa6c9; text-align: center; }

/* =================================================================
   ACCREDITATIONS
   ================================================================= */
.accred { background: #fff; border-bottom: 1px solid var(--line); padding: 1.7rem 0; }
.accred__title { text-align: center; color: var(--ink-soft); font-weight: 700; margin: 0 0 1.1rem; font-size: 1.02rem; }
.accred__row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1rem; }
.accred__badge { display: flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 12px; padding: .6rem .9rem; background: #fbfcfe; }
.accred__badge .ico { width: 26px; height: 26px; color: var(--blue); flex: none; }
.accred__txt { display: flex; flex-direction: column; line-height: 1.15; }
.accred__txt strong { color: var(--navy); font-size: .98rem; }
.accred__txt em { color: var(--ink-soft); font-style: normal; font-size: .78rem; }

/* form "fast reply" promise line */
.quote__promise { background: #eaf7ef; color: #157347; border: 1px solid #c7e9d4;
  border-radius: 10px; padding: .55rem .8rem; font-size: .9rem; font-weight: 600;
  line-height: 1.45; margin: .2rem 0 1rem; }
.quote__promise .ico { color: #1aa260; margin-right: .15rem; }
.quote__promise strong { color: #0f5132; white-space: nowrap; }

/* =================================================================
   ABOUT
   ================================================================= */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 2.8rem; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; height: 100%; max-height: 470px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__exp { position: absolute; right: 10px; bottom: -14px; background: var(--accent); color: #fff;
  border-radius: 14px; padding: .85rem 1.1rem; box-shadow: var(--shadow); text-align: center; }
.about__exp strong { display: block; font-size: 1.9rem; line-height: 1; }
.about__exp span { font-size: .82rem; }
.about__eyebrow { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; margin: 0 0 .3rem; }
.about__copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .8rem; }
.about__copy p { color: var(--ink-soft); }
.about__copy p strong { color: var(--ink); }
.about__points { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .6rem; }
.about__points li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); }
.about__points .ico { width: 22px; height: 22px; color: var(--green); flex: none; }
.about__stats { display: flex; gap: 2rem; flex-wrap: wrap; margin: 1.4rem 0 1.6rem; }
.about__stats strong { display: block; font-size: 1.8rem; color: var(--navy); line-height: 1; }
.about__stats span { font-size: .9rem; color: var(--ink-soft); }

/* =================================================================
   PRICING — "every move includes" panel
   ================================================================= */
.includes { max-width: 920px; margin: 2.2rem auto 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.6rem 1.9rem; }
.includes__title { font-size: 1.18rem; text-align: center; margin-bottom: 1.2rem; }
.includes__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.8rem; }
.includes__list li { display: flex; align-items: center; gap: .65rem; font-weight: 600; color: var(--ink); }
.includes__list .ico { width: 24px; height: 24px; color: var(--green); flex: none; }

/* =================================================================
   OUR LUTON VAN
   ================================================================= */
.vanfeat__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.8rem; align-items: center; }
.vanfeat__media { position: relative; }
.vanfeat__media img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.vanfeat__badge { position: absolute; left: 14px; bottom: -14px; display: inline-flex; align-items: center; gap: .45rem;
  background: var(--navy); color: #fff; font-weight: 700; font-size: .92rem; padding: .6rem .95rem; border-radius: 12px; box-shadow: var(--shadow); }
.vanfeat__badge .ico { width: 22px; height: 22px; color: var(--accent); }
.vanfeat__copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .8rem; }
.vanfeat__copy > p { color: var(--ink-soft); }
.vanfeat__copy > p strong { color: var(--ink); }
.vanfeat__list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: .8rem; }
.vanfeat__list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink); }
.vanfeat__list .ico { width: 26px; height: 26px; color: var(--blue); flex: none; margin-top: 1px; }
.vanfeat__list strong { color: var(--navy); }

/* =================================================================
   GUARANTEE / PROMISE
   ================================================================= */
.guarantee { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.guarantee__head { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 2.2rem; }
.guarantee__seal { flex: none; width: 120px; height: 120px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; text-align: center; box-shadow: var(--shadow); border: 3px solid var(--accent); }
.guarantee__seal .ico { width: 30px; height: 30px; color: var(--accent); margin-bottom: .15rem; }
.guarantee__seal span { font-size: .72rem; font-weight: 800; line-height: 1.15; text-transform: uppercase; letter-spacing: .03em; }
.promises { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.promise { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); }
.promise__ico { width: 52px; height: 52px; border-radius: 13px; background: #eaf1fb; color: var(--blue); display: grid; place-items: center; margin-bottom: .9rem; }
.promise__ico .ico { width: 27px; height: 27px; }
.promise h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.promise p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* =================================================================
   REVIEWS (rich cards)
   ================================================================= */
.reviews__summary { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 0 2.4rem; }
.reviews__score { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.reviews__meta { display: flex; flex-direction: column; }
.reviews__stars { color: #f5a623; letter-spacing: 2px; font-size: 1.3rem; }
.reviews__count { color: var(--ink-soft); font-size: .95rem; }
.reviews__count strong { color: var(--navy); }
.review__top { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem; flex: none; }
.review:nth-child(2) .review__avatar { background: #1aa260; }
.review:nth-child(3) .review__avatar { background: #b4690e; }
.review:nth-child(4) .review__avatar { background: #2563eb; }
.review:nth-child(5) .review__avatar { background: #7c3aed; }
.review:nth-child(6) .review__avatar { background: #c0392b; }
.review__who { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.review__who strong { color: var(--navy); }
.review__who span { color: var(--ink-soft); font-size: .85rem; }
.review__verified { display: inline-flex; align-items: center; gap: .25rem; color: var(--green); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.review__verified .ico { width: 16px; height: 16px; }
.review blockquote { margin: 0 0 1rem; font-size: 1.04rem; color: var(--ink); }
.review__tag { display: inline-block; background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy);
  font-weight: 700; font-size: .8rem; padding: .3rem .7rem; border-radius: 999px; }

/* =================================================================
   FOOTER extras
   ================================================================= */
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__legal { margin: 0; font-size: .85rem; color: #8fa6c9; text-align: left; }
.footer__pay { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; font-size: .82rem; color: #8fa6c9; }
.footer__pay .pay { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #dce6f5;
  padding: .2rem .55rem; border-radius: 6px; font-weight: 700; }
.footer__credit { margin: .7rem 0 0; font-size: .76rem; color: #6f86ad; }
.footer__credit a { color: #8fa6c9; text-decoration: underline; }

/* =================================================================
   FLOATING WHATSAPP BUTTON
   ================================================================= */
.ico--solid { fill: currentColor; stroke: none; }
.wa-float { position: fixed; right: 20px; bottom: 22px; z-index: 55; display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: #fff; padding: .8rem 1.1rem; border-radius: 999px; font-weight: 800; text-decoration: none;
  box-shadow: 0 12px 26px -8px rgba(37,211,102,.7); transition: background .15s, transform .1s; }
.wa-float .ico { width: 26px; height: 26px; }
.wa-float:hover { background: #1ebe5b; text-decoration: none; }
.wa-float:active { transform: translateY(1px); }

/* =================================================================
   MOBILE STICKY CALL BAR
   ================================================================= */
.mobilebar { display: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
/* Tighten the top bar on small laptops (nav still shown) so the brand, nav,
   phone number and CTA all fit on one clean line without the number wrapping. */
@media (max-width: 1120px) {
  .topbar__nav { gap: 1rem; margin-left: 1rem; }
  .topbar__nav a { font-size: .92rem; }
  .topbar__actions { margin-left: .6rem; gap: .6rem; }
  .phone-link__label { display: none; }
  .phone-link__number { font-size: 1.05rem; }
  .brand__text { font-size: 1.3rem; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .topbar__nav { display: none; }
  .quote__card { position: static; }
  .hero__sub { max-width: 100%; }
  .steps3, .cards, .pricing, .trust-grid { grid-template-columns: 1fr; }
  .reviews, .promises { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .price-card--featured { transform: none; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__media img { max-height: 340px; }
  .vanfeat__grid { grid-template-columns: 1fr; gap: 2rem; }
  .vanfeat__media { order: -1; }
  .vanfeat__media img { max-height: 340px; }
  .includes__list { grid-template-columns: 1fr; }
  .guarantee__head { flex-direction: column; text-align: center; }
  .guarantee__head h2, .guarantee__head .section__lead { text-align: center !important; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .areas { grid-template-columns: repeat(2, 1fr); }
}

/* On anything narrower than a wide desktop, shrink the chat button to a compact
   circle so its wide "Chat with us" pill never covers form options or content. */
@media (max-width: 1024px) {
  .wa-float { right: 16px; width: 56px; height: 56px; padding: 0; justify-content: center; border-radius: 50%; }
  .wa-float__text { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .topbar__trust { display: none; }
  .topbar__cta { display: none; }
  .phone-link__label { display: none; }
  .hero { padding: 2rem 0 2.5rem; }
  .options--grid { grid-template-columns: 1fr; }
  .options--row { grid-auto-flow: row; }
  .gallery { grid-template-columns: 1fr; }
  .reviews, .promises { grid-template-columns: 1fr; }
  .about__stats { gap: 1.3rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col,
  .footer__col a { min-width: 0; overflow-wrap: anywhere; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
  .footer__legal { text-align: center; }
  .footer__pay { justify-content: center; }
  .finalcta__buttons { flex-direction: column; }
  .finalcta__buttons .btn { width: 100%; }
  /* WhatsApp = compact circle, lifted above the sticky call bar */
  .wa-float { bottom: 88px; right: 14px; width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }
  .wa-float__text { display: none; }

  /* sticky bottom action bar on phones */
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    width: 100%; max-width: 100vw; overflow: hidden;
    background: #fff; padding: .6rem; border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -12px rgba(15,46,87,.4);
  }
  .mobilebar__btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    min-width: 0; font-weight: 800; border-radius: 999px; padding: .85rem .6rem; font-size: 1rem; text-decoration: none; }
  .mobilebar__btn--call { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
  .mobilebar__btn--quote { background: var(--accent); color: #fff; }
  body { padding-bottom: 78px; }  /* room for the bar */
}

@media (max-width: 380px) {
  .footer__grid { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
