/* =========================================================
   Spotless Yards — professional pet waste removal (franchise)
   Palette: crisp white, bold corporate green, deep slate
   Type: Archivo (display) + Hanken Grotesk (body)
   ========================================================= */

:root {
  --white:    #ffffff;
  --gray:     #f2f5f3;
  --gray-2:   #e7ece9;
  --slate:    #11201a;
  --slate-2:  #19302610;
  --green:    #548a31;
  --green-d:  #436e27;
  --green-lt: #6fa844;
  --ink:      #16241d;
  --muted:    #56655c;
  --amber:    #f5a623;
  --line:     rgba(18,32,25,.12);
  --line-d:   rgba(255,255,255,.14);

  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 24px 60px -28px rgba(17,32,26,.45);
  --shadow-sm: 0 10px 26px -16px rgba(17,32,26,.3);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1180px;
}

/* ---------- base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.022em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* line-icon defaults */
.i { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .96rem;
  padding: .8rem 1.4rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s;
  white-space: nowrap;
}
.btn .i { width: 18px; height: 18px; }
.btn--solid { background: var(--green); color: #fff; box-shadow: 0 12px 24px -12px rgba(31,138,76,.8); }
.btn--solid:hover { background: var(--green-d); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--green-d); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- topbar ---------- */
.topbar { background: var(--slate); color: rgba(255,255,255,.92); font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: .55rem 0; flex-wrap: wrap; }
.topbar p { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .i { width: 16px; height: 16px; color: var(--green-lt); }
.topbar strong { color: #fff; }
.topbar__link { font-weight: 700; color: var(--green-lt); }
.topbar__link:hover { color: #fff; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s;
}
.nav.is-stuck { box-shadow: 0 10px 30px -20px rgba(17,32,26,.5); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; padding: .35rem 0; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: .02em; color: var(--ink); }
.brand__logo { height: 75px; width: auto; }
.brand__logo--light { height: 56px; }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--green); color: #fff; flex: none; }
.brand__mark svg { width: 24px; }
.brand__accent { color: var(--green); }
.brand--light, .brand--light .brand__name { color: #fff; }
.brand--light .brand__accent { color: var(--green-lt); }

.nav__links { display: flex; gap: 1.7rem; margin-left: auto; font-weight: 600; font-size: .95rem; }
.nav__links a { color: var(--ink); position: relative; padding: .25rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .22s; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--ink); font-size: .92rem; }
.nav__phone .i { width: 17px; height: 17px; }
.nav__phone:hover { color: var(--green); }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 10px; }
.nav__burger span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem); background:
  linear-gradient(180deg, rgba(31,138,76,.06), transparent 60%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: .5rem; background: var(--white); border: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: .85rem; padding: .42rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.eyebrow__stars { color: var(--amber); letter-spacing: .05em; }

.hero__title { font-size: clamp(2.5rem, 5.6vw, 4.3rem); font-weight: 900; margin: 1.1rem 0 1rem; letter-spacing: -.03em; }
.hero__title .hl { color: var(--green); }

.hero__sub { font-size: 1.12rem; color: var(--muted); max-width: 34rem; }
.hero__cta { display: flex; gap: .8rem; margin: 1.8rem 0 1.5rem; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; font-weight: 600; font-size: .9rem; color: var(--ink); }
.hero__trust li { display: flex; align-items: center; gap: .45rem; }
.hero__trust .i { color: var(--green); width: 19px; height: 19px; }

/* hero media */
.hero__media { position: relative; }
.hero__photo { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 55%, rgba(17,32,26,.18)); }

.kpi { position: absolute; background: rgba(255,255,255,.96); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1rem; box-shadow: var(--shadow); }
.kpi--a { display: flex; align-items: center; gap: .7rem; top: 1.2rem; left: -1.4rem; }
.kpi--a .kpi__ico { width: 38px; height: 38px; border-radius: 9px; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; }
.kpi--a strong { display: block; font-family: var(--font-display); font-size: .92rem; color: var(--ink); }
.kpi--a span { font-size: .78rem; color: var(--muted); }
.kpi--b { bottom: 1.4rem; right: -1.2rem; text-align: center; }
.kpi--b strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--green); }
.kpi--b span { font-size: .76rem; color: var(--muted); }

