.solarguide-page {
  --sg-ink: #14211b;
  --sg-muted: #5d6a64;
  --sg-line: #dce7df;
  --sg-bg: #fbfdf9;
  --sg-soft: #edf6ef;
  --sg-panel: #ffffff;
  --sg-green: #0f6b3d;
  --sg-green-dark: #084d2c;
  --sg-amber: #c7831f;
  --sg-blue: #29677a;
  --sg-shadow: 0 1px 2px rgba(20, 33, 27, 0.08), 0 16px 42px rgba(20, 33, 27, 0.08);
  --sg-radius: 8px;
}

.sg-wrap {
  --sg-ink: #14211b;
  --sg-muted: #5d6a64;
  --sg-line: #dce7df;
  --sg-bg: #fbfdf9;
  --sg-soft: #edf6ef;
  --sg-panel: #ffffff;
  --sg-green: #0f6b3d;
  --sg-green-dark: #084d2c;
  --sg-amber: #c7831f;
  --sg-blue: #29677a;
  --sg-shadow: 0 1px 2px rgba(20, 33, 27, 0.08), 0 16px 42px rgba(20, 33, 27, 0.08);
  --sg-radius: 8px;
  color: var(--sg-ink);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px) 56px;
}

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

.sg-wrap a {
  color: inherit;
}

.sg-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) 0 42px;
}

.sg-hero h1,
.sg-page-head h1,
.sg-profile-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--sg-ink);
}

.sg-hero p,
.sg-page-head p,
.sg-profile-hero p {
  max-width: 720px;
  color: var(--sg-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.sg-actions,
.sg-card-actions,
.sg-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sg-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.sg-button:hover {
  transform: translateY(-1px);
}

.sg-button-primary {
  color: #fff;
  background: var(--sg-green);
  border-color: var(--sg-green);
}

.sg-button-primary:hover {
  color: #fff;
  background: var(--sg-green-dark);
}

.sg-button-secondary {
  background: #fff;
  color: var(--sg-green-dark);
  border-color: var(--sg-line);
}

.sg-button-secondary:hover {
  border-color: var(--sg-green);
  background: var(--sg-soft);
}

.sg-hero__panel,
.sg-panel,
.sg-card,
.sg-filter-panel {
  background: var(--sg-panel);
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  box-shadow: var(--sg-shadow);
}

.sg-hero__panel {
  padding: 24px;
  min-height: 330px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  position: relative;
}

.sg-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(15, 107, 61, 0.08), transparent 45%),
    linear-gradient(36deg, transparent 0 38%, rgba(199, 131, 31, 0.14) 38% 40%, transparent 40% 100%);
  pointer-events: none;
}

.sg-meter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 130px;
  padding: 18px;
  border-radius: 8px;
  background: #f5faf6;
}

.sg-meter span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: var(--sg-green);
  min-height: 42px;
}

.sg-meter span:nth-child(2) {
  min-height: 70px;
  background: var(--sg-blue);
}

.sg-meter span:nth-child(3) {
  min-height: 96px;
}

.sg-meter span:nth-child(4) {
  min-height: 112px;
  background: var(--sg-amber);
}

.sg-meter span:nth-child(5) {
  min-height: 82px;
}

.sg-kpi-list {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.sg-kpi-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--sg-line);
}

.sg-kpi-list dt {
  color: var(--sg-muted);
  font-weight: 700;
}

.sg-kpi-list dd {
  margin: 0;
  text-align: right;
  color: var(--sg-green-dark);
  font-weight: 800;
}

.sg-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin: 16px 0 38px;
  padding: 24px;
  border-top: 1px solid var(--sg-line);
  border-bottom: 1px solid var(--sg-line);
  background: var(--sg-soft);
}

.sg-band h2,
.sg-section-head h2,
.sg-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.sg-band p,
.sg-section-head p,
.sg-panel p,
.sg-card p,
.sg-review-note,
.sg-form-status {
  color: var(--sg-muted);
}

.sg-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 36px;
}

