/* 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;
}

.logo-image {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo-image {
    height: 48px;
  }
}

/* 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(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 2rem 0;
}

.program-categories-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px solid var(--slate-200);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.program-categories-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-200);
}

.program-seal {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.3);
}

.program-seal svg {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

.program-categories-title-block {
  flex: 1;
}

.program-categories-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 0.375rem 0;
  letter-spacing: -0.01em;
}

.program-categories-subtitle {
  font-size: 0.9375rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}

.program-categories-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.program-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-category-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
}

.program-category-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .program-categories-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .program-category-row {
    justify-content: center;
  }
  
  .program-category-badge {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Legacy alignment badges */
.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: 28rem;
  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: #1e293b;
  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);
}

.footer-disclosure {
  margin-top: 2rem;
  padding: 1.25rem;
  background-color: #334155;
  border: 1px solid var(--slate-700);
  border-radius: 6px;
}

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

.footer-disclosure-text:last-child {
  margin-bottom: 0;
}

.footer-disclosure-text strong {
  color: var(--slate-300);
  font-weight: 700;
}

/* 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: 14px;
  padding: 1.5rem;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.service-card-solar {
  background-color: rgb(246 158 25 / 7%);
  border-color: rgba(246, 158, 25, 0.15);
}

.service-card-hvac {
  background-color: rgb(24 245 134 / 7%);
  border-color: rgba(24, 245, 134, 0.15);
}

.service-card-roofing {
  background-color: rgb(0 127 255 / 8%);
  border-color: rgba(0, 127, 255, 0.15);
}

.service-card-batteries {
  background-color: rgb(230,250,240)
  border-color: rgba(0, 255, 85, 0.15);
}

.service-card-electrical {
  background-color: rgb(255 0 0 / 7%);
  border-color: rgba(246, 158, 25, 0.15);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.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.teal { background-color: #ccfbf1; color: #0d9488; }
.service-card-icon.slate { background-color: #f1f5f9; color: #475569; }
.service-card-icon.emerald { background-color: #d1fae5; color: #059669; }
.service-card-icon.blue { background-color: #dbeafe; color: #2563eb; }

.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-solar .service-card-program {
  background-color: rgb(246 158 25 / 15%);
  color: #b45309;
}

.service-card-hvac .service-card-program {
  background-color: rgb(24 245 134 / 15%);
  color: #047857;
}

.service-card-roofing .service-card-program {
  background-color: rgb(0 127 255 / 15%);
  color: #1d4ed8;
}

.service-card-batteries .service-card-program {
  background-color: rgb(0 255 85 / 15%);
  color: #047857;
}

.service-card-electrical .service-card-program {
  background-color: rgb(246 158 25 / 15%);
  color: #b45309;
}

.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-abbr.amber {
  background-color: #fef3c7;
  color: #b45309;
}

.state-card-abbr.orange {
  background-color: #ffedd5;
  color: #c2410c;
}

.state-card-abbr.blue {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.state-card-abbr.emerald {
  background-color: #d1fae5;
  color: #047857;
}

.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;
}

/* State Program Cards - Reference Style */
.state-program-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.state-program-card:nth-child(1) {
  background-color: rgb(244 63 94 / 8%);
  border-color: rgba(244, 63, 94, 0.15);
}

.state-program-card:nth-child(2) {
  background-color: rgb(250 204 21 / 20%);
  border-color: rgba(250, 204, 21, 0.15);
}

.state-program-card:nth-child(3) {
  background-color: rgb(20 184 166 / 10%);
  border-color: rgba(20, 184, 166, 0.15);
}

.state-program-card:nth-child(4) {
  background-color: rgb(34 197 94 / 10%);
  border-color: rgba(34, 197, 94, 0.15);
}

.state-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.state-program-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.state-program-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.state-program-icon.icon-rose {
  background-color: rgb(244 63 94 / 15%);
}

.state-program-icon.icon-rose svg {
  color: #e11d48;
}

.state-program-icon.icon-yellow {
  background-color: rgb(250 204 21 / 25%);
}

.state-program-icon.icon-yellow svg {
  color: #ffae00;
}

.state-program-icon.icon-teal {
  background-color: rgb(20 184 166 / 20%);
}

.state-program-icon.icon-teal svg {
  color: #0d9488;
}

