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

:root {
  --green:       #1a5c37;
  --green-mid:   #2e7d52;
  --green-light: #22c55e;
  --green-tint:  #e8f5ed;
  --forest:      #0f2e1c;
  --text:        #111c14;
  --muted:       #4d6355;
  --bg:          #ffffff;
  --surface:     #f4f7f5;
  --border:      #dde8e1;
  --gold:        #c4973a;
  --gold-tint:   #fdf6e7;
  --font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --r:           14px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; }

a { color: inherit; }

/* ── SKIP / SCROLL ────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--green); color: #fff;
  padding: 8px 16px; border-radius: 8px;
  font-size: .875rem; z-index: 99999; text-decoration: none;
}
.skip-link:focus { left: 8px; }

.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  z-index: 9999; transition: width .06s linear;
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  display: flex; align-items: center;
  padding: 0 clamp(1rem, 5vw, 3rem);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
#navbar.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.08); }

.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.logo-leaf { flex-shrink: 0; }
.logo-name {
  font-size: 1rem; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}

.nav-links {
  display: flex; gap: 1.75rem; margin: 0 auto;
}
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-end { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Language */
.lang-sw { display: flex; gap: 2px; }
.lbtn {
  padding: 5px 11px; border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font); font-size: .7rem; font-weight: 700;
  cursor: pointer; color: var(--muted);
  transition: all .18s; letter-spacing: .05em;
}
.lbtn.active, .lbtn:hover {
  background: var(--green); color: #fff; border-color: var(--green);
}