.sg-trust-strip div {
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 33, 27, 0.05);
}

.sg-trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sg-ink);
  font-size: 15px;
  font-weight: 850;
}

.sg-trust-strip span {
  display: block;
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sg-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.sg-directory {
  margin-top: 26px;
}

.sg-directory-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.sg-filter-panel {
  position: sticky;
  top: 92px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.sg-form,
.sg-filter-panel {
  color: var(--sg-ink);
}

.sg-form label,
.sg-filter-panel label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 760;
}

.sg-form input,
.sg-form select,
.sg-form textarea,
.sg-filter-panel input,
.sg-filter-panel select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #fff;
  color: var(--sg-ink);
  font: inherit;
  line-height: 1.3;
  padding: 10px 12px;
  box-shadow: 0 1px 0 rgba(12, 39, 32, 0.04);
}

.sg-form input:focus,
.sg-form select:focus,
.sg-form textarea:focus,
.sg-filter-panel input:focus,
.sg-filter-panel select:focus {
  border-color: var(--sg-green);
  box-shadow: 0 0 0 3px rgba(37, 120, 73, 0.14);
  outline: none;
}

.sg-form select,
.sg-filter-panel select {
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sg-muted) 50%),
    linear-gradient(135deg, var(--sg-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.solarguide-page .sg-form input,
.solarguide-page .sg-form select,
.solarguide-page .sg-form textarea,
.solarguide-page .sg-filter-panel input,
.solarguide-page .sg-filter-panel select {
  border: 1px solid var(--sg-line) !important;
  background-color: #fff !important;
  box-shadow: 0 1px 0 rgba(12, 39, 32, 0.04) !important;
}

.solarguide-page .sg-form input:focus,
.solarguide-page .sg-form select:focus,
.solarguide-page .sg-form textarea:focus,
.solarguide-page .sg-filter-panel input:focus,
.solarguide-page .sg-filter-panel select:focus {
  border-color: var(--sg-green) !important;
  box-shadow: 0 0 0 3px rgba(37, 120, 73, 0.14) !important;
}

.sg-form textarea {
  resize: vertical;
}

.sg-location-button,
.sg-location-actions button {
  min-height: 40px;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #fff;
  color: var(--sg-green-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.sg-location-button {
  width: 100%;
}

.sg-location-actions {
  display: grid;
  gap: 8px;
}

.sg-location-actions span {
  min-height: 18px;
  color: var(--sg-muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.sg-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.sg-card {
  padding: 18px;
  display: grid;
  gap: 14px;
  min-height: 284px;
}

.sg-card.is-hidden {
  display: none;
}

.sg-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.sg-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.sg-card h3 a {
  text-decoration: none;
}

.sg-card h3 a:hover {
  color: var(--sg-green);
}

.sg-card p {
  margin: 6px 0 0;
}

.sg-score {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sg-green);
  font-weight: 850;
}

.sg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sg-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--sg-soft);
  color: var(--sg-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.sg-card-meta,
.sg-detail-list {
  margin: 0;
  display: grid;
  gap: 8px;
}

.sg-card-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--sg-line);
}

.sg-card-meta dt,
.sg-detail-list dt {
  color: var(--sg-muted);
  font-weight: 750;
}

.sg-card-meta dd,
.sg-detail-list dd {
  margin: 0;
  text-align: right;
}

.sg-review-note {
  margin: 0;
  font-size: 13px;
}

.sg-card-privacy-note {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #f8fbf8;
  color: var(--sg-muted);
  font-size: 13px;
  line-height: 1.4;
}

.sg-page-head {
  padding: clamp(38px, 6vw, 74px) 0 24px;
}

.sg-calculator-grid,
.sg-form-layout,
.sg-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 20px;
  align-items: start;
}

.sg-calculator-grid > *,
.sg-form-layout > *,
.sg-profile-grid > * {
  min-width: 0;
}

.sg-panel {
  padding: 22px;
}

.sg-panel-featured {
  border-color: var(--sg-green);
}

.sg-google-reviews-panel {
  margin-bottom: 24px;
}

.sg-google-reviews-panel .sg-section-head {
  margin-bottom: 16px;
}

.sg-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sg-review-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
}

.sg-review-card__top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.sg-review-card__top strong,
.sg-review-card__top a {
  color: var(--sg-ink);
}

.sg-review-card__top span {
  color: var(--sg-green-dark);
  font-weight: 900;
}

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

.sg-review-card small {
  color: var(--sg-muted);
  font-weight: 750;
}

.sg-calculator-output {
  display: grid;
  gap: 20px;
}

.sg-map-panel {
  padding: 14px;
}

.sg-calculator-map {
  position: relative;
  min-height: 330px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background:
    linear-gradient(34deg, rgba(43, 72, 55, 0.35) 0 18%, transparent 18% 100%),
    linear-gradient(126deg, rgba(148, 166, 134, 0.55) 0 22%, transparent 22% 100%),
    linear-gradient(90deg, transparent 0 34%, rgba(85, 96, 86, 0.6) 34% 39%, transparent 39% 100%),
    linear-gradient(0deg, transparent 0 42%, rgba(52, 60, 57, 0.52) 42% 48%, transparent 48% 100%),
    #9baa8f;
}

.sg-map-default,
.sg-map-default iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sg-map-default {
  background:
    linear-gradient(27deg, transparent 0 30%, rgba(79, 90, 77, 0.7) 30% 34%, transparent 34% 100%),
    linear-gradient(116deg, transparent 0 54%, rgba(59, 70, 65, 0.62) 54% 59%, transparent 59% 100%),
    linear-gradient(90deg, rgba(91, 111, 89, 0.9), rgba(163, 177, 144, 0.85));
}

.sg-map-default::before,
.sg-map-default::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sg-map-default::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(24deg, transparent 0 38%, rgba(228, 222, 195, 0.92) 38% 47%, transparent 47% 100%),
    linear-gradient(24deg, transparent 0 50%, rgba(106, 91, 74, 0.95) 50% 64%, transparent 64% 100%),
    linear-gradient(114deg, transparent 0 20%, rgba(241, 238, 217, 0.82) 20% 26%, transparent 26% 100%),
    radial-gradient(circle at 14% 28%, rgba(55, 95, 62, 0.58) 0 8%, transparent 9%),
    radial-gradient(circle at 82% 78%, rgba(41, 83, 58, 0.55) 0 10%, transparent 11%);
  opacity: 0.9;
}

