:root {
  --green-950: #082f1e;
  --green-900: #10452c;
  --green-800: #176238;
  --green-700: #247341;
  --green-100: #e7f2ea;
  --green-050: #f4faf5;
  --blue-500: #05a8da;
  --blue-100: #dff5fb;
  --lime-300: #b8d84f;
  --soil-700: #5b4934;
  --ink: #122018;
  --muted: #536158;
  --line: #d8e5dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 47, 30, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--green-900);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 229, 220, 0.9);
  backdrop-filter: blur(14px);
}

.topbar {
  color: var(--white);
  background: var(--green-950);
}

.topbar__inner,
.nav,
.section,
.footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  font-size: 0.9rem;
}

.topbar a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-900);
  font-weight: 950;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-800), var(--blue-500));
  border-radius: 8px;
  font-weight: 950;
}

.brand__text {
  display: grid;
  gap: 0.05rem;
}

.brand__name {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.brand__name span {
  color: var(--blue-500);
  font-weight: 650;
}

.brand__tag {
  color: var(--green-700);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 1.35vw, 1.15rem);
}

.nav__links a {
  color: var(--green-900);
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  border-color: var(--blue-500);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  min-width: 64px;
  height: 44px;
  padding: 0 0.7rem;
  color: var(--green-900);
  background: var(--green-100);
  border: 0;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  background: var(--green-800);
  border: 2px solid var(--green-800);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  box-shadow: 0 14px 28px rgba(16, 69, 44, 0.22);
  transform: translateY(-1px);
}

.btn--light {
  color: var(--green-950);
  background: var(--white);
  border-color: var(--white);
}

.btn--light:hover {
  color: var(--green-950);
  background: var(--green-100);
  border-color: var(--green-100);
  box-shadow: 0 14px 28px rgba(8, 47, 30, 0.18);
}

.btn--outline {
  color: var(--green-900);
  background: transparent;
  border-color: var(--green-800);
}