.nav-tel {
  font-size: .875rem; font-weight: 600; color: var(--text);
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-tel:hover { color: var(--green); }

.nav-cta {
  padding: 9px 20px; background: var(--green); color: #fff;
  border-radius: 50px; font-size: .85rem; font-weight: 600;
  text-decoration: none; white-space: nowrap; transition: all .2s;
}
.nav-cta:hover { background: var(--green-mid); box-shadow: 0 4px 14px rgba(26,92,55,.3); transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.burger span {
  width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .25s; display: block;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none; position: fixed;
  inset: 64px 0 0 0; z-index: 999;
  background: #fff; flex-direction: column;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-size: 1.05rem; font-weight: 500; color: var(--text);
  text-decoration: none; padding: .85rem 0;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mob-menu a:hover { color: var(--green); }
.mob-tel { font-weight: 700; color: var(--green) !important; }
.mob-menu .lang-sw { margin-top: 1.25rem; border-bottom: none; }

/* ═══════════════════════════════════
   HERO — split layout
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: url('hero-bg.jpg') center center / cover no-repeat;
}

/* Left — white overlay over photo */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-tint); border-radius: 50px;
  padding: 4px 13px; margin-bottom: 1.75rem;
  width: fit-content;
}

.hero-left h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -.03em; color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-left h1 em {
  color: var(--green); font-style: normal;
}

.hero-desc {
  font-size: 1.05rem; color: var(--muted);
  max-width: 440px; margin-bottom: 2rem;
  line-height: 1.7; font-weight: 400;
}

.hero-actions {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}

.btn-main {
  padding: 14px 28px; background: var(--green); color: #fff;
  border-radius: 12px; font-family: var(--font);
  font-size: .95rem; font-weight: 700;
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center;
}
.btn-main:hover { background: var(--green-mid); box-shadow: 0 8px 24px rgba(26,92,55,.28); transform: translateY(-1px); }

.btn-line {
  padding: 14px 24px; background: transparent; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 12px;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center;
}
.btn-line:hover { border-color: var(--green); color: var(--green); }

/* Hero social */
.hero-social {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero-social-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: .75rem;
}
.hero-social-icons { display: flex; flex-direction: row; flex-wrap: wrap; gap: .4rem; }
.hsoc {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem .8rem;
  border: 1px solid var(--border); border-radius: 10px;
  text-decoration: none; color: var(--text);
  font-size: .82rem; font-weight: 600;
  transition: all .2s; width: fit-content;
  background: var(--bg);
}
.hsoc svg { flex-shrink: 0; }
.hsoc:hover { transform: translateX(4px); }
.hsoc-ig:hover { border-color: #d6249f; color: #d6249f; background: #fdf0f8; }
.hsoc-fb:hover { border-color: #1877F2; color: #1877F2; background: #f0f5ff; }
.hsoc-tt:hover { border-color: #111;    color: #111;    background: #f4f4f4; }

/* Right — dark green with service list */
.hero-right {
  background: rgba(15, 46, 28, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  overflow: hidden;
}

.svc-list-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1.5rem;
}

.svc-list {
  list-style: none; display: flex; flex-direction: column; gap: 0;
}

.svc-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
  cursor: default;
}
.svc-row:first-child { border-top: 1px solid rgba(255,255,255,.07); }

.svc-n {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  color: var(--green-light); width: 22px; flex-shrink: 0; opacity: .7;
}
.svc-ico { font-size: 1.25rem; flex-shrink: 0; }
.svc-info { flex: 1; }
.svc-info strong {
  display: block; font-size: .95rem; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.svc-info span {
  display: block; font-size: .75rem; color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.svc-arr {
  color: rgba(255,255,255,.25); font-size: 1rem;
  text-decoration: none; flex-shrink: 0;
  transition: all .2s; padding: 4px 8px;
  border-radius: 8px;
}
.svc-row:hover .svc-arr {
  color: var(--green-light);
  background: rgba(255,255,255,.06);
  transform: translateX(3px);
}
.svc-row:hover .svc-info strong { color: var(--green-light); }

/* ═══════════════════════════════════
   HERO SLIDER
═══════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 60vh;
}
.hs-imgs {
  position: relative;
  width: 100%;
  height: 100%;
}
.hs-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: block;
}
.hs-img.active { opacity: 1; }
.hs-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hs-arr:hover { background: rgba(255,255,255,0.35); }
.hs-prev { left: 1rem; }
.hs-next { right: 1rem; }
.hs-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.hs-dot.active { background: #fff; transform: scale(1.25); }

/* ═══════════════════════════════════
   SECTION SHARED
═══════════════════════════════════ */
.services-sec,
.process-sec,
.reviews-sec,
.bottom-sec {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 6rem);
}

.sec-head { margin-bottom: 3rem; }

.tag {
  display: inline-block; padding: 4px 12px;
  background: var(--green-tint); color: var(--green);
  border-radius: 50px; font-size: .7rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: .9rem;
}

.sec-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--text); line-height: 1.15;
}
.sec-head p {
  margin-top: .5rem; font-size: 1rem;
  color: var(--muted); font-weight: 400;
}

.note {
  font-size: .72rem; color: var(--muted);
  margin-top: 1.5rem; font-style: italic; opacity: .65;
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services-sec { background: var(--surface); }

.svc-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.svc-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .25s;
  position: relative;
}
.svc-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  border-color: rgba(26,92,55,.25);
}

/* Green accent card */
.svc-block-green {
  background: var(--forest);
  border-color: transparent;
  color: #fff;
}
.svc-block-green h3 { color: #fff; }
.svc-block-green p { color: rgba(255,255,255,.6); }
.svc-block-green .sb-chips span {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
}
.svc-block-green .sb-link { color: var(--green-light); }
.svc-block-green .sb-link:hover { color: #fff; }

/* Solar accent */
.svc-block-solar {
  background: var(--gold-tint);
  border-color: rgba(196,151,58,.25);
}

.sb-num {
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  color: var(--green); opacity: .4; margin-bottom: .75rem;
}
.svc-block-green .sb-num { color: var(--green-light); }
.svc-block-solar .sb-num { color: var(--gold); }

.sb-top {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem;
}
.sb-ico { font-size: 1.6rem; flex-shrink: 0; }
.sb-body h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}
.sb-body p {
  font-size: .92rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 1rem;
}

.sb-chips {
  display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem;
}
.sb-chips span {
  padding: 3px 10px;
  background: var(--green-tint);
  border: 1px solid rgba(26,92,55,.1);
  border-radius: 50px; font-size: .72rem;
  font-weight: 600; color: var(--green);
}

.sb-link {
  font-size: .85rem; font-weight: 700;
  color: var(--green); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .2s, color .2s;
}
.sb-link:hover { gap: 8px; }

.solar-badge {
  display: flex; align-items: baseline; gap: .5rem;
  margin: .5rem 0 1rem;
}
.solar-num {
  font-size: 2.4rem; font-weight: 800;
  color: var(--gold); letter-spacing: -.03em; line-height: 1;
}
.solar-badge span { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* ── FORM BLOCK inside services grid ── */
.svc-form-block {
  grid-column: span 2;
}
@media (max-width: 680px) {
  .svc-form-block { grid-column: span 1; } /* на узких экранах где 1 колонка — не растягиваем */
}

#formFields, .form-ok {
  margin-top: .25rem;
}
.fg {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1rem;
}
.fg label {
  font-size: .82rem; font-weight: 700; color: var(--text);
}
.fg input, .fg select, .fg textarea {
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--r) - 6px);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s var(--ease);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
}
.fg textarea {
  min-height: 100px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

#formBtn {
  width: 100%;
  padding: .95rem 1.5rem;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: calc(var(--r) - 6px);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
#formBtn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.form-ok {
  display: none;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--green-tint);
  border-radius: calc(var(--r) - 6px);
}
.form-ok span { font-size: 1.3rem; }
.form-ok b {
  display: block;
  color: var(--text);
  font-size: .95rem;
}
.form-ok p {
  margin: .2rem 0 0;
  font-size: .85rem;
  color: var(--muted);
}

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.process-sec { background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.step {
  padding: 1.75rem;
  background: #fff;
  transition: background .25s;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: .6rem;
}
.step:hover { background: var(--green-tint); }

.step-num {
  grid-column: 1 / -1;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  color: var(--green); margin-bottom: .65rem;
}
.step-ico {
  grid-column: 1; grid-row: 2;
  font-size: 1.4rem; line-height: 1;
  align-self: center;
}
.step h4 {
  grid-column: 2; grid-row: 2;
  font-size: 1rem; font-weight: 700; color: var(--text);
  letter-spacing: -.01em; align-self: center;
}
.step p {
  grid-column: 1 / -1; grid-row: 3;
  font-size: .85rem; color: var(--muted); line-height: 1.65;
  margin-top: .5rem;
}

/* ═══════════════════════════════════
   REVIEWS
═══════════════════════════════════ */
.reviews-sec { background: var(--surface); }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1rem;
}