.sg-map-default::after {
  z-index: 2;
  left: 42%;
  top: 28%;
  width: 27%;
  height: 22%;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  transform: rotate(24deg);
  background:
    repeating-linear-gradient(90deg, rgba(20, 37, 63, 0.94) 0 12%, rgba(57, 88, 132, 0.94) 12% 18%),
    linear-gradient(180deg, rgba(22, 39, 68, 0.95), rgba(16, 29, 53, 0.96));
  box-shadow:
    -220px 118px 0 -18px rgba(44, 70, 56, 0.72),
    176px -90px 0 -16px rgba(197, 187, 154, 0.78),
    118px 136px 0 -22px rgba(75, 92, 78, 0.76);
}

.sg-map-default iframe {
  border: 0;
  opacity: 0.36;
  pointer-events: none;
  filter: saturate(0.8) contrast(0.9);
}

.sg-calculator-map.is-loading::after {
  content: "Loading map...";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--sg-muted);
  font-weight: 760;
  background: rgba(248, 250, 246, 0.72);
  z-index: 2;
}

.sg-map-empty {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: auto;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
  text-align: left;
  background: rgba(10, 25, 20, 0.78);
  box-shadow: 0 10px 24px rgba(11, 31, 24, 0.2);
}

.sg-map-empty strong,
.sg-map-empty small {
  display: block;
}

