/* EAVEX × GreenSky financing blocks */
:root {
  --gs-green: #5FB246;
  --gs-card: #15151F;
  --gs-line: rgba(255, 255, 255, 0.08);
  --gs-muted: #8A8A99;
  --gs-text-soft: #C9C9D4;
}

/* ── Variant 1: full block (homepage) ─────────────────────────── */
.gs-finance-section {
  position: relative;
  background: #0E1219;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--gs-line);
}

@media (min-width: 768px) {
  .gs-finance-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.gs-finance {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: var(--gs-card);
  border: 1px solid var(--gs-line);
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.gs-finance::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 90% 0%, rgba(95, 178, 70, 0.14), transparent 60%);
  pointer-events: none;
}

.gs-finance__left,
.gs-finance__right {
  position: relative;
  z-index: 1;
}

.gs-finance__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gs-green);
  margin-bottom: 14px;
}

.gs-finance__title {
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
  color: #fff;
}

.gs-finance__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gs-text-soft);
  max-width: 520px;
  margin: 0;
}

.gs-finance__plan {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gs-muted);
  margin: 16px 0 0;
  max-width: 520px;
}

.gs-finance__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.gs-logo-chip {
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: inline-flex;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.gs-logo-chip img {
  height: 32px;
  width: auto;
  display: block;
}

.gs-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gs-green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gs-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(95, 178, 70, 0.35);
  color: #fff;
}

.gs-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gs-ehl {
  display: inline-flex;
  align-items: center;
}

.gs-ehl img {
  width: 35px;
  height: 35px;
  display: block;
  flex-shrink: 0;
}

.gs-finance__note {
  position: relative;
  z-index: 1;
  font-size: 11px;
  line-height: 1.5;
  color: var(--gs-muted);
  margin: 22px 0 0;
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .gs-finance {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }

  .gs-finance__title {
    font-size: 23px;
  }
}

/* ── Variant 3: mini badge (service pages) ────────────────────── */
.gs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(95, 178, 70, 0.08);
  border: 1px solid rgba(95, 178, 70, 0.25);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  text-decoration: none;
  max-width: 100%;
}

.gs-badge .gs-logo-chip {
  padding: 6px 10px;
  border-radius: 7px;
  box-shadow: none;
}

.gs-badge .gs-logo-chip img {
  height: 16px;
}

.gs-badge__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gs-text-soft);
  line-height: 1.3;
}

.gs-badge__text b {
  color: var(--gs-green);
  font-weight: 700;
}

a.gs-badge:hover {
  border-color: rgba(95, 178, 70, 0.45);
  background: rgba(95, 178, 70, 0.12);
}

.svc-v2-hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .svc-v2-hero__cta-stack {
    width: 100%;
    align-items: center;
  }

  .svc-v2-hero__cta-stack .svc-v2-hero__actions {
    width: 100%;
  }
}

/* Light hero band (service V2): readable muted text on cream */
.service-page--v2 .gs-badge {
  background: rgba(95, 178, 70, 0.1);
  border-color: rgba(95, 178, 70, 0.35);
}

.service-page--v2 .gs-badge__text {
  color: #3a3936;
}

.service-page--v2 .gs-badge__text b {
  color: #3d8a2e;
}