.rev-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.07); }

.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: .9rem; }
.rev-card p {
  font-size: .95rem; color: var(--muted); line-height: 1.75;
  font-style: italic; flex: 1; margin-bottom: 1.25rem;
}
.rev-who { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; flex-shrink: 0;
}
.rev-who b { display: block; font-size: .9rem; color: var(--text); font-weight: 700; }
.rev-who span { font-size: .75rem; color: var(--muted); }

/* ═══════════════════════════════════
   GUARANTEE STRIP
═══════════════════════════════════ */
.guar-strip {
  background: var(--forest);
  padding: 3rem clamp(1.5rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.guar-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.guar-ico { font-size: 1.75rem; flex-shrink: 0; margin-top: 2px; }
.guar-item b {
  display: block; font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.3;
}
.guar-item span { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 2px; display: block; }

/* ═══════════════════════════════════
   BOTTOM — FAQ + CONTACT
═══════════════════════════════════ */
.bottom-sec {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* FAQ */
.faq-col h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--text); margin-bottom: 2rem; line-height: 1.15;
}

.faqs { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  color: var(--text); transition: color .2s; min-height: 44px;
}
.faq-q:hover { color: var(--green); }

.fq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--surface); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--green); font-weight: 400;
  transition: transform .3s var(--ease), background .2s;
}
.faq-item.open .fq-icon {
  transform: rotate(45deg);
  background: var(--green); color: #fff;
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1rem; }

/* Contact */
.contact-col h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--text); margin-bottom: .5rem; line-height: 1.15;
}
.contact-col > p {
  font-size: .95rem; color: var(--muted); margin-bottom: 1.5rem;
}