.sg-map-empty small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.sg-map-load-button {
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  background: #ffffff;
  color: var(--sg-green-dark);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.sg-map-load-button:hover,
.sg-map-load-button:focus-visible {
  background: var(--sg-soft);
}

.sg-map-caption {
  margin: 10px 2px 0;
  color: var(--sg-muted);
  font-size: 13px;
}

.sg-results {
  min-height: 360px;
}

.sg-calculator-disclosure,
.sg-estimate-callout {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--sg-green);
  background: var(--sg-soft);
  color: var(--sg-muted);
}

.sg-calculator-assumptions {
  align-items: end;
}

.sg-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.sg-pagination .page-numbers {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 11px;
  place-items: center;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #fff;
  color: var(--sg-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.sg-pagination .page-numbers.current {
  border-color: var(--sg-green);
  background: var(--sg-green);
  color: #fff;
}

.sg-result-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.sg-result-kpis div {
  padding: 14px;
  background: var(--sg-soft);
  border-radius: 8px;
}

.sg-result-kpis strong {
  display: block;
  color: var(--sg-green-dark);
  font-size: 26px;
  line-height: 1.1;
}

.sg-result-kpis span {
  color: var(--sg-muted);
  font-size: 13px;
  font-weight: 720;
}

.sg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sg-form {
  display: grid;
  gap: 14px;
}

.sg-form-section {
  display: grid;
  gap: 12px;
  padding-bottom: 4px;
}

.sg-form-section-title {
  margin: 0;
  color: var(--sg-green-dark) !important;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sg-consent-row {
  padding: 12px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: var(--sg-soft);
}

.sg-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.sg-form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 700;
}

.sg-form-status.is-good {
  color: var(--sg-green-dark);
}

.sg-form-status.is-bad {
  color: #9f2f2f;
}

.sg-profile-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: end;
  padding: 48px 0 28px;
}

.sg-small {
  margin: 0 0 10px;
  color: var(--sg-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sg-profile-actions {
  display: grid;
}

.sg-detail-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sg-line);
}

.sg-detail-list dd {
  text-align: left;
}

.sg-check-list,
.sg-number-list {
  color: var(--sg-muted);
  padding-left: 22px;
}

.sg-check-list li,
.sg-number-list li {
  margin: 8px 0;
}

.sg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.sg-plan-price {
  margin: 6px 0 10px;
  color: var(--sg-green-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.sg-plan-price span {
  color: var(--sg-muted);
  font-size: 14px;
  font-weight: 800;
}

.sg-plan-subprice {
  margin: -4px 0 12px;
  color: var(--sg-muted);
  font-size: 14px;
  font-weight: 850;
}

.sg-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.sg-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sg-package-grid-form {
  margin-bottom: 6px;
}

.sg-package-card {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 16px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.sg-package-card:hover,
.sg-package-card:focus-within {
  border-color: rgba(19, 120, 98, 0.45);
  box-shadow: var(--sg-shadow);
  transform: translateY(-1px);
}

.sg-package-card input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--sg-green);
}

.sg-package-card span {
  color: var(--sg-green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sg-package-card strong {
  color: var(--sg-ink);
  font-size: 20px;
  line-height: 1.15;
}

.sg-package-card small {
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sg-package-card-featured {
  border-color: rgba(19, 120, 98, 0.36);
  background: linear-gradient(180deg, rgba(225, 246, 239, 0.82), #fff);
}

@media (max-width: 900px) {
  .sg-hero,
  .sg-directory-layout,
  .sg-calculator-grid,
  .sg-form-layout,
  .sg-profile-grid,
  .sg-profile-hero,
  .sg-pricing-grid,
  .sg-package-grid,
  .sg-review-list {
    grid-template-columns: 1fr;
  }

  .sg-section-head,
  .sg-band {
    align-items: stretch;
    flex-direction: column;
  }

  .sg-filter-panel {
    position: static;
  }

  .sg-form-grid,
  .sg-result-kpis {
    grid-template-columns: 1fr;
  }

  .sg-profile-actions {
    display: flex;
  }
}

@media (max-width: 560px) {
  .sg-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .sg-calculator-map {
    min-height: 260px;
  }

  .sg-hero h1,
  .sg-page-head h1,
  .sg-profile-hero h1 {
    font-size: 38px;
  }

  .sg-card__top,
  .sg-card-meta div,
  .sg-kpi-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .sg-card-meta dd,
  .sg-kpi-list dd {
    text-align: left;
  }
}

.sg-eyebrow,
.sg-small {
  margin: 0 0 10px;
  color: var(--sg-blue);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.solarguide-page .entry-hero.page-hero-section {
  display: none;
}

.single-sg_installer.solarguide-page .entry-header {
  display: none;
}

.solarguide-page .content-container.site-container {
  padding-top: 0;
}

.sg-stat-row,
.sg-profile-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.sg-stat-row div,
.sg-profile-kpis div {
  padding: 14px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.sg-stat-row dt,
.sg-profile-kpis dt {
  color: var(--sg-green-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.sg-stat-row dd,
.sg-profile-kpis dd {
  margin: 6px 0 0;
  color: var(--sg-muted);
  font-size: 13px;
  font-weight: 750;
}

.sg-directory-finder {
  align-content: start;
  gap: 16px;
}

.sg-directory-finder h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.sg-finder-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.sg-finder-form label {
  display: grid;
  gap: 7px;
  color: var(--sg-ink);
  font-size: 14px;
  font-weight: 780;
}

.sg-finder-form input,
.sg-finder-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #fff;
  color: var(--sg-ink);
  font: inherit;
  padding: 10px 12px;
}

.sg-source-note {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--sg-muted);
  font-size: 13px;
  line-height: 1.45;
}

.sg-directory-strip,
.sg-featured-directory,
.sg-related,
.sg-claim-band {
  margin: 34px 0;
}

.sg-section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.sg-section-kicker h2,
.sg-claim-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.sg-county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.sg-county-tile,
.sg-service-card {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 33, 27, 0.06);
  text-decoration: none;
}

.sg-county-tile:hover,
.sg-service-card:hover {
  border-color: var(--sg-green);
  transform: translateY(-1px);
}

.sg-county-tile strong,
.sg-service-card span {
  color: var(--sg-green-dark);
  font-size: 18px;
  font-weight: 850;
}

.sg-county-tile span,
.sg-service-card p {
  margin: 0;
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.4;
}

.sg-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 40px;
}

.sg-guide-strip,
.sg-guide-page .sg-band {
  margin: 34px 0;
}

.sg-guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sg-guide-card-grid-large {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 28px 0 40px;
}

.sg-guide-card-featured {
  background: linear-gradient(140deg, #ffffff, #f0f8f2);
  border-color: rgba(15, 107, 61, 0.28);
}

.sg-guide-card {
  display: grid;
  gap: 8px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 33, 27, 0.06);
  color: inherit;
  text-decoration: none;
}

.sg-guide-card:hover {
  border-color: var(--sg-green);
  transform: translateY(-1px);
}

.sg-guide-card strong {
  color: var(--sg-green-dark);
  font-size: 19px;
  line-height: 1.15;
}

.sg-guide-card span {
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sg-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.sg-guide-main,
.sg-guide-side {
  padding: 22px;
  min-width: 0;
}

.sg-guide-main h2,
.sg-guide-side h2 {
  margin-top: 0;
}

.sg-guide-main h2:not(:first-child),
.sg-guide-side h2:not(:first-child) {
  margin-top: 26px;
}

.sg-guide-main p {
  color: var(--sg-muted);
  line-height: 1.6;
}

.sg-resource-page .sg-page-head .sg-actions {
  margin-top: 18px;
}

.sg-resource-section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sg-line);
}

.sg-resource-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sg-resource-section h2 {
  scroll-margin-top: 90px;
}

.sg-resource-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 6px;
}

.sg-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.sg-faq-list details {
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.sg-faq-list summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--sg-green-dark);
  font-weight: 850;
}

.sg-faq-list details p {
  margin: 0;
  padding: 0 16px 16px;
}

.sg-resource-related {
  margin-top: 36px;
}

.sg-ask-ben-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.sg-ask-ben-intro,
.sg-ask-ben-panel {
  padding: 22px;
  min-width: 0;
}

.sg-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sg-checkbox-row input {
  width: auto;
  margin-top: 3px;
}

.sg-guide-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin: 16px 0 26px;
}

.sg-guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #fff;
}

.sg-guide-table th,
.sg-guide-table td {
  padding: 12px;
  border: 1px solid var(--sg-line);
  text-align: left;
  vertical-align: top;
}

.sg-guide-table th {
  background: var(--sg-soft);
  color: var(--sg-green-dark);
  font-weight: 850;
}

.sg-text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--sg-green-dark);
  font-weight: 850;
  text-decoration: none;
}