.btn--outline:hover {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.btn--blue {
  color: var(--green-950);
  background: var(--blue-100);
  border-color: var(--blue-100);
}

.btn--blue:hover {
  color: var(--green-950);
  background: #c7ecf6;
  border-color: #c7ecf6;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 47, 30, 0.94), rgba(16, 69, 44, 0.72)),
    linear-gradient(135deg, #163b28 0%, #2b6f43 45%, #0aa8d6 100%);
}

.hero--compact {
  background:
    linear-gradient(90deg, rgba(8, 47, 30, 0.96), rgba(16, 69, 44, 0.82)),
    linear-gradient(135deg, #113b27 0%, #287645 62%, #08a5d2 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 76% 28%, rgba(184, 216, 79, 0.18), transparent 24%);
  opacity: 0.85;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(2.6rem, 5vw, 4.5rem) 0;
}

.hero--compact .hero__inner {
  grid-template-columns: 1fr 0.8fr;
  padding: clamp(2.4rem, 4vw, 3.6rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.4rem 0.7rem;
  color: var(--green-950);
  background: var(--lime-300);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  font-weight: 950;
}

.hero--compact h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero__lead {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.5vw, 1.13rem);
  font-weight: 650;
}

.hero__actions {
  margin-top: 1.3rem;
}

.hero__badges {
  margin-top: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.service-area {
  display: inline-flex;
  max-width: 520px;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 800;
}

.quote-panel {
  align-self: start;
  padding: 1.15rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel h2 {
  color: var(--green-950);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.quote-panel p {
  margin: 0.55rem 0 1rem;
  color: var(--muted);
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section--green {
  width: 100%;
  max-width: none;
  color: var(--white);
  background: var(--green-900);
}

.section--green > .section__inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section--soft {
  width: 100%;
  max-width: none;
  background: var(--green-050);
}

.section--soft > .section__inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split--top {
  align-items: start;
}

.section-title {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 950;
}

.section--green .section-title {
  color: var(--white);
}

.section-intro {
  max-width: 760px;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.section--green .section-intro,
.section--green p {
  color: rgba(255, 255, 255, 0.88);
}

.proof-grid,
.service-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.tile,
.service-card,
.step,
.faq-item {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section--green .service-card,
.section--green .tile {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.section--green .service-card p,
.section--green .tile p,
.section--green .tile span {
  color: rgba(255, 255, 255, 0.86);
}

.tile strong,
.service-card h3,
.step h3,
.faq-item h3 {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--green-900);
  font-size: 1.08rem;
}

.section--green .service-card h3,
.section--green .tile strong {
  color: var(--white);
}

.tile span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.section--green .tile span {
  color: rgba(255, 255, 255, 0.78);
}

.service-card {
  display: grid;
  min-height: 100%;
  gap: 1rem;
}

.service-card p,
.step p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  align-self: end;
  color: var(--green-900);
  font-weight: 950;
  text-decoration-color: var(--blue-500);
  text-underline-offset: 0.2em;
}

.section--green .service-card a {
  color: var(--white);
}

.media-slot {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 47, 30, 0.45), rgba(5, 168, 218, 0.45)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #1f6f3e, #1e92b6);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-slot::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
}

.media-slot__label {
  position: relative;
  z-index: 1;
  max-width: 320px;
  padding: 1rem;
  text-align: center;
}

.media-slot__label strong {
  display: block;
  font-size: 1.15rem;
}

.media-slot__label span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 1.45rem;
}

.list li::before {
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue-500);
  border-radius: 999px;
}

.band-cta {
  color: var(--white);
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
}

.band-cta .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.band-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.contact-block {
  border-top: 5px solid var(--green-800);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 1rem;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact-copy p {
  color: var(--muted);
  font-weight: 650;
}

.phone-big {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--green-900);
  font-size: 1.35rem;
  font-weight: 950;
  text-decoration: none;
}

.lead-form {
  display: grid;
  gap: 0.95rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(5, 168, 218, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--green-800);
  font-weight: 800;
}

.form-status.is-success {
  padding: 0.7rem 0.85rem;
  color: var(--green-900);
  background: var(--green-100);
  border-left: 4px solid var(--green-800);
  border-radius: 6px;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-disclaimer svg {
  width: 14px;
  height: 14px;
  flex: none;
  fill: var(--green-700);
}

.site-footer {
  border-top: 5px solid var(--green-800);
  background: var(--white);
}

.mobile-cta {
  display: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 0;
}

.footer__call strong {
  display: block;
  color: var(--green-900);
  font-size: 1.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__links a {
  color: var(--green-900);
  font-weight: 800;
}

.footer__mark {
  justify-self: end;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: conic-gradient(from 0deg, var(--blue-500), var(--green-800), var(--blue-500));
  border-radius: 8px;
  font-weight: 950;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 650;
}

.store-hero {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.store-hero .hero__inner {
  display: block;
}

.store-hero h1 {
  margin-inline: auto;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__links {
    position: fixed;
    inset: 121px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 20px 1.2rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(8, 47, 30, 0.12);
  }

  .menu-open .nav__links {
    display: flex;
  }

  .nav__links a {
    padding: 0.85rem 0;
  }

  .nav__actions {
    display: none;
  }

  .hero__inner,
  .hero--compact .hero__inner,
  .split,
  .contact-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__mark {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .topbar__inner {
    display: grid;
    justify-items: center;
    padding: 0.55rem 0;
    text-align: center;
  }

  .nav {
    min-height: 68px;
  }

  .nav__links {
    inset-block-start: 130px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: 1.22rem;
  }

  .hero__inner,
  .section,
  .section--green > .section__inner,
  .section--soft > .section__inner,
  .topbar__inner,
  .nav,
  .footer__inner {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero__actions,
  .band-cta .section {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn,
  .band-cta .btn {
    width: 100%;
  }

  .proof-grid,
  .service-grid,
  .steps-grid,
  .faq-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .media-slot {
    min-height: 270px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 0.7rem 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(8, 47, 30, 0.14);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 6px;
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-cta__call {
    color: var(--white);
    background: var(--green-800);
  }

  .mobile-cta__quote {
    color: var(--green-950);
    background: var(--blue-100);
  }
}

/* ============================================================
   New components: trust bar, badges, testimonials, FAQ,
   reveal animations, hero overlay, icon tiles
   ============================================================ */

.hero::after {
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  content: "";
  background:
    radial-gradient(60% 80% at 20% 60%, rgba(184, 216, 79, 0.18), transparent 70%),
    radial-gradient(45% 70% at 80% 40%, rgba(5, 168, 218, 0.22), transparent 70%);
  pointer-events: none;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  fill: var(--lime-300);
}

.quote-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
}

.quote-panel__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  background: #28c76f;
  border-radius: 999px;
}

.quote-panel__pulse::after {
  position: absolute;
  inset: -5px;
  content: "";
  background: rgba(40, 199, 111, 0.4);
  border-radius: 999px;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.trust-bar {
  background: var(--green-050);
  border-block: 1px solid var(--line);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-block: 2rem;
}

.trust-stat {
  display: grid;
  gap: 0.2rem;
  text-align: center;
}

.trust-stat__num {
  color: var(--green-900);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.01em;
}

.trust-stat__label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 720px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tile {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 1.4rem 1.2rem 1.3rem;
}

.tile__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 0.3rem;
  place-items: center;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 10px;
}

.tile__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--green-800);
}

.section--green .tile__icon {
  background: rgba(255, 255, 255, 0.14);
}

.section--green .tile__icon svg {
  fill: var(--lime-300);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}

.testimonial {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(8, 47, 30, 0.05);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: #f5b50a;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.testimonial__quote {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.testimonial__avatar {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-800), var(--blue-500));
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.85rem;
}

.testimonial__name {
  display: block;
  color: var(--green-900);
  font-weight: 900;
  font-size: 0.92rem;
}

.testimonial__place {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

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

details.faq-item {
  display: block;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

details.faq-item[open] {
  border-color: var(--green-800);
  box-shadow: 0 10px 26px rgba(8, 47, 30, 0.08);
}

details.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  color: var(--green-900);
  font-size: 1.02rem;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

details.faq-item > summary::-webkit-details-marker {
  display: none;
}

details.faq-item > summary::after {
  flex: none;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--green-100);
  background-image:
    linear-gradient(var(--green-900), var(--green-900)),
    linear-gradient(var(--green-900), var(--green-900));
  background-size: 13px 2.5px, 2.5px 13px;
  background-position: center, center;
  background-repeat: no-repeat;
  border-radius: 999px;
  transition: background-color 180ms ease, background-size 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

details.faq-item[open] > summary::after {
  background-color: var(--green-800);
  background-image:
    linear-gradient(var(--white), var(--white)),
    linear-gradient(var(--white), var(--white));
  background-size: 13px 2.5px, 0 2.5px;
}

details.faq-item > div {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(95deg, var(--green-900), var(--green-800));
  border-radius: 12px;
  color: var(--white);
}

.guarantee svg {
  width: 48px;
  height: 48px;
  fill: var(--lime-300);
}

.guarantee__copy strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.guarantee__copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.guarantee .btn {
  background: var(--lime-300);
  border-color: var(--lime-300);
  color: var(--green-950);
}

.guarantee .btn:hover {
  background: var(--white);
  border-color: var(--white);
}

@media (max-width: 720px) {
  .guarantee {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .quote-panel__pulse::after {
    animation: none;
  }
}

.mobile-cta__call,
.mobile-cta__quote {
  gap: 0.5rem;
}

.mobile-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: 1.6rem 1.2rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.process-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -16px;
  left: 1.2rem;
  display: grid;
  width: 40px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border-radius: 6px;
  font-weight: 950;
  font-size: 0.85rem;
}

.process-card h3 {
  margin: 0.2rem 0 0.4rem;
  color: var(--green-900);
  font-size: 1.05rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Hero card for non-landing pages: phone-first, no form */
.hero-card {
  align-self: start;
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.1;
}

.hero-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.05rem 1.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: 12px;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 950;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-card__phone svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-card__phone:hover {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: 0 14px 28px rgba(8, 47, 30, 0.22);
  transform: translateY(-1px);
}

.hero-card__sub {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.hero-card__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-card__check {
  flex: none;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--green-100);
  border-radius: 999px;
}

.hero-card__check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--green-800);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Talk band - elegant call CTA for non-landing pages */
.talk-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(60% 80% at 90% 20%, rgba(184, 216, 79, 0.12), transparent 70%),
    linear-gradient(135deg, var(--green-050), var(--green-100));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.talk-band__copy h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.05;
}

.talk-band__copy p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 560px;
}

.talk-band__actions {
  display: grid;
  gap: 0.65rem;
}

.talk-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 1.6rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: 12px;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 950;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.talk-phone svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.talk-phone:hover {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: 0 16px 32px rgba(8, 47, 30, 0.22);
  transform: translateY(-1px);
}

.talk-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  color: var(--green-900);
  background: transparent;
  border: 1.5px solid var(--green-800);
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.talk-secondary:hover {
  background: var(--green-800);
  color: var(--white);
}

@media (max-width: 820px) {
  .talk-band {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
