/* SafeGrid Energy Program - Main Stylesheet */

/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --white: #ffffff;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--slate-50);
  color: var(--slate-700);
  letter-spacing: 0.01em;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background-color: rgba(71, 85, 105, 0.2);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  color: var(--slate-900);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.flex-grow {
  flex-grow: 1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--slate-100);
  border-bottom: 2px solid var(--slate-300);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-container { height: 5rem; }
}

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

.logo-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--slate-800);
  border: 2px solid var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--slate-100);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-subtext {
  font-size: 0.5625rem;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Navigation */
.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.nav-item:hover {
  color: var(--slate-900);
}

.nav-item svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 18rem;
  background: var(--white);
  border: 2px solid var(--slate-300);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0;
  display: none;
  z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  transition: background-color 0.2s;
  border-bottom: 1px solid var(--slate-200);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--slate-100);
}

.dropdown-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--slate-600);
}

.dropdown-item span {
  color: var(--slate-800);
  font-size: 0.75rem;
  font-weight: 600;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--teal-700);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--teal-800);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-dark {
  background-color: var(--slate-800);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--slate-900);
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-700);
}

/* Top Banner */
.top-banner {
  background-color: var(--slate-700);
  color: var(--slate-300);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.top-banner-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-banner-content svg {
  width: 0.875rem;
  height: 0.875rem;
}

.top-banner strong {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Program Alignment Bar */
.program-alignment-bar {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 1rem 0;
}

.alignment-header {
  margin-bottom: 1rem;
}

.alignment-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-600);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.alignment-label svg {
  width: 1rem;
  height: 1rem;
}

.alignment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.alignment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}

.alignment-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.badge-blue {
  background-color: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.badge-slate {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
}

.badge-yellow {
  background-color: #fef9c3;
  border-color: #fde047;
  color: #854d0e;
}

.badge-purple {
  background-color: #f3e8ff;
  border-color: #d8b4fe;
  color: #6b21a8;
}

.badge-green {
  background-color: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.badge-amber {
  background-color: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}

.badge-red {
  background-color: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

.badge-emerald {
  background-color: #d1fae5;
  border-color: #6ee7b7;
  color: #065f46;
}

.badge-orange {
  background-color: #ffedd5;
  border-color: #fdba74;
  color: #9a3412;
}

.badge-indigo {
  background-color: #e0e7ff;
  border-color: #a5b4fc;
  color: #3730a3;
}

.alignment-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.75rem;
}

/* Hero Section */
.hero {
  background-color: var(--white);
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.hero-image-container {
  border: 2px solid var(--slate-300);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 2.25rem; }
}

/* Program Badges */
.program-badges {
  background-color: var(--slate-100);
  border: 2px solid var(--slate-300);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.program-badges-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.badge svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--slate-500);
}

/* Form Card */
.form-card {
  background-color: var(--white);
  border: 2px solid var(--slate-200);
  padding: 1.5rem;
}

.form-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--slate-300);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-input::placeholder {
  color: var(--slate-400);
}

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

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.section-gray {
  background-color: var(--slate-50);
}

.section-dark {
  background-color: var(--slate-800);
  color: var(--white);
  border-top: 2px solid var(--slate-700);
  border-bottom: 2px solid var(--slate-700);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  background-color: var(--slate-800);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 1.875rem; }
}

.section-description {
  font-size: 0.875rem;
  color: var(--slate-700);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Step Card */
.step-card {
  background-color: var(--slate-50);
  border: 2px solid var(--slate-300);
  overflow: hidden;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--slate-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
}

.step-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-bottom: 2px solid var(--slate-300);
}

.step-content {
  padding: 1.25rem;
}

.step-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.step-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.75rem;
  color: var(--slate-700);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.step-points {
  list-style: none;
}

.step-point {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-600);
  margin-bottom: 0.375rem;
}

.step-point svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--slate-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Qualification Cards */
.qual-card {
  background-color: var(--slate-700);
  border: 2px solid var(--slate-600);
  padding: 1.25rem;
}

.qual-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--slate-900);
  border: 1px solid var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.qual-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate-300);
}

.qual-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.qual-description {
  font-size: 0.75rem;
  color: var(--slate-300);
  line-height: 1.5;
}

/* Footer */
.footer {
  background-color: var(--slate-800);
  color: var(--slate-400);
  border-top: 2px solid var(--slate-700);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--slate-700);
  border: 2px solid var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--slate-200);
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand-tagline {
  font-size: 0.5625rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.footer-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--slate-400);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--slate-400);
  padding: 0.375rem 0;
  display: block;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--white);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-teal { color: var(--teal-700); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.hidden { display: none; }

@media (min-width: 1024px) {
  .lg-hidden { display: none; }
  .lg-flex { display: flex; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--slate-200);
  padding: 1.5rem 1rem;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-section {
  margin-bottom: 1rem;
}

.mobile-menu-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--slate-700);
}