.con-chips {
  display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem;
}
.con-chip {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; text-decoration: none; color: var(--text);
  font-size: .88rem; font-weight: 500; transition: all .2s;
}
.con-chip:hover { border-color: var(--green); background: var(--green-tint); }
.con-chip span:first-child { font-size: 1.1rem; }

/* Form */
.fg { margin-bottom: 1rem; }
.fg label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--text); margin-bottom: 5px; letter-spacing: .02em;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%; padding: 11px 13px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; font-family: var(--font); font-size: .9rem;
  color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,92,55,.1);
}
.fg textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

#formBtn {
  width: 100%; padding: 13px;
  background: var(--green); color: #fff;
  border: none; border-radius: 10px;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all .2s; margin-top: .1rem;
}
#formBtn:hover { background: var(--green-mid); box-shadow: 0 6px 20px rgba(26,92,55,.28); transform: translateY(-1px); }
#formBtn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.form-ok {
  display: none; align-items: center; gap: 1rem;
  padding: 1.5rem; background: var(--green-tint);
  border: 1px solid rgba(26,92,55,.2); border-radius: 10px;
}
.form-ok.show { display: flex; }
.form-ok span { font-size: 2rem; flex-shrink: 0; }
.form-ok b { font-size: 1rem; font-weight: 700; color: var(--text); display: block; }
.form-ok p { font-size: .85rem; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════
   PORTFOLIO CAROUSEL
═══════════════════════════════════ */
.portfolio-sec {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 6rem);
}

.portfolio-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.pc-viewport {
  overflow: hidden;
  flex: 1;
}

.pc-track {
  display: flex;
  gap: 1rem;
  transition: transform .45s var(--ease);
}

.pc-item {
  flex: 0 0 calc(25% - .75rem);
  border-radius: var(--r);
  overflow: hidden;
}

.pc-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.pc-arr {
  display: none;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text);
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
}
.pc-arr:hover { background: var(--green); color: #fff; border-color: var(--green); }
.pc-prev { left: .6rem; }
.pc-next { right: .6rem; }

@media (max-width: 640px) {
  .pc-track { gap: 0; }
  .pc-item  { flex: 0 0 100%; }
  .pc-arr   { display: flex; }
}

/* ═══════════════════════════════════
   SCRATCH TEASER
═══════════════════════════════════ */
.scratch-teaser {
  background: linear-gradient(135deg, var(--forest) 0%, var(--green-mid) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 8vw, 6rem);
  text-align: center;
}
.st-content { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.st-emoji   { font-size: 3rem; line-height: 1; animation: stFloat 3s ease-in-out infinite; }
@keyframes stFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.st-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800;
  color: #fff; letter-spacing: -.02em; line-height: 1.15;
}
.st-sub { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 420px; line-height: 1.65; }
.st-btn {
  margin-top: .5rem; padding: 14px 34px;
  background: #fff; color: var(--green);
  border: none; border-radius: 50px;
  font-family: var(--font); font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.st-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.28); }

/* ═══════════════════════════════════
   SCRATCH OVERLAY
═══════════════════════════════════ */
.so-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,46,28,.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.so-overlay.open { display: flex; }

