/* ==========================================================================
   Streamline Solar — styles.css
   Static site, no build step. Edit freely.
   ========================================================================== */

:root {
  /* Brand */
  --lime: #9cca3f;          /* brand green from the logo */
  --lime-bright: #b9e455;   /* hover / glow */
  --lime-deep: #5f8c17;     /* readable green on light backgrounds */
  --lime-ink: #2f4a08;

  /* Neutrals */
  --ink: #0a0d10;
  --ink-2: #12171d;
  --ink-3: #1b222a;
  --ink-4: #263039;
  --paper: #f7f8f4;
  --paper-2: #eef0e9;
  --white: #ffffff;

  --text: #14181d;
  --muted: #5b6470;
  --line: rgba(20, 24, 29, 0.1);
  --on-dark: rgba(255, 255, 255, 0.72);
  --line-dark: rgba(255, 255, 255, 0.1);

  /* Type */
  --font-display: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 128px);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 60px -20px rgba(10, 13, 16, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] { scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--lime); }

.h1 { font-size: clamp(40px, 6.4vw, 80px); }
.h2 { font-size: clamp(32px, 4.4vw, 54px); }
.h3 { font-size: clamp(22px, 2.2vw, 28px); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  max-width: 62ch;
}
.on-dark .lead { color: var(--on-dark); }

.section-head {
  display: grid;
  gap: 18px;
  max-width: 800px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head.split {
  max-width: none;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head.split { grid-template-columns: 1.2fr 1fr; gap: 48px; }
  .section-head.split .lead { margin-bottom: 8px; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--lime);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.btn:hover { background: var(--lime-bright); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(156, 202, 63, 0.7); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); box-shadow: none; }

.btn-dark {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
}
.btn-dark:hover { background: var(--ink-3); box-shadow: 0 12px 30px -14px rgba(10, 13, 16, 0.7); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line);
}
.btn-outline:hover { background: var(--white); border-color: var(--text); box-shadow: none; }

.btn-lg { padding: 18px 32px; font-size: 17px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--lime-deep);
}
.text-link svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
.on-dark .text-link { color: var(--lime); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(10, 13, 16, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  line-height: 1;
}
.brand-bolt { width: 34px; height: 34px; flex: none; }
.brand-text {
  display: grid;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transform: skewX(-8deg);
}
.brand-text .top { font-weight: 800; font-size: 22px; letter-spacing: 0.01em; }
.brand-text .sub { font-weight: 600; font-size: 11.5px; letter-spacing: 0.34em; color: var(--lime); margin-top: 3px; }

.nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.header-actions { display: none; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 12px;
}
.header-phone svg { width: 18px; height: 18px; color: var(--lime); }
.header-actions .btn { padding: 12px 22px; font-size: 15px; }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (min-width: 1000px) {
  .nav, .header-actions { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--white);
  padding: 110px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a.menu-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 8vw, 40px);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu .menu-cta { margin-top: auto; display: grid; gap: 12px; }
.mobile-menu .menu-cta .btn { width: 100%; }
body.menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  animation: hero-zoom 14s var(--ease) both;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.92) 0%, rgba(10, 13, 16, 0.72) 38%, rgba(10, 13, 16, 0.25) 70%, rgba(10, 13, 16, 0.1) 100%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.55) 0%, rgba(10, 13, 16, 0) 30%, rgba(10, 13, 16, 0.2) 70%, rgba(10, 13, 16, 0.9) 100%);
}
.hero .container {
  padding-top: 150px;
  padding-bottom: clamp(40px, 6vw, 72px);
  display: grid;
  gap: clamp(32px, 5vw, 56px);
}
.hero-copy { max-width: 780px; }
.hero-copy .eyebrow { color: var(--lime); }
.hero h1 { font-weight: 700; }
.hero h1 .accent {
  color: var(--lime);
  position: relative;
  white-space: nowrap;
}
.hero .lead { color: rgba(255, 255, 255, 0.78); margin-top: 22px; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.trust-item svg { width: 20px; height: 20px; color: var(--lime); flex: none; }
.trust-item .stars { color: #ffc531; letter-spacing: -1px; font-size: 15px; }

.scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.4; } }
@media (min-width: 1100px) { .scroll-hint { display: flex; } }

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */
.marquee {
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.6;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: var(--section) 0; }
.on-dark { background: var(--ink); color: var(--white); }
.on-paper { background: var(--paper); }
.on-white { background: var(--white); }

/* Services */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 30px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 202, 63, 0.35), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(156, 202, 63, 0.5); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--ink);
  color: var(--lime);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 24px; }
.service-card p { color: var(--muted); font-size: 16px; }
.service-card ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 15px;
}
.service-card li { display: flex; gap: 10px; align-items: flex-start; }
.service-card li svg { width: 18px; height: 18px; flex: none; color: var(--lime-deep); margin-top: 3px; }
.service-card .text-link { margin-top: auto; padding-top: 10px; }

/* Why / features (dark) */
.why-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 960px) { .why-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.why-sticky { position: sticky; top: 110px; }
.feature-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}
.feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--lime);
  padding-top: 4px;
}
.feature-list h3 { font-size: 22px; margin-bottom: 8px; }
.feature-list p { color: var(--on-dark); font-size: 16px; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: clamp(48px, 6vw, 80px);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}
.stat-value .unit { color: var(--lime); font-size: 0.6em; margin-left: 2px; }
.stat-label { margin-top: 10px; color: var(--on-dark); font-size: 14.5px; }