.sg-text-link:hover {
  color: var(--sg-green);
}

.sg-claim-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
}

.sg-claim-band p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--sg-muted);
}

.sg-filter-panel__head,
.sg-directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sg-filter-panel__head strong {
  font-size: 18px;
}

.sg-filter-panel__head button {
  border: 0;
  background: transparent;
  color: var(--sg-green-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.sg-ranking-note {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--sg-green);
  background: #f6faf8;
}

.sg-ranking-note strong {
  color: var(--sg-green-dark);
  font-size: 14px;
}

.sg-ranking-note p {
  margin: 0;
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sg-directory-owner-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 33, 27, 0.06);
}

.sg-directory-owner-panel h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
}

.sg-directory-owner-panel p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--sg-muted);
}

.sg-claim-flywheel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 20px;
}

.sg-claim-flywheel div {
  padding: 18px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
}

.sg-claim-flywheel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sg-green-dark);
  font-size: 15px;
  font-weight: 900;
}

.sg-claim-flywheel span {
  display: block;
  color: var(--sg-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sg-installer-seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 20px;
}

.sg-installer-seo-panel .sg-actions {
  grid-column: 1 / -1;
}

.sg-chip-block {
  display: grid;
  gap: 8px;
}

.sg-chip-block > span,
.sg-filter-note {
  color: var(--sg-muted);
  font-size: 13px;
  font-weight: 720;
}

.sg-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sg-chip-list button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--sg-line);
  border-radius: 999px;
  background: #fff;
  color: var(--sg-green-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
}

