/* ================================================================
   PF WASTE REMOVAL — MAIN STYLESHEET  (v1.0.0)
   Dark / bold / green-accent. Anton (display) · Oswald (head) · Inter (body)
   ================================================================ */

:root {
  --bg:         #0D0D0D;
  --panel:      #1B1B1B;
  --card:       #202020;
  --line:       #333333;
  --green:      #8CC63E;
  --green-dark: #6FA82E;
  --white:      #FFFFFF;
  --text:       #E6E6E6;
  --muted:      #9A9A9A;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-head:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 4px;
  --container: min(1200px, 92vw);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: clip; /* 'clip' (not 'hidden') so it never turns an ancestor into a scroll container and breaks position:sticky */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--white); font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
p { color: var(--text); }
strong { color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--green); color: #0d0d0d; padding: .6rem 1rem; font-family: var(--font-head);
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---- CONTAINER / SECTIONS ---- */
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--panel); }

/* ---- EYEBROW + ANGLED "TIPPER EDGE" MARKER ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .18em;
  font-size: .82rem; color: var(--green); font-weight: 600; margin-bottom: .5rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 12px; background: var(--green);
  transform: skewX(-22deg); display: inline-block;
}

.section-header { max-width: 62ch; margin-bottom: 2.6rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: .01em; text-transform: uppercase; color: var(--white);
}
.section-title em { font-style: normal; color: var(--green); }
.section-sub { color: var(--muted); margin-top: .8rem; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: .04em;
  text-transform: uppercase; padding: .8em 1.7em; border: 2px solid transparent; cursor: pointer;
  border-radius: var(--radius); transition: transform .15s, filter .15s, background .15s, color .15s;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary   { background: var(--green); color: #0d0d0d; border-color: var(--green); }
.btn-primary:hover { filter: brightness(1.07); }
.btn-secondary { background: transparent; color: var(--green); border-color: var(--green); }
.btn-secondary:hover { background: var(--green); color: #0d0d0d; }
.btn-dark      { background: #0d0d0d; color: var(--green); border-color: #0d0d0d; }
.btn-full      { width: 100%; }

/* ================= HEADER / NAV ================= */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13,13,13,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; gap: 1rem; }
.logo { display: inline-flex; align-items: baseline; gap: .4rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; }
.logo:hover { text-decoration: none; }
.logo__pf   { background: var(--green); color: #0d0d0d; padding: .05em .35em; font-size: 1.5rem; line-height: 1; transform: skewX(-8deg); }
.logo__rest { color: var(--white); font-size: 1.35rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: var(--text); font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--green); text-decoration: none; }
.nav-cta { background: var(--green); color: #0d0d0d !important; padding: .5em 1.1em; border-radius: var(--radius); }
.nav-cta:hover { filter: brightness(1.07); }

/* ================= TRUST TICKER ================= */
.trust-bar { background: var(--green); overflow: hidden; border-block: 1px solid var(--green-dark); }
.trust-ticker { display: flex; gap: 2.4rem; width: max-content; animation: pf-ticker 34s linear infinite; padding: .7rem 0; }
.trust-item { color: #0d0d0d; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; white-space: nowrap; }
.trust-item span { margin-right: .35rem; }
@keyframes pf-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================= HERO ================= */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: start; }
.hero__badge {
  display: inline-block; font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: .82rem; color: var(--green);
  border: 1px solid var(--line); background: var(--panel); padding: .4em .9em; border-radius: 40px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.02; color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero__sub { color: var(--muted); font-size: 1.12rem; margin: 1.1rem 0 1.6rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__photo { margin-top: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hero__photo img { width: 100%; height: auto; display: block; }
.hero__form { position: relative; }

/* ================= QUOTE FORM ================= */
.quote {
  background: var(--card); border: 1px solid var(--green);
  border-radius: var(--radius); padding: 1.6rem; position: relative;
  box-shadow: 0 0 0 1px rgba(140,198,62,.12);
}
.hero__form .quote { position: sticky; top: 92px; box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.quote__title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.7rem; color: var(--white); }
.quote__note { color: var(--muted); font-size: .9rem; margin: .3rem 0 1.1rem; }

.form-msg { display: none; padding: .7rem .9rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }
.form-msg.ok  { display: block; background: rgba(140,198,62,.12); border: 1px solid var(--green); color: var(--green); }
.form-msg.bad { display: block; background: #2b0d0d; border: 1px solid #7a2a2a; color: #e39393; }

.pf-form .form-group { margin-bottom: .85rem; }
.pf-form label { display: block; font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .78rem; color: var(--muted); margin-bottom: .3rem; }
.pf-form input, .pf-form select, .pf-form textarea {
  width: 100%; background: #0d0d0d; border: 1px solid var(--line); color: var(--white);
  padding: .65rem .75rem; border-radius: var(--radius); font-family: inherit; font-size: .95rem;
}
.pf-form input:focus, .pf-form select:focus, .pf-form textarea:focus { outline: none; border-color: var(--green); }
.pf-form textarea { min-height: 96px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.form-upload small { display: block; color: var(--muted); font-size: .74rem; margin-top: .25rem; }
.form-upload input[type=file] { padding: .5rem; font-size: .82rem; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--muted); font-size: .8rem; margin-top: .8rem; text-align: center; }
.pf-form .btn-full { margin-top: .3rem; }

/* ================= SERVICES GRID ================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; position: relative; overflow: hidden;
  color: var(--text); transition: transform .15s, border-color .15s;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--green); text-decoration: none; }
.service-card__icon { width: 42px; height: 42px; fill: var(--green); margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-head); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.service-card__more { margin-top: 1rem; color: var(--green); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: .85rem; letter-spacing: .04em; }
.service-card--feature { border-color: var(--green); background: linear-gradient(180deg, rgba(140,198,62,.08), var(--card) 60%); }
.service-card__tag {
  position: absolute; top: 0; right: 0; background: var(--green); color: #0d0d0d;
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: .72rem; padding: .3em .8em; transform: skewX(-8deg); transform-origin: top right;
}

/* ================= WHY (home) ================= */
.why__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.4rem; align-items: start; }
.why__list { list-style: none; margin: 1.6rem 0; display: grid; gap: 1rem; }
.why__list li { position: relative; padding-left: 2rem; color: var(--muted); }
.why__list li::before { content: "\2714"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.why__aside { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: var(--radius); padding: 1.8rem; }
.why__aside h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; margin-bottom: .8rem; }
.why__aside p { color: var(--muted); margin-bottom: 1rem; }

/* ================= AREAS (home) ================= */
.areas-grid { display: flex; flex-wrap: wrap; gap: .7rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--card); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font-head); font-weight: 500; padding: .55rem 1rem; border-radius: 40px; font-size: .95rem;
  transition: border-color .15s, color .15s;
}
.area-chip:hover { border-color: var(--green); color: var(--green); text-decoration: none; }
.area-chip svg { width: 16px; height: 16px; fill: var(--green); }

/* ================= COVERAGE MAP (home) ================= */
.areas-map__note { color: var(--muted); font-size: .95rem; margin: 1.4rem 0 1rem; }
.areas-map {
  height: 420px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--panel);
}
/* Standard road map, left in its natural colours — trying to force-invert the
   raster tiles into a dark theme was giving a murky, terrain-map look rather
   than a clean result, so the map sits in its own light card instead. */
.areas-map .leaflet-container { background: var(--panel); font-family: var(--font-body); }
.areas-map .leaflet-control-zoom a {
  background: var(--card); color: var(--text); border-color: var(--line) !important;
}
.areas-map .leaflet-control-zoom a:hover { background: var(--green); color: #0d0d0d; }
.areas-map .leaflet-control-attribution {
  background: rgba(23,23,23,.85); color: var(--muted);
}
.areas-map .leaflet-control-attribution a { color: var(--green); }
.areas-map .leaflet-popup-content-wrapper { background: var(--card); color: var(--text); border: 1px solid var(--green); border-radius: var(--radius); }
.areas-map .leaflet-popup-tip { background: var(--card); border: 1px solid var(--green); border-top: none; border-left: none; }
.areas-map .leaflet-popup-content { margin: .8rem 1rem; font-size: .92rem; }
.areas-map .leaflet-popup-content strong { color: var(--white); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; }
.areas-map .leaflet-popup-content a { color: var(--green); font-weight: 600; }
.areas-map .leaflet-popup-close-button { color: var(--muted) !important; }
.pf-map-pin { background: none; border: none; filter: drop-shadow(0 2px 3px rgba(0,0,0,.6)); }

@media (max-width: 720px) {
  .areas-map { height: 320px; }
}

/* ================= STEPS ================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; overflow: hidden; }
/* Animated light sweeping along the border only (not the card face). Achieved
   by masking a moving gradient so it only shows in the border ring: the
   padding on the pseudo-element sets the ring's thickness, and mask-composite
   'exclude' cuts the solid centre away, leaving just the outline lit. */
.step::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: pf-border-sweep 5s ease-in-out infinite;
}
.step:nth-child(1)::before { animation-delay: 0s; }
.step:nth-child(2)::before { animation-delay: .5s; }
.step:nth-child(3)::before { animation-delay: 1s; }
@keyframes pf-border-sweep {
  0%   { background-position: -100% 0; }
  60%  { background-position: 200% 0; }  /* sweep completes ~3s into the 5s loop */
  100% { background-position: 200% 0; }  /* holds, invisible, for the remaining pause */
}
@media (prefers-reduced-motion: reduce) {
  .step::before { animation: none; }
}
.step__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--green); line-height: 1; margin-bottom: .6rem; }
.step h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; font-size: 1.15rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ================= CTA BAR ================= */
.cta-bar { background: var(--green); }
.cta-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 2.2rem 0; }
.cta-bar h2 { font-family: var(--font-display); text-transform: uppercase; color: #0d0d0d; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-bar p { color: #1a1a1a; }
.cta-bar__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.cta-bar__phone { font-family: var(--font-display); font-size: 1.6rem; color: #0d0d0d; text-decoration: none; }
.cta-bar__phone:hover { text-decoration: none; color: #0d0d0d; }

/* ================= FOOTER ================= */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin: 1rem 0; max-width: 40ch; }
.footer-brand address { color: var(--muted); font-style: normal; font-size: .92rem; line-height: 1.7; }
.footer-brand address a { color: var(--text); }
.footer-brand address a:hover { color: var(--green); }
.ea-badge { margin-top: 1rem; color: var(--green); font-size: .88rem; }
.ea-badge a { color: var(--green); }
.social-links { margin-top: 1rem; }
.social-links a { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); font-size: .9rem; }
.social-links a:hover { color: var(--green); text-decoration: none; }
.footer-col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; font-size: 1rem; color: var(--white); margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: grid; gap: .5rem; }
.footer-col a { color: var(--muted); font-size: .92rem; }
.footer-col a:hover { color: var(--green); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 2.4rem; padding-top: 1.4rem; }
.footer-bottom p { color: var(--muted); font-size: .82rem; }
.footer-bottom a { color: var(--green); }