.so-card {
  background: #fff; border-radius: 24px;
  padding: 2rem; max-width: 500px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  max-height: 90vh; overflow-y: auto;
}
.so-close {
  position: absolute; top: .9rem; right: .9rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: none;
  font-size: .95rem; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.so-close:hover { background: var(--green); color: #fff; }

.so-logo { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 1rem; }
.so-logo b { font-size: .9rem; font-weight: 700; color: var(--text); }
.so-title { font-size: 1.5rem; font-weight: 800; color: var(--forest); margin-bottom: .3rem; letter-spacing: -.02em; }
.so-sub   { font-size: .85rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.5; }

/* Scratch canvas area */
.sc-wrap {
  position: relative; border-radius: 14px; overflow: hidden;
  touch-action: none; user-select: none; -webkit-user-select: none;
  cursor: none; box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.sc-clean-img { display: block; width: 100%; height: auto; pointer-events: none; }
#scCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Hint pulse */
.sc-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 2; transition: opacity .4s;
}
.sc-hint span {
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  border-radius: 50px; padding: .5rem 1.1rem;
  font-size: .82rem; font-weight: 700; color: var(--forest);
  animation: scHintPulse 1.8s ease-in-out infinite;
}
@keyframes scHintPulse { 0%,100%{transform:scale(1);opacity:.9;} 50%{transform:scale(1.06);opacity:1;} }

/* Progress */
.sc-progress-wrap { margin-top: .8rem; }
.sc-progress-bar  { height: 6px; background: #e5e7eb; border-radius: 99px; overflow: hidden; }
.sc-progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  border-radius: 99px; transition: width .25s ease;
}
.sc-progress-label { font-size: .75rem; color: var(--muted); margin-top: .35rem; }

/* Result modal */
.so-result {
  position: fixed; inset: 0; z-index: 2100;
  background: rgba(15,46,28,.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.so-result.show { display: flex; }
.so-result-card {
  background: #fff; border-radius: 24px;
  padding: 2.5rem 2rem; text-align: center;
  max-width: 360px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  animation: popIn .5s cubic-bezier(.22,1,.36,1) both;
}
@keyframes popIn { from{transform:scale(.6) translateY(20px);opacity:0;} to{transform:scale(1) translateY(0);opacity:1;} }

.sc-ring {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 12px 40px rgba(34,197,94,.45);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.sc-disc-num { font-size: 2.2rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.sc-disc-num small { font-size: 1.1rem; font-weight: 700; }
.so-result-card h2 { font-size: 1.35rem; font-weight: 800; color: var(--forest); margin-bottom: .4rem; }
.so-result-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }

.sc-code-row {
  display: flex; align-items: center; gap: .5rem;
  background: var(--surface); border-radius: 10px;
  padding: .75rem 1rem; margin-bottom: 1rem;
}
.sc-code-val { flex: 1; font-size: 1rem; font-weight: 800; color: var(--forest); letter-spacing: .12em; text-align: left; }
.sc-copy-btn {
  background: var(--green); color: #fff; border: none;
  border-radius: 8px; padding: 7px 14px;
  font-family: var(--font); font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.sc-copy-btn:hover { background: var(--green-mid); }

.sc-cta {
  display: block; width: 100%;
  background: var(--green); color: #fff; border: none;
  border-radius: 12px; padding: 13px; margin-bottom: .75rem;
  font-family: var(--font); font-size: .92rem; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.sc-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.sc-dismiss {
  background: none; border: none; color: var(--muted);
  font-family: var(--font); font-size: .8rem; cursor: pointer;
  text-decoration: underline; padding: 0;
}

/* Kärcher cursor */
#scCursorEl {
  position: fixed; pointer-events: none; z-index: 3000;
  width: 90px; transform: translate(-25%,-80%); display: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}

/* Confetti */
.sc-confetti {
  position: fixed; top: -10px; pointer-events: none; z-index: 2999;
  border-radius: 2px; animation: scFall linear forwards;
}
@keyframes scFall { to { transform: translateY(110vh) rotate(720deg); opacity: 0; } }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--forest); color: #fff;
  padding: 2.25rem clamp(1.5rem, 8vw, 6rem) 1.5rem;
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand {
  display: flex; align-items: center; gap: 9px;
}
.foot-brand b { display: block; font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.8); }
.foot-brand span { font-size: .72rem; color: rgba(255,255,255,.3); display: block; margin-top: 1px; }

.foot-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-nav a {
  font-size: .82rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s;
}
.foot-nav a:hover { color: rgba(255,255,255,.75); }

.foot-social { display: flex; gap: .5rem; }
.foot-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.55); transition: all .25s;
}
.foot-social a:hover { transform: translateY(-3px); color: #fff; }
.soc-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.soc-facebook:hover  { background: #1877F2; }
.soc-tiktok:hover    { background: #111; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }

.foot-copy {
  padding-top: 1.25rem; font-size: .72rem; color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════
   FLOATING + MOBILE BAR
═══════════════════════════════════ */
.fcta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  background: var(--green); color: #fff;
  padding: 12px 20px; border-radius: 50px;
  font-family: var(--font); font-weight: 700; font-size: .85rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(26,92,55,.35);
  transition: all .3s var(--ease);
  opacity: 0; transform: translateY(16px); pointer-events: none;
}
.fcta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fcta:hover { background: var(--green-mid); transform: translateY(-2px); }

.mbar {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 500;
  background: #fff; border-top: 1px solid var(--border);
  padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mbar a {
  flex: 1; padding: 11px 8px; border-radius: 10px;
  text-align: center; font-family: var(--font); font-size: .85rem;
  font-weight: 700; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: opacity .15s;
}
.mbar a:active { opacity: .75; }
.mbar-call { background: var(--green); color: #fff; }
.mbar-wa   { background: #25D366; color: #fff; }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
 /* .hero-right { padding: 2.5rem 1.5rem 3rem; } */
  .bottom-sec { grid-template-columns: 1fr; gap: 3.5rem; }
  .nav-links { display: none; }
  .nav-tel { display: none; }
  .nav-end { margin-left: auto; }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
  .burger { display: flex; }
  /* nav-end pushed right by margin-left:auto on burger's parent gap */
}

@media (max-width: 640px) {
  .hero-left h1 { font-size: 2.4rem; }
  .svc-blocks { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .fcta { display: none !important; }
  .mbar { display: flex; }
  footer { padding-bottom: calc(1.5rem + 68px + env(safe-area-inset-bottom)); }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .guar-strip { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 400px) {
  .hero-left h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-main, .btn-line { text-align: center; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   SERVICE PRICE BADGE
═══════════════════════════════════ */
.sb-top { flex-wrap: wrap; }
.sb-top h3 { flex: 1 1 auto; }
.sb-price {
  margin-left: auto; align-self: center;
  background: var(--green-tint); color: var(--green);
  border: 1px solid rgba(26,92,55,.15);
  border-radius: 50px; padding: 5px 13px;
  font-size: .78rem; font-weight: 800; white-space: nowrap;
}
.svc-block-solar .sb-price { background: #fff; color: var(--gold); border-color: rgba(196,151,58,.3); }

/* ═══════════════════════════════════
   CENIK / PRICE TABLE
═══════════════════════════════════ */
.price-sec {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 6rem);
}
.price-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--r);
  background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
table.cenik { width: 100%; border-collapse: collapse; min-width: 560px; }
.cenik thead th {
  background: var(--forest); color: #fff; text-align: left;
  padding: 1rem 1.25rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.cenik thead th:last-child { text-align: right; }
.cenik tbody td {
  padding: 1rem 1.25rem; border-top: 1px solid var(--border);
  font-size: .92rem; color: var(--muted); vertical-align: top; line-height: 1.55;
}
.cenik tbody td:first-child { font-weight: 700; color: var(--text); white-space: nowrap; }
.cenik tbody td:last-child {
  font-weight: 800; color: var(--green); white-space: nowrap; text-align: right;
}
.cenik tbody tr { transition: background .18s; }
.cenik tbody tr:hover { background: var(--green-tint); }

.price-notes { margin-top: 1.25rem; font-size: .82rem; color: var(--muted); line-height: 1.7; }
.price-notes b { color: var(--text); }
.price-notes p + p { margin-top: .2rem; }

/* ═══════════════════════════════════
   WHY US
═══════════════════════════════════ */
.why-sec {
  background: var(--surface);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 6rem);
}
.why-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 2.5rem;
}
.wf {
  padding: 1.6rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .25s;
}
.wf:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); border-color: rgba(26,92,55,.25); }
.wf-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-tint); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.wf h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; letter-spacing: -.01em; }
.wf p  { font-size: .88rem; color: var(--muted); line-height: 1.6; }

.why-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .85rem 1.5rem;
}
.why-li { display: flex; align-items: center; gap: .65rem; font-size: .95rem; font-weight: 500; color: var(--text); }
.why-li .chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; flex-shrink: 0;
}

/* ═══════════════════════════════════
   GALLERY (before / after)
═══════════════════════════════════ */
.gallery-sec {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 6rem);
}
.gal-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.25rem;
}
.gal-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.09); }
.gph {
  position: relative; aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3ef 0%, #dde8e1 100%);
}
.gph-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.gal-cap {
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .55rem;
  font-size: .92rem; font-weight: 700; color: var(--text);
}
.gal-dot { font-size: 1.05rem; }

