/* ==========================================================================
   R&J Tree Services — Landing page styles
   ========================================================================== */

:root {
  /* Palette — deep forest + warm earth + citrus accent */
  --c-bg:        #0a1f12;
  --c-bg-2:      #0d2818;
  --c-surface:   #112c1d;
  --c-surface-2: #143927;
  --c-line:      rgba(180, 220, 180, 0.12);

  --c-text:      #eef6ee;
  --c-muted:     #9bb9a3;

  --c-accent:    #8fd14f;     /* leaf green */
  --c-accent-2:  #f4b740;     /* citrus gold */
  --c-accent-3:  #ff7a45;     /* sunset orange */

  --c-deep:      #06140c;

  --radius:      18px;
  --radius-sm:   10px;
  --radius-lg:   28px;

  --shadow-1: 0 4px 20px rgba(0,0,0,.25);
  --shadow-2: 0 18px 50px rgba(0,0,0,.45);
  --shadow-glow: 0 0 60px rgba(143,209,79,.25);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --container: 1600px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, canvas, iframe, embed, object { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
section { position: relative; }

/* ---------- Container ---------- */
.container { width: min(90%, var(--container)); margin-inline: auto; padding-inline: clamp(16px, 2vw, 32px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-accent); color: #001c00; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-deep);
  display: grid; place-content: center; gap: 18px; justify-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__ring {
  width: 54px; height: 54px; border-radius: 50%;
  border: 3px solid rgba(143,209,79,.2);
  border-top-color: var(--c-accent);
  animation: spin 1s linear infinite;
}
.loader__label {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; font-size: 12px;
  color: var(--c-accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .4; } }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot { position: absolute; width: 8px; height: 8px; background: #fff; border-radius: 50%; transform: translate(-50%,-50%); transition: transform .15s var(--ease); }
.cursor__ring { position: absolute; width: 38px; height: 38px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 50%; transform: translate(-50%,-50%); transition: transform .25s var(--ease), width .25s, height .25s; }
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; border-color: var(--c-accent); }
.cursor.is-hover .cursor__dot { transform: translate(-50%,-50%) scale(0); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2)); z-index: 9990; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10,31,18,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,.3);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-inline: clamp(16px, 2vw, 32px); }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--c-text); }
.brand__logo { height: 42px; width: auto; display: block; }
.brand__text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--c-accent); letter-spacing: .02em; white-space: nowrap; max-width: 30vw; overflow: hidden; text-overflow: ellipsis; }
.brand--footer .brand__logo { height: 36px; }
.brand--footer .brand__text { font-size: 1.05rem; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; letter-spacing: .02em; color: var(--c-text); position: relative; transition: color .25s; }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav a:not(.nav__cta):hover { color: var(--c-accent); }

.nav-toggle { display: none; width: 32px; height: 32px; position: relative; }
.nav-toggle span { position: absolute; left: 4px; right: 4px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--c-accent);
  --btn-fg: #06140c;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: .01em;
  background: var(--btn-bg); color: var(--btn-fg);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s, background .25s;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(143,209,79,.35); }