.state-program-icon.icon-green {
  background-color: rgb(34 197 94 / 20%);
}

.state-program-icon.icon-green svg {
  color: #16a34a;
}

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

.state-program-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.state-program-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-700);
  transition: color 0.2s ease;
}

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

.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 1fr;
  gap: 3rem;
  align-items: stretch;
}

.challenge-content {
  padding-left: 1rem;
}

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

.challenge-image-main {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  height: 100%;
}

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

.challenge-image-secondary {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
}

.challenge-image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.section-label-sm {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

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

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

.challenge-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.challenge-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.5;
}

.challenge-point svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

@media (max-width: 768px) {
  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .challenge-content {
    padding-left: 0;
  }
  
  .challenge-images {
    flex-direction: row;
  }
  
  .challenge-image-main img,
  .challenge-image-secondary img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .challenge-images {
    flex-direction: column;
  }
}

/* Incentive Box */
.incentive-box-wrapper {
  display: flex;
  gap: 2rem;
  grid-column: 1 / -1;
  margin-top: 1rem;
  align-items: stretch;
}

.incentive-box-wrapper .incentive-box {
  flex: 1;
  margin-top: 0;
  grid-column: auto;
}

.incentive-box-image {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
}

.incentive-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .incentive-box-wrapper {
    flex-direction: column;
  }
  
  .incentive-box-image {
    height: 250px;
  }
}

.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;
  }
}

.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: 14px;
  padding: 1.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.incentive-card:nth-child(1) {
  background-color: rgb(59 130 246 / 5%);
  border-color: rgba(59, 130, 246, 0.12);
}

.incentive-card:nth-child(2) {
  background-color: rgb(16 185 129 / 5%);
  border-color: rgba(16, 185, 129, 0.12);
}

.incentive-card:nth-child(3) {
  background-color: rgb(245 158 11 / 5%);
  border-color: rgba(245, 158, 11, 0.12);
}

.incentive-card:nth-child(4) {
  background-color: rgb(168 85 247 / 5%);
  border-color: rgba(168, 85, 247, 0.12);
}

.incentive-card:nth-child(5) {
  background-color: rgb(236 72 153 / 5%);
  border-color: rgba(236, 72, 153, 0.12);
}

.incentive-card:nth-child(6) {
  background-color: rgb(20 184 166 / 5%);
  border-color: rgba(20, 184, 166, 0.12);
}

.incentive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.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: rgb(59 130 246 / 12%);
  color: #1d4ed8;
}

.incentive-card-type.state {
  background-color: rgb(16 185 129 / 12%);
  color: #047857;
}

.incentive-card-type.utility {
  background-color: rgb(245 158 11 / 12%);
  color: #b45309;
}

.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;
  }
}

html, body {
  overflow-x: hidden;
}

.state-hero-bg {
  position: relative;

  width: 100vw;
  max-width: 100%;
  min-height: 450px;

  background-size: 105% auto; /* 👈 correct slight zoom */
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #4a5568;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: heroFadeIn 800ms ease-out forwards;
}

@media (max-width: 768px) {
  .state-hero-bg {
    min-height: 520px;
    background-size: cover;
  }
}



.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-bg::before,
.state-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 350px;
  background-color: white;
  z-index: 1;
}

.state-hero-bg::before {
  left: 0;
}

.state-hero-bg::after {
  right: 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-bg::before,
  .state-hero-bg::after {
    width: 100px;
  }
  
  .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-bg::before,
  .state-hero-bg::after {
    display: none;
  }
  
  .state-hero-content {
    padding: 3rem 1rem;
  }
  
  .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-logos-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.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: 96px;
  height: 96px;
  object-fit: contain;
}

.utility-logo-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--slate-100), var(--slate-200));
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
}

.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: 64px;
    height: 64px;
  }
}

/* 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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

/* Text Colors for Dark Sections */
.text-white {
  color: var(--white);
}

.text-slate-300 {
  color: var(--slate-300);
}

/* About Page Styles */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.about-challenges-box {
  background-color: var(--slate-800);
  border: 2px solid var(--slate-700);
  padding: 1.5rem;
}

.challenge-item {
  border-left: 4px solid var(--slate-600);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.challenge-item:last-child {
  margin-bottom: 0;
}

.challenge-item h4 {
  color: var(--slate-300);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.challenge-item p {
  color: var(--slate-400);
  font-size: 0.75rem;
  line-height: 1.6;
}

.what-we-list {
  list-style: none;
}

.what-we-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-700);
}