/* ═══════════════════════════════════
   RESPONSIVE — new sections
═══════════════════════════════════ */
@media (max-width: 640px) {
  .gal-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .why-features { grid-template-columns: 1fr; }
  .sb-price { margin-left: 0; }
}

/* ═══════════════════════════════════
   SCRATCH — inline (no popup)
═══════════════════════════════════ */
.scratch-sec {
  background: linear-gradient(135deg, var(--forest) 0%, var(--green-mid) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 8vw, 6rem);
}
.sc-inner {
  max-width: 1080px; margin: 0 auto;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.sc-intro { color: #fff; }
.sc-intro .st-emoji { display: inline-block; margin-bottom: .85rem; }
.sc-intro .st-title { margin-bottom: .65rem; }
.sc-intro .st-sub   { color: rgba(255,255,255,.72); max-width: 440px; }
.sc-card {
  background: #fff; border-radius: 24px; padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
  width: 100%; justify-self: center;
}
@media (max-width: 860px) {
  .sc-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .sc-intro .st-emoji, .sc-intro .st-sub { margin-left: auto; margin-right: auto; }
  .sc-intro .st-sub { text-align: center; }
}

/* ═══════════════════════════════════
   CENIK — mobile cards
═══════════════════════════════════ */
@media (max-width: 640px) {
  .price-table-wrap {
    overflow: visible; border: none; background: transparent; box-shadow: none;
  }
  table.cenik { min-width: 0; display: block; }
  .cenik thead { display: none; }
  .cenik tbody { display: block; }
  .cenik tbody tr {
    display: block; background: #fff;
    border: 1px solid var(--border); border-radius: var(--r);
    padding: 1.05rem 1.15rem; margin-bottom: .75rem;
  }
  .cenik tbody tr:hover { background: #fff; }
  .cenik tbody td { display: block; border: none; padding: 0; }
  .cenik tbody td:first-child {
    font-size: 1.05rem; color: var(--text);
    white-space: normal; margin-bottom: .35rem;
  }
  .cenik tbody td:nth-child(2) {
    font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: .7rem;
  }
  .cenik tbody td:last-child {
    text-align: left; width: fit-content;
    background: var(--green-tint); color: var(--green);
    border: 1px solid rgba(26,92,55,.15); border-radius: 50px;
    padding: 4px 13px; font-size: .82rem;
  }
}

/* ═══════════════════════════════════════════════════════
   SERVICE PAGES  (sp-*)
   Добавить в конец styles.css
═══════════════════════════════════════════════════════ */

/* Shared inner wrapper */
.sp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 6rem);
}

/* ── Breadcrumb ─────────────────────── */
.sp-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--muted);
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.sp-breadcrumb a {
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.sp-breadcrumb a:hover { color: var(--green); }

/* ── Hero ───────────────────────────── */
.sp-hero {
  padding-top: 64px;
  background: var(--surface);
}
.sp-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sp-price-badge {
  display: inline-block;
  background: var(--green-tint); color: var(--green);
  border: 1px solid rgba(26,92,55,.15); border-radius: 50px;
  padding: 6px 16px; font-size: .9rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.sp-price-badge strong { font-size: 1.1rem; font-weight: 800; }

.sp-hero-cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.sp-trust-row {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap; font-size: .85rem;
}
.sp-trust-stars { color: var(--gold); letter-spacing: 2px; }
.sp-trust-label { color: var(--muted); }
.sp-trust-badge {
  background: var(--green-tint); color: var(--green);
  border-radius: 50px; padding: 3px 10px;
  font-size: .75rem; font-weight: 700;
}

.sp-hero-img {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  aspect-ratio: 4 / 3;
}
.sp-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── Problem ────────────────────────── */
.sp-problem { background: var(--bg); }

.sp-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.sp-problem-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.sp-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
  border-color: rgba(26,92,55,.2);
}
.sp-problem-ico { font-size: 2rem; margin-bottom: .75rem; }
.sp-problem-card h4 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: .5rem;
}
.sp-problem-card p {
  font-size: .9rem; color: var(--muted); line-height: 1.7;
}