/* Process */
.process {
  display: grid;
  gap: 18px;
  counter-reset: step;
}
@media (min-width: 760px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--lime-deep);
}
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step-icon {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--paper-2);
  color: var(--ink);
}
.step-icon svg { width: 22px; height: 22px; }

/* About */
.about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; } }
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: rgba(10, 13, 16, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.about-badge .dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid; place-items: center;
}
.about-badge .dot svg { width: 18px; height: 18px; }
.about-copy p { color: var(--muted); }
.about-copy .h2 { margin-bottom: 20px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
}
.pill svg { width: 16px; height: 16px; color: var(--lime-deep); }

/* Benefits trio */
.benefits {
  display: grid;
  gap: 18px;
  margin-top: clamp(48px, 6vw, 72px);
}
@media (min-width: 760px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(156, 202, 63, 0.18);
  color: var(--lime-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 20px; margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 15.5px; }

/* Work gallery */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; } }
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink-3);
  border: 0;
  padding: 0;
  text-align: left;
  color: var(--white);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 16px;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(to top, rgba(10, 13, 16, 0.85), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: none; }
@media (hover: none) { .gallery-cap { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
}
.lightbox::backdrop { background: rgba(10, 13, 16, 0.92); backdrop-filter: blur(6px); }
.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 84vh;
  width: auto; height: auto;
  border-radius: 16px;
  margin: 0 auto;
}
.lightbox figcaption { color: var(--on-dark); text-align: center; margin-top: 14px; font-size: 14px; }
.lightbox-close {
  position: fixed;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: grid; place-items: center;
}
.lightbox-close svg { width: 20px; height: 20px; }

/* Testimonials */
.reviews {
  display: grid;
  gap: 18px;
}
@media (min-width: 760px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px;
  border-radius: var(--radius);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
}
.review .stars { color: #ffc531; font-size: 16px; letter-spacing: 2px; }
.review blockquote {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.review figcaption {
  margin-top: auto;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--on-dark);
}
.review .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.review figcaption strong { color: var(--white); display: block; font-weight: 600; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 500;
  justify-self: start;
}
.google-badge .g { width: 22px; height: 22px; }
.google-badge .stars { color: #ffc531; letter-spacing: 1px; }

/* FAQ */
.faq-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 960px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; gap: 80px; } }
.faq-list { display: grid; gap: 12px; }
.faq {
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.3s;
}
.faq[open] { border-color: rgba(156, 202, 63, 0.6); box-shadow: 0 10px 30px -18px rgba(10, 13, 16, 0.25); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-2);
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq summary .plus svg { width: 16px; height: 16px; }
.faq[open] summary .plus { transform: rotate(45deg); background: var(--lime); }
.faq-body { padding: 0 22px 22px; color: var(--muted); font-size: 16px; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; } }
.contact-info { display: grid; gap: 22px; }
.contact-info .h2 { margin-bottom: 6px; }
.contact-info p { color: var(--on-dark); }
.contact-list {
  list-style: none;
  padding: 0; margin: 8px 0 0;
  display: grid; gap: 14px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
}
.contact-list .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink-3);
  color: var(--lime);
  display: grid; place-items: center;
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list small { display: block; color: var(--on-dark); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-list a, .contact-list span.val { color: var(--white); font-weight: 500; font-size: 17px; }
.contact-list a:hover { color: var(--lime); }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.socials a:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.socials svg { width: 20px; height: 20px; }

.map-wrap {
  margin-top: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  aspect-ratio: 16 / 9;
  background: var(--ink-3);
  filter: saturate(0.6) contrast(1.05);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 620px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .form-grid .full { grid-column: 1 / -1; } }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6470' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(156, 202, 63, 0.25);
}
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
}
.form-foot small { color: var(--muted); font-size: 13px; max-width: 34ch; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  display: none;
}
.form-status.ok { display: block; background: rgba(156, 202, 63, 0.2); color: var(--lime-ink); }
.form-status.err { display: block; background: #fde8e8; color: #8a1c1c; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  right: -200px; top: -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 65%);
  pointer-events: none;
}
.cta-band .container {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) { .cta-band .container { grid-template-columns: 1.4fr auto; } }
.cta-band .h2 { max-width: 16ch; }
.cta-band p { color: rgba(10, 13, 16, 0.75); max-width: 52ch; margin-top: 12px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-outline { border-color: rgba(10, 13, 16, 0.35); }
.cta-band .btn-outline:hover { background: rgba(255, 255, 255, 0.5); border-color: var(--ink); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line-dark);
  font-size: 15px;
}
.footer-grid {
  display: grid;
  gap: 36px;
}
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; } }
.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--lime); }
.footer-brand p { max-width: 42ch; margin-top: 18px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 13.5px;
}
.footer-bottom a { color: var(--white); }
.footer-bottom a:hover { color: var(--lime); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Sticky mobile call bar */
.call-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(10, 13, 16, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.call-bar.is-visible { transform: none; }
.call-bar .btn { padding: 12px 14px; font-size: 14.5px; }
.call-bar .btn-ghost { border-color: transparent; }
@media (min-width: 1000px) { .call-bar { display: none; } }
@media (max-width: 999px) { body { padding-bottom: 76px; } }