.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--c-accent); color: #06140c; }
.btn--ghost { background: transparent; color: var(--c-text); border: 1.5px solid var(--c-line); }
.btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); box-shadow: 0 14px 30px rgba(0,0,0,.3); }
.btn--outline { background: transparent; color: var(--c-text); border: 1.5px solid rgba(143,209,79,.35); }
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent); box-shadow: 0 14px 30px rgba(0,0,0,.3); }
.btn i { font-size: 15px; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  position: relative; overflow: hidden;
  padding: clamp(110px, 12vh, 140px) clamp(24px, 5vw, 80px) clamp(60px, 8vh, 100px);
  background: radial-gradient(1200px 600px at 70% 20%, rgba(143,209,79,.12), transparent 60%),
              radial-gradient(900px 500px at 20% 80%, rgba(244,183,64,.08), transparent 60%),
              var(--c-bg);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 40%, rgba(6,20,12,.6) 100%),
    linear-gradient(180deg, rgba(6,20,12,.45) 0%, transparent 30%, rgba(6,20,12,.85) 100%);
}
/* Hero — mobile-friendly container override */
.hero .container {
  flex: 0 1 600px;
  max-width: 600px;
  min-width: 0;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(16px, 2vw, 32px);
}
.hero__content { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(143,209,79,.12); border: 1px solid rgba(143,209,79,.3);
  color: var(--c-accent); font-size: 13px; font-weight: 600; letter-spacing: .02em;
  margin-bottom: 24px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 0 rgba(143,209,79,.6); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(143,209,79,.6); }
  70% { box-shadow: 0 0 0 12px rgba(143,209,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,209,79,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .98; letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--accent {
  background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-2) 60%, var(--c-accent-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--c-muted); max-width: 540px; margin-bottom: 32px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; max-width: 100%; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px);
  padding-top: 32px; border-top: 1px solid var(--c-line); max-width: 560px;
}
.hero__stats li { display: flex; flex-direction: column; gap: 6px; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-weight: 900; color: var(--c-accent); line-height: 1; }
.hero__stats span { font-size: 13px; color: var(--c-muted); letter-spacing: .02em; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--c-muted); font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--c-accent), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--c-accent); animation: scrolldown 1.8s var(--ease) infinite; }
@keyframes scrolldown { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- Floating Review Cards ---------- */
.hero__floating-reviews {
  flex: 0 0 clamp(280px, 30vw, 400px);
  position: relative;
  z-index: 3; pointer-events: none;
  height: clamp(360px, 55vh, 520px);
  display: none;
}
@media (min-width: 960px) {
  .hero__floating-reviews { display: block; }
}

.hero__review-card {
  position: absolute;
  max-width: 220px; width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(13, 40, 24, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(143, 209, 79, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(143, 209, 79, 0.06) inset;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(10px) scale(0.94);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
  pointer-events: none;
}
.hero__review-card.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(143, 209, 79, 0.06) inset,
              0 0 40px rgba(143, 209, 79, 0.08);
}

.hero__review-card__stars {
  color: var(--c-accent-2);
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero__review-card__body {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__review-card__author {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.03em;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--c-accent); color: #06140c;
  padding: 14px 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(0,0,0,.1);
  max-width: 100vw;
}
.marquee__track { display: inline-flex; gap: 40px; animation: marquee-right 40s linear infinite; }
.marquee__track span { font-weight: 600; font-size: 14px; letter-spacing: .04em; }
@keyframes marquee-right { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
.section { padding: clamp(70px, 8vw, 110px) 0; }
.section-head { max-width: 820px; margin-bottom: 52px; }
.section-head .section-lead { margin-top: 16px; color: var(--c-muted); font-size: 1.1rem; }

.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 700; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.05; letter-spacing: -.02em;
}
.text-accent { color: var(--c-accent); font-style: italic; }
.lead { font-size: 1.15rem; color: var(--c-muted); margin-top: 18px; max-width: 560px; }

/* ---------- ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media-frame {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(155deg, var(--c-surface-2), var(--c-bg-2));
  border: 1px solid var(--c-line); box-shadow: var(--shadow-2);
  position: relative;
}
.about__media-img { width: 100%; height: 100%; display: grid; place-content: center; background:
  radial-gradient(circle at 30% 30%, rgba(143,209,79,.25), transparent 50%),
  radial-gradient(circle at 70% 70%, rgba(244,183,64,.15), transparent 50%);
}
.about__media-emoji { font-size: 9rem; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.about__media-icon { width: 100%; height: 100%; display: grid; place-content: center; font-size: 6rem; color: var(--c-accent); opacity: .7; }
/* Carousel */
.about__carousel { width: 100%; height: 100%; position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about__carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ease); }
.about__carousel-slide.is-active { opacity: 1; }
.about__carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.about__carousel-placeholder { width: 100%; height: 100%; display: grid; place-content: center; font-size: 6rem; color: var(--c-accent); opacity: .7; background: radial-gradient(circle at 30% 30%, rgba(143,209,79,.25), transparent 50%), radial-gradient(circle at 70% 70%, rgba(244,183,64,.15), transparent 50%); }
.about__carousel-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.about__carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.5); cursor: pointer; transition: background .3s; }
.about__carousel-dot.is-active { background: var(--c-accent); border-color: var(--c-accent); }
.about__badge {
  position: absolute; bottom: -24px; right: max(-24px, calc(-1 * (100vw - 100%) / 2));
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-2);
  text-align: right;
}
.about__badge strong { font-family: var(--font-display); font-size: 2rem; color: var(--c-accent-2); display: block; line-height: 1; }
.about__badge span { font-size: 12px; color: var(--c-muted); }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
.features li { display: flex; gap: 14px; align-items: flex-start; }
.features__icon { font-size: 1.3rem; flex-shrink: 0; color: var(--c-accent); width: 36px; text-align: center; }
.features strong { font-size: 1rem; }
.features p { font-size: .9rem; color: var(--c-muted); margin-top: 4px; }