.mobile-menu-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal-600);
}

/* Utility Badges */
.utility-section {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.utility-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.utility-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--slate-200);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.utility-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--slate-600);
}

.utility-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.utility-description {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.utility-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .utility-badges-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .utility-badges-grid { grid-template-columns: repeat(5, 1fr); }
}

.utility-badge {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.utility-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.utility-badge-icon.blue { background-color: #2563eb; }
.utility-badge-icon.orange { background-color: #f97316; }
.utility-badge-icon.sky { background-color: #0ea5e9; }
.utility-badge-icon.dark-blue { background-color: #1e40af; }
.utility-badge-icon.green { background-color: #16a34a; }

.utility-badge-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-600);
  line-height: 1.2;
}

.utility-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.5;
}

/* Service Page Hero */
.service-hero {
  background: linear-gradient(to bottom, var(--slate-50), var(--white));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.service-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-hero-grid { grid-template-columns: 1fr 1fr; }
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.service-label.solar {
  background-color: #fef3c7;
  color: #d97706;
}

.service-label.hvac {
  background-color: #dbeafe;
  color: #2563eb;
}

.service-label.roofing {
  background-color: #fee2e2;
  color: #dc2626;
}

.service-label.batteries {
  background-color: #d1fae5;
  color: #059669;
}

.service-label.electrical {
  background-color: #fef9c3;
  color: #ca8a04;
}

.service-label svg {
  width: 1rem;
  height: 1rem;
}

.service-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .service-title { font-size: 3rem; }
}

.service-description {
  font-size: 1.25rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Program Alignment Bar */
.program-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 0.75rem 0;
}

.program-bar-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.program-bar-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-500);
}

.program-bar-label svg {
  width: 0.875rem;
  height: 0.875rem;
}

.program-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.program-bar-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* State Page */
.state-hero {
  padding: 4rem 0;
  background-color: var(--white);
}

.state-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--slate-800);
  border: 2px solid var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.state-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.state-label svg {
  width: 0.875rem;
  height: 0.875rem;
}

.state-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.state-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 48rem;
}

/* Program Highlights */
.highlights-section {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.highlights-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.highlights-list {
  list-style: none;
}

.highlights-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.highlights-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.highlights-item span {
  font-size: 0.9375rem;
  color: var(--slate-700);
}

/* Service Cards */
.service-card {
  display: block;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon.amber { background-color: #fef3c7; color: #d97706; }
.service-card-icon.blue { background-color: #dbeafe; color: #2563eb; }
.service-card-icon.slate { background-color: #f1f5f9; color: #475569; }
.service-card-icon.emerald { background-color: #d1fae5; color: #059669; }

.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0;
}

.service-card-description {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-card-program {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--slate-100);
  color: var(--slate-600);
  border-radius: 9999px;
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-700);
}

.service-card:hover .service-card-link {
  color: var(--teal-800);
}

.service-card:hover .service-card-title {
  color: var(--teal-700);
}

/* States Section */
.states-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.state-card {
  display: block;
  background-color: var(--teal-50);
  border: 1px solid #99f6e4;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.state-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.state-card-primary {
  background-color: var(--teal-50);
  border-color: #99f6e4;
}

.state-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.state-card-abbr {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.state-card-abbr.primary {
  background-color: var(--teal-700);
  color: var(--white);
}

.state-card-abbr.secondary {
  background-color: var(--slate-200);
  color: var(--slate-700);
}

.state-card-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.state-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
}

.state-card-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .state-card-highlights {
    grid-template-columns: 1fr;
  }
}

.state-card-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.state-card-highlight svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.state-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-700);
}

.state-card:hover .state-card-link {
  color: var(--teal-800);
}

.states-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

@media (max-width: 640px) {
  .states-secondary-grid {
    grid-template-columns: 1fr;
  }
}

.state-card-secondary {
  display: block;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.state-card-secondary:hover {
  border-color: var(--slate-300);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.state-card-secondary-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.state-card-secondary-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0;
}

.state-card-secondary-list {
  list-style: none;
  margin-bottom: 1rem;
}

.state-card-secondary-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  padding: 0.25rem 0;
}

.state-card-secondary-list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.states-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 2rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--slate-100);
  border-top: 2px solid var(--slate-300);
  padding: 4rem 0;
}