/* ---------- stats ---------- */
.stats { background: var(--slate); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 2.4rem 0; text-align: center; }
.stat { padding: .4rem; }
.stat__num, .stat__plus { font-family: var(--font-display); font-weight: 800; color: #fff; }
.stat__num { font-size: clamp(2rem, 4vw, 2.9rem); }
.stat__plus { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--green-lt); }
.stat p { font-size: .88rem; color: rgba(255,255,255,.7); margin-top: .15rem; letter-spacing: .01em; }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--dark { background: var(--slate); color: #fff; }
.section--gray { background: var(--gray); }

.section__head { max-width: 44rem; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: .55rem 0 .8rem; }
.section--dark .section__title { color: #fff; }
.section__lede { font-size: 1.08rem; color: var(--muted); }
.section--dark .section__lede { color: rgba(255,255,255,.72); }

.kicker { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.kicker--light { color: var(--green-lt); }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card--feature { background: var(--slate); color: #fff; border-color: var(--slate); }
.card--feature h3 { color: #fff; }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; background: rgba(31,138,76,.1); color: var(--green); border-radius: 12px; margin-bottom: 1rem; }
.card__icon .i { width: 26px; height: 26px; }
.card--feature .card__icon { background: rgba(255,255,255,.12); color: #fff; }
.card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card--feature p { color: rgba(255,255,255,.78); }
.card__from { margin-top: 1.1rem; font-weight: 600; font-size: .88rem; color: var(--muted); }
.card--feature .card__from { color: var(--green-lt); }
.card__from strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--green); }
.card--feature .card__from strong { color: #fff; }
.card__tag { position: absolute; top: 1.1rem; right: 1.1rem; background: var(--green); color: #fff; font-size: .68rem; font-weight: 800; padding: .25rem .6rem; border-radius: 6px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- fleet ---------- */
.fleet { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.fleet__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.fleet__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.fleet__badge { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.95); backdrop-filter: blur(6px); color: var(--ink); font-weight: 700; font-size: .82rem; padding: .5rem .85rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.fleet__badge .i { width: 16px; height: 16px; color: var(--green); }
.fleet__copy .section__title { margin-top: .55rem; }
.fleet__list { list-style: none; display: grid; gap: .8rem; margin-top: 1.5rem; }
.fleet__list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); }
.fleet__list .i { color: var(--green); width: 20px; height: 20px; }

/* ---------- steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { position: relative; padding-top: 1rem; }
.step__num { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: 1rem; }
.step h3 { color: #fff; font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: rgba(255,255,255,.72); font-size: .94rem; }
.step:not(:last-child)::before { content: ""; position: absolute; top: 1rem; left: 58px; right: -1.4rem; height: 2px; background: repeating-linear-gradient(90deg, var(--green-lt) 0 7px, transparent 7px 15px); opacity: .5; }

/* ---------- pricing ---------- */
.dogpicker { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.dogpicker__label { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.stepper { display: inline-flex; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.stepper button { width: 44px; height: 44px; border: none; background: transparent; font-size: 1.5rem; font-weight: 700; color: var(--green); cursor: pointer; transition: background .15s; }
.stepper button:hover { background: var(--gray); }
.stepper span { min-width: 42px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.plan { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan--feature { background: var(--slate); color: #fff; border-color: var(--slate); transform: scale(1.03); box-shadow: var(--shadow); }
.plan--feature .plan__name { color: #fff; }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .72rem; font-weight: 800; padding: .3rem .9rem; border-radius: 6px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.plan__name { font-size: 1.45rem; }
.plan__tag { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; }
.plan--feature .plan__tag { color: rgba(255,255,255,.7); }
.plan__price { display: flex; align-items: baseline; gap: .12rem; margin-bottom: 1.3rem; }
.plan__cur { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--green); }
.plan--feature .plan__cur { color: var(--green-lt); }
.plan__amt { font-family: var(--font-display); font-weight: 800; font-size: 3.1rem; line-height: 1; color: var(--ink); transition: opacity .15s; }
.plan--feature .plan__amt { color: #fff; }
.plan__per { color: var(--muted); font-size: .92rem; margin-left: .25rem; }
.plan--feature .plan__per { color: rgba(255,255,255,.65); }
.plan__list { list-style: none; display: grid; gap: .65rem; margin-bottom: 1.6rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.6rem; font-size: .94rem; color: var(--ink); }
.plan--feature .plan__list li { color: rgba(255,255,255,.9); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan--feature .plan__list li::before { color: var(--green-lt); }
.plans__note { text-align: center; margin-top: 1.8rem; color: var(--muted); }
.plans__note a { color: var(--green); font-weight: 700; }
.plans__note a:hover { text-decoration: underline; }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why__copy .section__title { margin-top: .55rem; }
.why__copy .btn { margin-top: 1.6rem; }
.why__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.why__list li { display: flex; gap: .9rem; }
.why__ico { width: 48px; height: 48px; flex: none; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); color: var(--green); border-radius: 12px; }
.why__ico .i { width: 24px; height: 24px; }
.why__list h4 { font-size: 1.08rem; margin-bottom: .25rem; }
.why__list p { font-size: .9rem; color: var(--muted); }

/* ---------- service area ---------- */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.zip { display: flex; gap: .6rem; margin-top: 1.6rem; max-width: 30rem; }
.zip input { flex: 1; padding: .85rem 1.1rem; border-radius: var(--radius-sm); border: 2px solid var(--line-d); background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; font-family: var(--font-body); }
.zip input::placeholder { color: rgba(255,255,255,.5); }
.zip input:focus { outline: none; border-color: var(--green-lt); background: rgba(255,255,255,.14); }
.zip__result { margin-top: .9rem; font-weight: 700; min-height: 1.4rem; }
.zip__result.ok { color: var(--green-lt); }
.zip__result.no { color: #ffd1c7; }
.area__pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.area__pills li { background: rgba(255,255,255,.07); border: 1px solid var(--line-d); padding: .5rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.quote__stars { color: var(--amber); letter-spacing: .15em; font-size: 1.02rem; }
.quote blockquote { font-size: 1.05rem; font-weight: 500; line-height: 1.55; color: var(--ink); flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: .7rem; }
.quote__avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; background: var(--c, var(--green)); flex: none; }
.quote figcaption strong { display: block; font-size: .95rem; color: var(--ink); }
.quote figcaption small { color: var(--muted); }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .3rem 1.3rem; box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 0; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { width: 11px; height: 11px; border-right: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(45deg); transition: transform .25s; flex: none; }
.faq__item[open] .faq__chev { transform: rotate(-135deg); }
.faq__item p { color: var(--muted); padding-bottom: 1.1rem; max-width: 48ch; font-size: .96rem; }

/* ---------- franchise band ---------- */
.franchise { background: var(--green); color: #fff; }
.franchise__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.4rem, 5vw, 3.4rem) 0; flex-wrap: wrap; }
.franchise h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: .4rem 0 .6rem; }
.franchise p { color: rgba(255,255,255,.9); max-width: 46ch; }
.franchise .kicker--light { color: rgba(255,255,255,.85); }

/* ---------- final CTA ---------- */
.cta { padding: clamp(3.5rem, 8vw, 5.5rem) 0; background:
  radial-gradient(circle at 85% 15%, rgba(31,138,76,.3), transparent 55%), var(--slate); }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta__copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta__copy p { color: rgba(255,255,255,.8); font-size: 1.08rem; margin: 1rem 0 1.4rem; }
.cta__points { list-style: none; display: grid; gap: .55rem; font-weight: 600; color: #fff; }
.cta__points li { display: flex; align-items: center; gap: .5rem; }
.cta__points .i { color: var(--green-lt); width: 19px; height: 19px; }

.quoteform { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.quoteform h3 { font-size: 1.4rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 1rem; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 700; font-size: .82rem; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select { width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--white); font-family: var(--font-body); font-size: 1rem; color: var(--ink); }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,138,76,.15); }
.quoteform__fine { font-size: .76rem; color: var(--muted); margin-top: .8rem; text-align: center; }
.quoteform__ok { margin-top: 1rem; background: rgba(31,138,76,.1); border: 1px solid rgba(31,138,76,.4); color: var(--green-d); padding: .9rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: .94rem; }

/* ---------- footer ---------- */
.footer { background: #0c1712; color: rgba(255,255,255,.68); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand .brand { margin-bottom: 1rem; }
.footer__brand p { font-size: .93rem; max-width: 34ch; }
.footer__contact { margin-top: .9rem; }
.footer__contact a { color: var(--green-lt); font-weight: 600; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: .9rem; }
.footer__col a { display: block; color: rgba(255,255,255,.68); padding: .25rem 0; font-size: .9rem; }
.footer__col a:hover { color: var(--green-lt); }
.footer__bar { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-d); font-size: .82rem; }
.footer__legal a:hover { color: var(--green-lt); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .fleet { grid-template-columns: 1fr; }
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::before { display: none; }
  .why, .area, .faq, .cta__inner { grid-template-columns: 1fr; }
  .why__list { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}

@media (max-width: 720px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; gap: .5rem; background: var(--white); padding: 6rem 1.6rem 2rem; transform: translateX(105%); transition: transform .3s ease; box-shadow: -20px 0 60px -30px rgba(0,0,0,.5); margin: 0; }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1.12rem; padding: .6rem 0; border-bottom: 1px solid var(--line); }
  .nav__burger { display: flex; }
  .nav__phone { display: none; }
  .plans { grid-template-columns: 1fr; }
  .plan--feature { transform: none; }
  .cards, .quotes, .why__list { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .kpi--a { left: 0; }
  .kpi--b { right: 0; }
  .franchise__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