.about__service-areas { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.about__service-areas span { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--c-muted); }
.about__service-areas ul { display: flex; flex-wrap: wrap; gap: 8px; }
.about__service-areas li {
  font-size: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(143,209,79,.08); border: 1px solid var(--c-line); color: var(--c-text);
}

/* ---------- SERVICES ---------- */
.services { background: var(--c-bg-2); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(143,209,79,.35); box-shadow: var(--shadow-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-content: center;
  font-size: 1.6rem; background: linear-gradient(135deg, rgba(143,209,79,.18), rgba(143,209,79,.06));
  color: var(--c-accent); margin-bottom: 18px;
  transition: transform .4s var(--ease), background .4s;
}
.service-card:hover .service-card__icon { background: linear-gradient(135deg, rgba(143,209,79,.3), rgba(143,209,79,.12)); transform: rotate(-6deg) scale(1.08); }
.service-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 10px; }
.service-card__desc { color: var(--c-muted); font-size: .95rem; margin-bottom: 12px; }
.service-card__areas { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 18px; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--c-accent); }
.service-card__link svg { transition: transform .3s var(--ease); }
.service-card__link:hover svg { transform: translateX(4px); }

/* ---------- PROCESS ---------- */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; position: relative; }
.process__icon { font-size: 2rem; color: var(--c-accent); margin-bottom: 12px; }
.process__step {
  position: relative; padding: 32px 24px; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--c-surface), transparent);
  border: 1px solid var(--c-line);
}
.process__step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -18px; width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
}
.process__num {
  font-family: var(--font-display); font-weight: 900; font-size: 2.6rem;
  background: linear-gradient(120deg, var(--c-accent), var(--c-accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1; margin-bottom: 14px;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process__step p { color: var(--c-muted); font-size: .9rem; }

/* ---------- WORK / GALLERY ---------- */
.work { background: var(--c-bg-2); }
.work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.work__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1/1; cursor: pointer;
  border: 1px solid var(--c-line);
}
.work__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.work__item:hover img { transform: scale(1.08); }
.work__item:nth-child(1), .work__item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }
.work__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(transparent, rgba(6,20,12,.9));
  color: var(--c-text); font-size: 13px; font-weight: 500;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.work__item:hover figcaption { transform: translateY(0); }
.work__placeholder { width: 100%; height: 100%; display: grid; place-content: center; font-size: 3rem; background: var(--c-surface); }
.work__note { text-align: center; margin-top: 48px; max-width: 640px; margin-inline: auto; color: var(--c-muted); }

/* ---------- REVIEWS ---------- */
.reviews__source { margin-top: -6px; color: var(--c-muted); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.review-card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  position: relative; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(143,209,79,.35); box-shadow: var(--shadow-2); }
.review-card--hidden { display: none; }
.review-card--hidden.is-visible { display: flex; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; }\n.review-card__badge { color: #4285f4; font-size: 16px; margin-left: auto; }
.review-card__stars { color: var(--c-accent-2); font-size: 13px; display: flex; gap: 1px; }
.review-card__body { font-size: .9rem; line-height: 1.6; color: var(--c-text); flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__author a { color: inherit; text-decoration: none; }
.review-card__author a:hover { color: var(--c-accent); }
.review-card__avatar,
.review-card__photo {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex: 0 0 36px;
}
.review-card__avatar {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2)); color: #06140c;
  font-weight: 700; font-family: var(--font-display); font-size: 14px;
}
.review-card__photo { object-fit: cover; background: rgba(255,255,255,.08); }
.review-card__author strong { display: block; font-size: .88rem; }
.review-card__author small { color: var(--c-muted); font-size: 11px; }
.reviews__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center; margin-top: 40px; }