.sg-chip-list button:hover {
  border-color: var(--sg-green);
  background: var(--sg-soft);
}

.sg-filter-note {
  padding-top: 12px;
  border-top: 1px solid var(--sg-line);
  line-height: 1.45;
}

.sg-directory-toolbar {
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
  color: var(--sg-muted);
  font-size: 14px;
  font-weight: 720;
}

.sg-directory-toolbar a {
  color: var(--sg-green-dark);
  font-weight: 850;
  text-decoration: none;
}

.sg-listing-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sg-card {
  align-content: start;
  min-height: 360px;
}

.sg-card__top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.sg-card__badges,
.sg-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sg-card__badges span,
.sg-rating-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f6f9f7;
  color: var(--sg-muted);
  font-size: 12px;
  font-weight: 800;
}

.sg-card__badges span:first-child {
  color: var(--sg-blue);
  background: rgba(41, 103, 122, 0.1);
}

.sg-listing-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #edf5f1;
}

.sg-listing-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-listing-media--placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 45, 52, 0) 35%, rgba(17, 45, 52, 0.48) 100%);
  pointer-events: none;
}

.sg-listing-media__claim {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--sg-green-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(17, 45, 52, 0.16);
}

.sg-listing-media__claim:hover {
  color: var(--sg-green);
}

.sg-listing-media--profile {
  margin-bottom: 12px;
}

.sg-card__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sg-green), var(--sg-blue));
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.sg-score {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  background: var(--sg-green) !important;
  color: #fff !important;
  font-weight: 900;
}