/* ── Gallery ────────────────────────── */
.sp-gal { background: var(--surface); }

/* ── Process ────────────────────────── */
.sp-process { background: var(--bg); }

/* ── Mid CTA strip ──────────────────── */
.sp-mid-cta { background: var(--forest); }
.sp-mid-cta .sp-section-inner {
  padding-top: 3rem; padding-bottom: 3rem;
}
.sp-mid-cta-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.sp-mid-cta-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: #fff; margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.sp-mid-cta-text p {
  color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 1rem;
}
.sp-mid-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.sp-mid-chips span {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border-radius: 50px; padding: 4px 12px;
  font-size: .78rem; font-weight: 600;
}
.sp-mid-cta-btns {
  display: flex; flex-direction: column;
  gap: .6rem; flex-shrink: 0;
}
.sp-mid-email-btn {
  padding: 14px 24px; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25); border-radius: 12px;
  font-family: var(--font); font-size: .9rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
  display: inline-flex; align-items: center; white-space: nowrap;
}
.sp-mid-email-btn:hover {
  border-color: rgba(255,255,255,.6); color: #fff;
}

/* ── Reviews ────────────────────────── */
.sp-reviews { background: var(--surface); }

/* ── FAQ ────────────────────────────── */
.sp-faq { background: var(--bg); }
.sp-faq-inner { max-width: 760px; }