/* ---------- STATS BAND ---------- */
.stats-band {
  background:
    radial-gradient(circle at 20% 50%, rgba(143,209,79,.12), transparent 50%),
    var(--c-deep);
  border-block: 1px solid var(--c-line);
}
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stats-band__item strong {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1; display: block;
  background: linear-gradient(120deg, var(--c-accent), var(--c-accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats-band__item span { color: var(--c-muted); font-size: 14px; }

/* ---------- BLOG ---------- */
.blog { background: var(--c-bg-2); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 28px; transition: transform .35s var(--ease), border-color .35s;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(143,209,79,.3); }
.blog-card__date { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-accent); }
.blog-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 12px 0; line-height: 1.25; }
.blog-card p { color: var(--c-muted); font-size: .92rem; margin-bottom: 16px; }
.blog-card__link { font-weight: 600; color: var(--c-accent); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .3s;
}
.faq__item[open] { border-color: rgba(143,209,79,.35); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { color: var(--c-accent); font-size: 14px; transition: transform .3s var(--ease); }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__item[open] .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 22px 22px; color: var(--c-muted); font-size: .95rem; }

/* ---------- CONTACT ---------- */
.contact { background: var(--c-bg-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.contact__list li { display: flex; gap: 14px; align-items: center; }
.contact__list span:first-child { font-size: 1.4rem; }
.contact__list strong { display: block; font-size: .85rem; color: var(--c-muted); font-weight: 500; }
.contact__list a, .contact__list span:last-child { color: var(--c-text); font-weight: 500; }
.contact__list a:hover { color: var(--c-accent); }

.contact__form {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-2);
}
.contact__form h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: .05em; color: var(--c-muted); margin-bottom: 6px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--c-bg); border: 1px solid var(--c-line); color: var(--c-text);
  font: inherit; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(143,209,79,.18);
}
.field textarea { resize: vertical; }
.contact__form-note { margin-top: 14px; font-size: 14px; min-height: 20px; color: var(--c-accent); font-weight: 500; }
.contact__form-note.is-error { color: var(--c-accent-3); }
.contact__form-disclaimer { font-size: 11px; color: var(--c-muted); margin-top: 8px; }

/* Anti-spam honeypot — invisible to humans, irresistible to bots */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.hp-field input { pointer-events: none; tab-index: -1; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--c-deep); padding-top: 72px; border-top: 1px solid var(--c-line); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer__about p { color: var(--c-muted); font-size: .92rem; margin: 18px 0; max-width: 380px; }
.site-footer__rating { font-size: 13px; color: var(--c-muted); }
.site-footer__rating .stars { color: var(--c-accent-2); letter-spacing: 2px; }
.site-footer__col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 16px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: var(--c-muted); font-size: .92rem; transition: color .25s; }
.site-footer__col a:hover { color: var(--c-accent); }
.site-footer__col .btn { margin-top: 14px; }
.site-footer__bar { border-top: 1px solid var(--c-line); padding: 22px 0; }
.site-footer__bar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 100%; }
.site-footer__bar p { font-size: 12px; color: var(--c-muted); word-break: break-word; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about__grid, .contact__grid, .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media-frame { aspect-ratio: 16/10; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2)::after { display: none; }
  .work__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(85vw, 360px); background: var(--c-bg-2);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px;
    padding: 60px 32px; transform: translateX(100%); transition: transform .4s var(--ease);
    border-left: 1px solid var(--c-line); box-shadow: var(--shadow-2);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 18px; }
  .nav-toggle { display: block; z-index: 101; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .features { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  /* Mobile horizontal carousels — swipe left/right for all card grids */
  .services__grid,
  .reviews__grid,
  .blog__grid,
  .process__steps,
  .work__grid,
  .related-services .services__grid {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    gap: 14px; padding-bottom: 6px;
    scrollbar-width: none; -ms-overflow-style: none;
    width: 100%; max-width: 100%;
  }
  .services__grid::-webkit-scrollbar,
  .reviews__grid::-webkit-scrollbar,
  .blog__grid::-webkit-scrollbar,
  .process__steps::-webkit-scrollbar,
  .work__grid::-webkit-scrollbar { display: none; }
  .service-card,
  .review-card,
  .blog-card,
  .process__step,
  .work__item { flex: 0 0 82%; scroll-snap-align: start; }
  .work__item:nth-child(1), .work__item:nth-child(6) { flex: 0 0 82%; grid-column: auto; }
  .work__item { aspect-ratio: 4/3; }
  .process__step:not(:last-child)::after { display: none; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__badge { right: 16px; bottom: -16px; padding: 14px 18px; }
  .service-intro__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .service-card,
  .review-card,
  .blog-card,
  .process__step,
  .work__item { flex: 0 0 87%; }
  .contact__form { padding: 24px; }
}

/* ---------- UX: Trust signal ---------- */
.hero__trust { font-size: 13px; color: var(--c-muted); margin-top: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hero__trust i { color: var(--c-accent); font-size: 12px; }

/* ---------- UX: Service card glow ---------- */
.service-card:hover { transform: translateY(-6px); border-color: rgba(143,209,79,.5); box-shadow: 0 0 40px rgba(143,209,79,.12), var(--shadow-2); }

/* ---------- UX: Review scroll indicator ---------- */
.reviews__grid { position: relative; }
@media (max-width: 768px) {
  .reviews__grid::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 32px; height: 48px; border-radius: 8px 0 0 8px;
    background: linear-gradient(90deg, transparent, rgba(10,31,18,.7));
    pointer-events: none; z-index: 2;
  }
}

/* ---------- UX: Back-to-top button ---------- */
.back-to-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 200;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-accent); color: #06140c;
  display: grid; place-content: center; font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(143,209,79,.4); }