/* ================= PAGE HERO (inner pages) ================= */
.page-hero { background: var(--panel); border-bottom: 1px solid var(--line); padding: clamp(2.2rem, 5vw, 3.4rem) 0; position: relative; }
.crumbs { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green); text-decoration: none; }
.crumbs span { margin: 0 .35rem; opacity: .5; }
.crumbs strong { color: var(--green); }
.page-hero__icon { width: 54px; height: 54px; margin-bottom: .8rem; }
.page-hero__icon svg { width: 100%; height: 100%; fill: var(--green); }
.page-hero__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--white); letter-spacing: .01em; }
.page-hero__lede { color: var(--muted); font-size: 1.1rem; max-width: 62ch; margin-top: .9rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

/* ================= SERVICE / AREA LAYOUT ================= */
.service-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 2.5rem; align-items: start; }

/* ================= BLOG ================= */
.blog-meta { color: var(--muted); font-size: .85rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; margin-top: .6rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.blog-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; color: var(--text);
  transition: transform .15s, border-color .15s; overflow: hidden;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--green); text-decoration: none; }
.blog-card__img { margin: -1.6rem -1.6rem .9rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 1200 / 630; background: var(--panel); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-hero-img { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: -1rem 0 0; }
.blog-hero-img img { width: 100%; height: auto; display: block; }
.blog-card__meta { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: .74rem; color: var(--muted); margin-bottom: .5rem; }
.blog-card h2 { font-family: var(--font-head); font-size: 1.15rem; text-transform: none; letter-spacing: 0; color: var(--white); margin-bottom: .5rem; }
.blog-card p { color: var(--muted); font-size: .92rem; flex: 1; }
.blog-article-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 2.5rem; align-items: start; }
.blog-sidebar { position: sticky; top: 92px; }
.blog-related { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.blog-related h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; font-size: 1rem; color: var(--white); margin-bottom: .7rem; }
.blog-related ul { list-style: none; display: grid; gap: .5rem; }
.blog-related a { color: var(--text); font-size: .92rem; }
.blog-related a:hover { color: var(--green); text-decoration: none; }
.service-body h2 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-size: 1.5rem; color: var(--white); margin: 1.8rem 0 .7rem; }
.service-body > h2:first-child, .service-points h2 { margin-top: 0; }
.service-body p { color: var(--text); margin-bottom: .6rem; }
.service-points { margin-bottom: 1.6rem; }
.ticklist { list-style: none; display: grid; gap: .6rem; margin: .6rem 0 1rem; }
.ticklist li { position: relative; padding-left: 1.9rem; color: var(--text); }
.ticklist li::before { content: "\2714"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.ticklist--2col { grid-template-columns: 1fr 1fr; }
.ticklist a { color: var(--text); }
.ticklist a:hover { color: var(--green); text-decoration: none; }
.service-cross { margin-top: 1.6rem; padding: 1.1rem 1.2rem; background: var(--panel); border-left: 3px solid var(--green); border-radius: var(--radius); }
.service-cross p { color: var(--muted); margin: 0; font-size: .95rem; }
.area-map { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.area-map iframe { display: block; width: 100%; height: 340px; border: 0; }
/* The whole sidebar column is the sticky element (align-self:start gives it room
   to travel), so the form top-aligns, then scrolls with the page and stays in
   view until the section ends at the green CTA bar, where it releases. */
.service-aside { align-self: start; position: sticky; top: 92px; }

/* ---- Service detail pages: hero intro + body + form share one grid so the
   form starts level with the hero and sticks through the body until the CTA. ---- */
.service-top {
  position: relative; z-index: 0;
  padding: clamp(2.2rem, 5vw, 3.4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  /* subtle full-width hero band at the top, fading into the page background */
  background: linear-gradient(180deg, var(--panel) 0, rgba(23,23,23,0) 360px);
}
.service-layout--top { grid-template-rows: auto 1fr; }
.service-layout--top .service-intro { grid-column: 1; grid-row: 1; }
.service-layout--top .service-body  { grid-column: 1; grid-row: 2; }
.service-layout--top .service-aside { grid-column: 2; grid-row: 1 / span 2; }

/* ================= AREAS LISTING ================= */
.area-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.area-card { display: flex; align-items: center; gap: .9rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; color: var(--text); transition: border-color .15s, transform .15s; }
.area-card:hover { border-color: var(--green); transform: translateY(-3px); text-decoration: none; }
.area-card svg { width: 26px; height: 26px; fill: var(--green); flex-shrink: 0; }
.area-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.1rem; letter-spacing: .02em; }
.area-card span { color: var(--muted); font-size: .85rem; }

/* ================= CONTACT ================= */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.8rem; }
.contact-card { display: flex; align-items: center; gap: .8rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; color: var(--text); }
.contact-card:hover { text-decoration: none; border-color: var(--green); }
.contact-card svg { width: 26px; height: 26px; fill: var(--green); flex-shrink: 0; }
.contact-card strong { display: block; font-family: var(--font-head); text-transform: uppercase; font-size: .82rem; letter-spacing: .04em; color: var(--white); }
.contact-card span { color: var(--muted); font-size: .92rem; }
.hours { list-style: none; max-width: 380px; margin: .4rem 0 1rem; }
.hours li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.hours li span:last-child { color: var(--text); }

/* ================= WHY-US PAGE ================= */
.why-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 2.4rem; }
.why-compare__col { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; background: var(--card); }
.why-compare__col h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-size: 1.3rem; margin-bottom: 1rem; }
.why-compare__col ul { list-style: none; display: grid; gap: .6rem; }
.why-compare__col--bad h3 { color: var(--muted); }
.why-compare__col--bad ul li { position: relative; padding-left: 1.9rem; color: var(--muted); }
.why-compare__col--bad ul li::before { content: "\2715"; position: absolute; left: 0; color: #a15b5b; font-weight: 700; }
.why-compare__col--good { border-color: var(--green); background: linear-gradient(180deg, rgba(140,198,62,.07), var(--card) 60%); }
.why-body h2 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-size: 1.5rem; margin: 1.8rem 0 .6rem; }
.why-body p { color: var(--text); }
.why-body__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* ================= FAQ ================= */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid rgba(140,198,62,.35); border-radius: var(--radius); margin-bottom: .8rem; background: var(--card); overflow: hidden; transition: border-color .15s; }
.faq-item:hover, .faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--white);
  font-family: var(--font-head); font-weight: 500; font-size: 1.08rem; padding: 1.1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-icon { width: 14px; height: 14px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--green); transition: transform .2s; }
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-icon::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a p { color: var(--muted); padding: 0 1.2rem 1.1rem; }

/* ================= REVEAL ANIMATION ================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__form .quote { position: static; }
  .why__grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .service-layout--top { grid-template-columns: 1fr; grid-template-rows: none; }
  .service-layout--top .service-intro,
  .service-layout--top .service-body,
  .service-layout--top .service-aside { grid-column: 1; grid-row: auto; }
  .area-cards, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #0d0d0d; border-bottom: 1px solid var(--line); padding: .5rem 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0 6vw; }
  .nav-links a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin: .6rem 6vw; }
  .services-grid, .steps, .why-compare, .area-cards, .contact-cards, .ticklist--2col { grid-template-columns: 1fr; }
  .blog-grid, .blog-article-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-bar__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}