.cta-content {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.cta-label {
  display: inline-block;
  background-color: var(--slate-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .cta-title { font-size: 1.875rem; }
}

.cta-description {
  font-size: 0.875rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-dark {
  background-color: var(--slate-800);
  color: var(--white);
  border: 1px solid var(--slate-700);
}

.btn-dark:hover {
  background-color: var(--slate-900);
}

.btn-outline-dark {
  background-color: var(--white);
  color: var(--slate-800);
  border: 2px solid var(--slate-400);
}

.btn-outline-dark:hover {
  background-color: var(--slate-50);
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-contact {
    flex-direction: row;
  }
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.cta-contact-item svg {
  width: 1rem;
  height: 1rem;
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Challenge Section */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.challenge-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-image-main {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.challenge-image-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.challenge-image-secondary {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.challenge-image-secondary img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.section-label-sm {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  margin-bottom: 1rem;
}

.challenge-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.challenge-description {
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.challenge-points {
  list-style: none;
}

.challenge-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--slate-600);
}

.challenge-point svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Incentive Box */
.incentive-box {
  background-color: var(--slate-50);
  border-radius: 1rem;
  padding: 2rem;
  grid-column: 1 / -1;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .incentive-box {
    grid-column: auto;
    margin-top: 0;
  }
  .challenge-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.incentive-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
  margin-bottom: 1rem;
}

.incentive-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.incentive-description {
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.incentive-points {
  list-style: none;
}

.incentive-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--slate-700);
}

.incentive-point svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Incentive Cards */
.incentive-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.incentive-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.incentive-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.incentive-card-type {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.incentive-card-type.federal {
  background-color: #dbeafe;
  color: #1e40af;
}

.incentive-card-type.state {
  background-color: #d1fae5;
  color: #065f46;
}

.incentive-card-type.utility {
  background-color: #fef3c7;
  color: #92400e;
}

.incentive-card-savings {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
}

.incentive-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.incentive-card-description {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Disclaimer Banner */
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 2rem;
}

.disclaimer-banner svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--slate-500);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer-banner p {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Help Section */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

.help-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-400);
  margin-bottom: 1rem;
}

.help-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.help-description {
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.help-steps {
  list-style: none;
}

.help-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.help-step-number {
  width: 2rem;
  height: 2rem;
  background-color: var(--teal-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.help-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.help-step-description {
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* FAQ Section */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* State Hero with Background Image and Fade Animation */
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

.state-hero-bg {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  animation: heroFadeIn 800ms ease-out forwards;
}

.state-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 50%, rgba(51, 65, 85, 0.6) 100%);
}

.state-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.state-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}

.state-hero-text {
  color: white;
}

.state-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.state-abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.state-status {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.2);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-300);
}

.state-title-lg {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: white;
}

.state-description-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.state-highlights-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.highlights-card-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--teal-500);
}

.highlights-card-title svg {
  color: var(--teal-600);
}

.highlights-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-card-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}

.highlights-card-list li:last-child {
  border-bottom: none;
}

.highlights-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 50%;
}

@media (max-width: 1024px) {
  .state-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .state-hero-bg {
    min-height: auto;
  }
  
  .state-title-lg {
    font-size: 2.25rem;
  }
  
  .state-highlights-card {
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .state-hero-content {
    padding: 3rem 0;
  }
  
  .state-title-lg {
    font-size: 1.875rem;
  }
  
  .state-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .state-abbr {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
}

/* Utility Logo Cards */
.utility-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.utility-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  transition: all 0.2s ease;
}

.utility-logo-card:hover {
  border-color: var(--teal-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.utility-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.utility-logo-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-700);
  text-align: center;
}

@media (max-width: 1024px) {
  .utility-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .utility-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .utility-logo-img {
    width: 48px;
    height: 48px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* State Page - Program Highlights Box */
.highlights-box {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.highlights-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--teal-500);
}

.highlights-box-title svg {
  color: var(--teal-600);
}

.highlights-box-list {
  list-style: none;
}

.highlights-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700);
}

.highlights-box-list li:last-child {
  border-bottom: none;
}

.highlight-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--teal-500);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* Context Images Grid */
.context-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.context-image-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.context-image-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

@media (max-width: 768px) {
  .context-images-grid {
    grid-template-columns: 1fr;
  }
}

/* Mandate Cards */
.mandate-card {
  background-color: var(--slate-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
}

.mandate-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--slate-200);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mandate-icon svg {
  color: var(--slate-600);
}

.mandate-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.mandate-description {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Service Link Cards (State Pages) */
.service-link-card {
  display: block;
  background-color: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: var(--teal-500);
}

.service-link-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-link-description {
  font-size: 0.8125rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-link-arrow {
  color: var(--teal-400);
  font-size: 1.25rem;
}

/* Disclaimer Banner */
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-top: 2rem;
}

.disclaimer-banner svg {
  flex-shrink: 0;
  color: var(--slate-500);
  margin-top: 0.125rem;
}

.disclaimer-banner p {
  font-size: 0.75rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* State Hero Text Center */
.state-hero-text-center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

/* Cards Grid 2 Column */
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }
}