/* ── Contact ────────────────────────── */
.sp-contact { background: var(--surface); }
.sp-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.sp-contact-form h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; letter-spacing: -.02em;
  margin-bottom: .4rem; line-height: 1.2;
}
.sp-contact-sub {
  font-size: .9rem; color: var(--muted); margin-bottom: 1.5rem;
}

#spFormBtn {
  width: 100%; padding: 13px;
  background: var(--green); color: #fff;
  border: none; border-radius: 10px;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all .2s; margin-top: .25rem;
}
#spFormBtn:hover {
  background: var(--green-mid);
  box-shadow: 0 6px 20px rgba(26,92,55,.28);
  transform: translateY(-1px);
}
#spFormBtn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.sp-contact-info h3 {
  font-size: 1.3rem; font-weight: 700; color: var(--text);
  margin-bottom: .4rem;
}

.sp-contact-promises { margin: 1.5rem 0; }
.sp-promise {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--text); padding: .3rem 0;
}
.sp-promise > span {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; flex-shrink: 0;
}

/* Other services cross-links */
.sp-other-services {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.sp-other-services h4 {
  font-size: .75rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .75rem;
}
.sp-other-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem;
}
.sp-other-link {
  display: block; padding: .5rem .75rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; font-size: .82rem; font-weight: 600;
  color: var(--text); text-decoration: none; transition: all .2s;
}
.sp-other-link:hover {
  border-color: var(--green); color: var(--green);
  background: var(--green-tint);
}

/* ── Responsive ─────────────────────── */
@media (max-width: 960px) {
  .sp-hero-inner { grid-template-columns: 1fr; }
  .sp-hero-img { order: -1; max-height: 320px; }
  .sp-contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sp-mid-cta-inner { flex-direction: column; align-items: flex-start; }
  .sp-mid-cta-btns { width: 100%; }
  .sp-mid-email-btn { text-align: center; justify-content: center; }
}
@media (max-width: 640px) {
  .sp-hero-cta { flex-direction: column; }
  .sp-hero-cta .btn-main,
  .sp-hero-cta .btn-line { text-align: center; justify-content: center; }
  .sp-other-grid { grid-template-columns: 1fr; }
}