/* ---------- UX: Mobile sticky CTA bar ---------- */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  padding: 10px 16px; gap: 10px;
  background: rgba(10,31,18,.95); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line); box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.mobile-cta__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 16px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.mobile-cta__btn--call { background: var(--c-surface); color: var(--c-text); border: 1px solid var(--c-line); }
.mobile-cta__btn--quote { background: var(--c-accent); color: #06140c; }
.mobile-cta__btn:active { transform: scale(.96); }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  .back-to-top { bottom: 100px; }
  .site-footer { padding-bottom: 90px; }
}
.service-hero {
  min-height: 50vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(1000px 500px at 70% 20%, rgba(143,209,79,.1), transparent 60%),
              radial-gradient(800px 400px at 20% 80%, rgba(244,183,64,.06), transparent 60%),
              var(--c-bg);
  padding: clamp(90px, 10vh, 130px) 0 clamp(40px, 5vh, 70px);
}
.service-hero__content { position: relative; z-index: 2; max-width: 900px; }

/* ==========================================================================
   Engagement Widget — Floating help button, exit modal, toast, form
   ========================================================================== */

/* ── Floating help bubble ─────────────────────────────────────────────── */
.engagement-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.engagement-bubble.is-loaded {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* Toggle button (circular, always visible when collapsed) */
.engagement-bubble__toggle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-surface);
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 18px;
  display: grid; place-content: center;
  box-shadow: 0 4px 24px rgba(143,209,79,.2), var(--shadow-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  position: relative;
}
.engagement-bubble__toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(143,209,79,.35), var(--shadow-2);
}
.engagement-bubble__toggle:active { transform: scale(.95); }

/* Pulse ring animation */
.engagement-bubble__toggle::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--c-accent); opacity: 0;
  animation: engagementPulse 2.5s ease-out infinite;
}
@keyframes engagementPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Attention bounce (time-on-page prompt) */
.engagement-bubble.is-attention .engagement-bubble__toggle {
  animation: engagementBounce .6s ease-in-out 3;
}
@keyframes engagementBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-5px); }
}

/* Hide toggle when panel is open */
.engagement-bubble.is-open .engagement-bubble__toggle {
  opacity: 0; visibility: hidden; pointer-events: none;
}

/* ── Slim panel ────────────────────────────────────────────────────── */
.engagement-panel {
  position: absolute; bottom: 60px; right: 0;
  width: 270px; max-width: calc(100vw - 40px);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(12px) scale(.95);
  transform-origin: bottom right;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.engagement-bubble.is-open .engagement-panel {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}

.engagement-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-line);
}
.engagement-panel__title {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--c-text);
}
.engagement-panel__close {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-content: center;
  color: var(--c-muted); font-size: 12px;
  transition: color .2s, background .2s;
}
.engagement-panel__close:hover { color: var(--c-text); background: rgba(255,255,255,.08); }