.what-we-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

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

/* Eligibility Page Styles */
.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.eligibility-content {
  padding-right: 2rem;
}

.eligibility-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.eligibility-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.benefit-icon svg {
  color: var(--teal-600);
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--slate-700);
}

.what-happens-next {
  background-color: var(--slate-100);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.what-happens-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.what-happens-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-600);
}

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

.disclaimer-banner {
  display: flex;
  gap: 1rem;
  background-color: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: 0.75rem;
  padding: 1rem;
}

.disclaimer-icon {
  flex-shrink: 0;
  color: var(--amber-600);
}

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

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

.disclaimer-text {
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.eligibility-form-container {
  position: sticky;
  top: 6rem;
}

.form-card-subtitle {
  font-size: 0.9375rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .eligibility-content {
    padding-right: 0;
  }
  
  .eligibility-form-container {
    position: static;
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .eligibility-title {
    font-size: 1.75rem;
  }
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
}

.success-popup.active {
  background-color: rgba(15, 23, 42, 0.7);
  opacity: 1;
}

.success-popup-content {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.success-popup.active .success-popup-content {
  transform: scale(1) translateY(0);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.success-popup-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.success-popup-content p {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Regulatory Awareness Section */
.regulatory-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 2.5rem;
}

.regulatory-header {
  margin-bottom: 2rem;
}

.regulatory-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
}

.regulatory-subtitle {
  font-size: 1rem;
  color: var(--slate-600);
}

.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.regulatory-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.regulatory-card:hover {
  border-color: var(--slate-300);
  background: var(--white);
}

.regulatory-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  border-radius: 0.625rem;
  color: var(--slate-500);
}

.regulatory-icon svg {
  width: 24px;
  height: 24px;
}

.regulatory-content {
  flex: 1;
}

.regulatory-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.regulatory-card-subtitle {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.regulatory-disclaimer {
  font-size: 0.875rem;
  color: var(--slate-500);
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-200);
}

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

@media (max-width: 640px) {
  .regulatory-grid {
    grid-template-columns: 1fr;
  }
  
  .regulatory-box {
    padding: 1.5rem;
  }
  
  .regulatory-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

/* Savings Section (Solar page) */
.savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.savings-content {
  padding-right: 1rem;
}

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

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

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

.savings-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.savings-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate-700);
  line-height: 1.5;
}

.savings-point svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.savings-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.savings-image-card {
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}

.savings-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .savings-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .savings-content {
    padding-right: 0;
  }
  
  .savings-images {
    flex-direction: row;
  }
  
  .savings-image-card {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .savings-images {
    flex-direction: column;
  }
}

/* Process Cards (How SafeGrid Works) */
.process-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

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

.process-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--teal-600);
  color: var(--white);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.process-content {
  padding: 1.5rem;
}

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

.process-step-label svg {
  color: var(--teal-600);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

.process-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-point {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  line-height: 1.4;
}

.process-point svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.process-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
}

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

@media (max-width: 768px) {
  .process-image-wrapper {
    height: 200px;
  }
}

.program-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Badges Section */
.badges-section {
  padding: 4rem 0;
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.badge-item:hover {
  transform: scale(1.05);
}

.badge-item img {
  height: 270px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .badges-section {
    padding: 3rem 0;
  }
  
  .badges-grid {
    gap: 2.5rem;
  }
  
  .badge-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .badges-grid {
    gap: 2rem;
  }
  
  .badge-item img {
    height: 140px;
  }
}

/* Google Places Autocomplete Styling */
.pac-container {
  background-color: #fff;
  z-index: 9999;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 1px solid var(--slate-200);
  font-family: inherit;
  margin-top: 4px;
}

.pac-item {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  border-top: 1px solid var(--slate-100);
}

.pac-item:first-child {
  border-top: none;
}

.pac-item:hover {
  background-color: var(--slate-50);
}

.pac-item-selected {
  background-color: var(--slate-100);
}

.pac-icon {
  display: none;
}

.pac-item-query {
  font-weight: 600;
  color: var(--slate-900);
}

.pac-matched {
  font-weight: 700;
}