.sg-rating-row .sg-distance {
  background: #e6f2ed;
  color: var(--sg-green-dark);
}

.sg-rating-row .sg-distance[hidden] {
  display: none;
}

.sg-card-actions {
  align-items: center;
  margin-top: auto;
}

.sg-card-actions .sg-button:only-child {
  width: 100%;
}

.sg-icon-link {
  color: var(--sg-green-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.sg-icon-link:hover {
  color: var(--sg-green);
}

.sg-no-results {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
}

.sg-no-results[hidden] {
  display: none;
}

.sg-no-results h3 {
  margin: 0 0 8px;
}

.sg-no-results p {
  color: var(--sg-muted);
}

.sg-profile-cta {
  padding: 18px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
}

.sg-profile-cta span {
  color: var(--sg-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.sg-profile-cta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sg-green-dark);
  font-size: 22px;
  line-height: 1.15;
}

.sg-assistant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.sg-assistant-panel,
.sg-assistant-side {
  padding: 22px;
}

.sg-assistant-panel {
  display: grid;
  gap: 18px;
}

.sg-assistant-messages {
  display: grid;
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding: 4px;
}

.sg-assistant-message {
  max-width: min(760px, 100%);
  padding: 13px 14px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fff;
}

.sg-assistant-message strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sg-green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sg-assistant-message p {
  margin: 0;
  color: var(--sg-ink);
  line-height: 1.5;
}

.sg-assistant-message.is-user {
  justify-self: end;
  background: var(--sg-soft);
  border-color: #c7dfce;
}

.sg-assistant-message.is-assistant {
  justify-self: start;
}

.sg-assistant-score {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--sg-line);
  color: var(--sg-muted) !important;
}

.sg-assistant-saved {
  margin-top: 10px !important;
  color: var(--sg-green-dark) !important;
  font-weight: 800;
}

.sg-assistant-form {
  padding-top: 16px;
  border-top: 1px solid var(--sg-line);
}

.sg-assistant-side {
  display: grid;
  gap: 16px;
}

.sg-assistant-side h2 {
  margin: 0;
}

.sg-site-chat {
  --sg-ink: #14211b;
  --sg-muted: #5d6a64;
  --sg-line: #dce7df;
  --sg-soft: #edf6ef;
  --sg-panel: #ffffff;
  --sg-green: #0f6b3d;
  --sg-green-dark: #084d2c;
  --sg-blue: #29677a;
  --sg-shadow: 0 1px 2px rgba(20, 33, 27, 0.08), 0 18px 48px rgba(20, 33, 27, 0.18);
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99990;
  color: var(--sg-ink);
  font-family: inherit;
}

.sg-site-chat *,
.sg-site-chat *::before,
.sg-site-chat *::after {
  box-sizing: border-box;
}

.sg-site-chat__launcher {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px 0 10px;
  border: 1px solid var(--sg-green);
  border-radius: 8px;
  background: var(--sg-green);
  color: #fff;
  box-shadow: var(--sg-shadow);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.sg-site-chat__launcher:hover {
  background: var(--sg-green-dark);
}

.sg-site-chat__launcher-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.sg-site-chat__window {
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 96px));
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto auto;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: var(--sg-panel);
  box-shadow: var(--sg-shadow);
}

.sg-site-chat__window[hidden] {
  display: none;
}

.sg-site-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--sg-line);
  background: #f8fbf8;
}

.sg-site-chat__head strong,
.sg-site-chat__head span {
  display: block;
}

.sg-site-chat__head strong {
  color: var(--sg-green-dark);
  font-size: 16px;
  font-weight: 900;
}

.sg-site-chat__head span {
  color: var(--sg-muted);
  font-size: 12px;
  line-height: 1.35;
}

.sg-site-chat__close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #fff;
  color: var(--sg-ink);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.sg-site-chat__messages {
  max-height: none;
  min-height: 180px;
  overflow: auto;
  padding: 14px;
  background: #fbfdf9;
}