.engagement-panel__body { padding: 12px 14px 14px; }

.engagement-panel__actions {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 10px;
}

.engagement-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-align: left; text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer; border: none;
}
.engagement-btn:active { transform: scale(.97); }

.engagement-btn--call {
  background: var(--c-accent); color: #06140c;
}
.engagement-btn--call:hover { box-shadow: 0 4px 20px rgba(143,209,79,.35); }
.engagement-btn--call i { font-size: 16px; flex-shrink: 0; }

.engagement-btn--text {
  background: var(--c-surface-2); color: var(--c-text);
  border: 1px solid var(--c-line);
}
.engagement-btn--text:hover { background: var(--c-bg-2); }
.engagement-btn--text i { font-size: 14px; flex-shrink: 0; color: var(--c-accent); }

.engagement-btn small { display: block; font-weight: 400; font-size: 11px; color: inherit; opacity: .75; }

.engagement-btn--submit {
  background: var(--c-accent); color: #06140c;
  justify-content: center; text-align: center;
  padding: 10px 14px; margin-top: 2px;
}
.engagement-btn--submit:hover { box-shadow: 0 4px 20px rgba(143,209,79,.3); }
.engagement-btn--submit:disabled { opacity: .6; pointer-events: none; }

.engagement-panel__divider {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 0; color: var(--c-muted); font-size: 11px;
}
.engagement-panel__divider::before, .engagement-panel__divider::after {
  content: ""; flex: 1; height: 1px; background: var(--c-line);
}

.engagement-form { position: relative; }
.engagement-form__input {
  width: 100%; padding: 8px 12px; margin-bottom: 6px;
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: 8px; color: var(--c-text);
  font-family: var(--font-body); font-size: 13px;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.engagement-form__input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(143,209,79,.15);
}
.engagement-form__input::placeholder { color: var(--c-muted); opacity: .7; }
.engagement-form__textarea { resize: vertical; min-height: 52px; }
.engagement-form__note {
  margin-top: 6px; font-size: 12px; text-align: center;
  color: var(--c-muted); min-height: 18px;
}
.engagement-form__note.is-error { color: var(--c-accent-3); }

/* ── Exit-intent modal ────────────────────────────────────────────────── */
.engagement-exit-modal {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.engagement-exit-modal.is-visible {
  opacity: 1; visibility: visible;
}

.engagement-exit-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(6,20,12,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.engagement-exit-modal__card {
  position: relative; z-index: 1;
  width: 100%; max-width: 480px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-2);
  text-align: center;
  transform: translateY(20px) scale(.96);
  transition: transform .35s var(--ease);
}
.engagement-exit-modal.is-visible .engagement-exit-modal__card {
  transform: translateY(0) scale(1);
}

.engagement-exit-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-content: center;
  color: var(--c-muted); font-size: 16px;
  transition: color .2s, background .2s;
}
.engagement-exit-modal__close:hover { color: var(--c-text); background: rgba(255,255,255,.06); }

.engagement-exit-modal__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(143,209,79,.12);
  display: grid; place-content: center;
  margin: 0 auto 18px;
  font-size: 28px; color: var(--c-accent);
}

.engagement-exit-modal__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 4vw, 24px);
  line-height: 1.3; margin-bottom: 12px;
}

.engagement-exit-modal__body {
  font-size: 15px; line-height: 1.65;
  color: var(--c-muted);
  margin-bottom: 18px;
}

.engagement-exit-modal__emergency {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,122,69,.12);
  color: var(--c-accent-3);
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.engagement-exit-modal__emergency i { font-size: 12px; }

.engagement-exit-modal__actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.engagement-exit-modal__btn {
  width: 100%; justify-content: center; gap: 8px;
}