.sg-site-chat__messages .sg-assistant-message {
  max-width: 92%;
  box-shadow: none;
}

.sg-site-chat__messages .sg-assistant-message p,
.sg-site-chat__form,
.sg-site-chat__form input,
.sg-site-chat__form select,
.sg-site-chat__form textarea,
.sg-site-chat__quote-link {
  font-size: 14px;
}

.sg-site-chat__prompts {
  display: flex;
  gap: 8px;
  padding: 0 14px 12px;
  overflow-x: auto;
  background: #fbfdf9;
}

.sg-site-chat__prompts button {
  min-height: 32px;
  white-space: nowrap;
  padding: 0 10px;
  border: 1px solid var(--sg-line);
  border-radius: 999px;
  background: #fff;
  color: var(--sg-green-dark);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.sg-site-chat__prompts button:hover {
  border-color: var(--sg-green);
  background: var(--sg-soft);
}

.sg-site-chat__form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--sg-line);
  background: #fff;
}

.sg-site-chat__form label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--sg-ink);
  font-size: 12px;
  font-weight: 800;
}

.sg-site-chat__form input,
.sg-site-chat__form select,
.sg-site-chat__form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  background: #fff;
  color: var(--sg-ink);
  font: inherit;
  padding: 9px 10px;
}

.sg-site-chat__form input[type="file"] {
  min-height: auto;
  padding: 8px;
  font-size: 13px;
}

.sg-site-chat__form textarea {
  min-height: 76px;
  resize: vertical;
}

.sg-site-chat__form input:focus,
.sg-site-chat__form select:focus,
.sg-site-chat__form textarea:focus {
  outline: 2px solid rgba(15, 107, 61, 0.18);
  border-color: var(--sg-green);
}

.sg-site-chat__details {
  border: 1px solid var(--sg-line);
  border-radius: 8px;
  background: #fbfdf9;
}

.sg-site-chat__details summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--sg-green-dark);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.sg-site-chat__details[open] {
  padding: 0 12px 12px;
}

.sg-site-chat__details[open] summary {
  margin: 0 -12px 10px;
  border-bottom: 1px solid var(--sg-line);
  background: #fff;
}

.sg-site-chat__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.sg-site-chat__fields label:first-child,
.sg-site-chat__details > label {
  grid-column: 1 / -1;
}

.sg-site-chat__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sg-site-chat__actions .sg-button {
  min-height: 40px;
  padding: 0 14px;
}

.sg-site-chat__quote-link {
  color: var(--sg-green-dark);
  font-weight: 850;
  text-decoration: none;
}

.sg-site-chat__quote-link:hover {
  color: var(--sg-green);
}

.sg-site-chat .sg-form-status {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .sg-service-grid,
  .sg-listing-grid-featured,
  .sg-guide-card-grid,
  .sg-trust-strip,
  .sg-claim-flywheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-resource-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sg-guide-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sg-stat-row,
  .sg-profile-kpis,
  .sg-installer-seo-panel {
    grid-template-columns: 1fr;
  }

  .sg-claim-band,
  .sg-section-kicker,
  .sg-directory-toolbar,
  .sg-directory-owner-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .sg-assistant-layout {
    grid-template-columns: 1fr;
  }

  .sg-ask-ben-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sg-service-grid,
  .sg-listing-grid-featured,
  .sg-guide-card-grid,
  .sg-trust-strip,
  .sg-claim-flywheel {
    grid-template-columns: 1fr;
  }

  .sg-resource-card-grid {
    grid-template-columns: 1fr;
  }

  .sg-site-chat {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .sg-site-chat__launcher {
    display: flex;
    width: 50px;
    min-width: 50px;
    padding: 0;
    margin-left: auto;
    border-radius: 50%;
  }

  .sg-site-chat__launcher > span:last-child {
    display: none;
  }

  .sg-site-chat__window {
    width: 100%;
    max-height: calc(100vh - 82px);
  }

  .sg-site-chat__fields {
    grid-template-columns: 1fr;
  }
}