.engagement-exit-modal__dismiss {
  font-size: 13px; color: var(--c-muted);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.engagement-exit-modal__dismiss:hover { color: var(--c-text); }

/* ── Scroll-depth toast ───────────────────────────────────────────────── */
.engagement-toast {
  position: fixed; bottom: 96px; right: 24px; z-index: 9998;
  width: 280px; max-width: calc(100vw - 48px);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden;
  transform: translateX(20px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.engagement-toast.is-visible {
  opacity: 1; visibility: visible;
  transform: translateX(0);
}

.engagement-toast__text {
  font-size: 14px; line-height: 1.5;
  color: var(--c-muted);
  margin-bottom: 12px;
}

.engagement-toast__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--c-accent);
  transition: gap .2s;
}
.engagement-toast__btn:hover { gap: 10px; }

/* ── Responsive adjustments ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .engagement-bubble {
    bottom: 80px;
  }
  .engagement-panel {
    width: 260px; right: -8px;
  }
  .engagement-toast {
    bottom: 152px;
  }
  .engagement-exit-modal__card {
    padding: 28px 20px 22px;
  }
}

@media (max-width: 480px) {
  .engagement-bubble {
    bottom: 76px; right: 12px;
  }
  .engagement-bubble__toggle {
    width: 44px; height: 44px; font-size: 17px;
  }
  .engagement-panel {
    width: 250px; right: -6px;
  }
}
.service-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: 1.05;
  margin-bottom: 18px;
}
.service-hero__subtitle { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--c-muted); max-width: 560px; margin-bottom: 28px; }
.breadcrumbs { font-size: 13px; color: var(--c-muted); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.breadcrumbs a { color: var(--c-accent); }
.breadcrumbs a:hover { text-decoration: underline; }

/* Service intro grid */
.service-intro__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.service-intro__bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.service-intro__bullets li { display: flex; gap: 10px; align-items: baseline; }
.service-intro__bullets li i { color: var(--c-accent); font-size: 14px; flex-shrink: 0; margin-top: 4px; }
.service-intro__areas { margin-top: 24px; padding: 14px 18px; background: var(--c-surface); border-radius: var(--radius-sm); border: 1px solid var(--c-line); color: var(--c-muted); font-size: 14px; }
.service-intro__areas strong { color: var(--c-accent); }
.service-intro__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); }
.service-intro__media img { width: 100%; height: auto; display: block; }

/* Services page list */
.services-page { background: var(--c-bg-2); }
.service-card--link { text-decoration: none; color: inherit; display: flex; flex-direction: column; cursor: pointer; }

/* Service FAQ */
.service-faq { background: var(--c-bg-2); }

/* CTA band */
.cta-band { text-align: center; background: radial-gradient(circle at 50% 50%, rgba(143,209,79,.1), transparent 60%), var(--c-deep); border-block: 1px solid var(--c-line); }
.cta-band .container { display: flex; flex-direction: column; align-items: center; gap: 18px; }

/* Related services */
.related-services { background: var(--c-bg-2); }

@media (max-width: 768px) {
  .service-intro__grid { grid-template-columns: 1fr; }
}

/* Legal content pages */
.legal-content { background: var(--c-bg-2); }
.legal__body { max-width: 800px; margin: 0 auto; }
.legal__body h2 { font-family: var(--font-display); font-size: 1.4rem; margin: 32px 0 12px; color: var(--c-accent); }
.legal__body p { color: var(--c-muted); font-size: .98rem; line-height: 1.75; margin-bottom: 14px; }
.legal__body a { color: var(--c-accent); text-decoration: underline; }
.legal__body a:hover { color: var(--c-accent-2); }

/* Social feed */
.social-feed { background: var(--c-bg-2); }
.social-feed__grid { display: grid; grid-template-columns: minmax(0, 500px) 1fr; gap: 56px; align-items: start; }
.social-feed__plugin { display: flex; justify-content: center; }
.social-feed__plugin .fb-page { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); background: #fff; }
.social-feed__cta h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 14px; }
.social-feed__cta p { color: var(--c-muted); font-size: 1rem; margin-bottom: 20px; line-height: 1.7; }
.social-feed__highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.social-feed__highlights li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--c-text); }
.social-feed__highlights li i { color: var(--c-accent); font-size: 14px; width: 20px; text-align: center; }
@media (max-width: 768px) {
  .social-feed__grid { grid-template-columns: 1fr; gap: 32px; }
  .social-feed__plugin { max-width: 100%; overflow: hidden; }
  .social-feed__plugin .fb-page { max-width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .marquee__track { animation-duration: 40s !important; }
  .hero__floating-reviews, .hero__review-card { animation-duration: revert !important; transition-duration: 0.7s !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
