/* =============================================
   SOLARCALC PREMIUM THEME — MAIN CSS
   Solar Subsidy Calculator India
   ============================================= */

/* --- GOOGLE FONTS loaded via functions.php --- */

/* --- CSS VARIABLES --- */
:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --gold:      #f59e0b;
  --gold-dark: #d97706;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --white:     #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Poppins', 'Inter', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);
  --shadow-green: 0 8px 32px rgba(22,163,74,.25);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-600); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-600);
}
.btn-outline:hover {
  background: var(--green-50);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-50);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-cta {
  background: var(--gold);
  color: var(--gray-900);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--gray-900);
  transform: translateY(-2px);
}

.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-xl  { padding: 16px 36px; font-size: 1.05rem; }
.full-width { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--green-700); }
.logo-sub  { font-size: .7rem; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .92rem;
  color: var(--gray-700);
}
.nav-list li a:hover,
.nav-list li.current-menu-item a {
  background: var(--green-50);
  color: var(--green-700);
}

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f4c2a 0%, #16a34a 50%, #22c55e 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  color: var(--white);
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.shape-3 { width: 200px; height: 200px; top: 30%; left: 30%; animation: float 8s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: #86efac;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat { text-align: center; padding: 0 24px; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: #86efac; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  z-index: 1;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--green-800);
  padding: 14px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
}
.trust-icon { font-size: 1rem; }

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-header p { color: var(--gray-600); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* =============================================
   MINI CALCULATOR
   ============================================= */
.mini-calc-section { background: var(--gray-50); }

.mini-calc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--gray-100);
}

.mini-calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-weight: 600; font-size: .88rem; color: var(--gray-700); }

select, input[type="number"], input[type="text"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
select:focus, input:focus, textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
}

.mini-calc-result {
  margin-top: 24px;
  border-top: 1px solid var(--gray-100);
  padding-top: 24px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
}
.result-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
  border-bottom: none;
  margin-top: 4px;
}
.result-row strong { color: var(--gray-900); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.step-card p { color: var(--gray-600); font-size: .92rem; line-height: 1.6; }

/* =============================================
   SUBSIDY TABLE
   ============================================= */
.subsidy-table-section { background: var(--gray-50); }

.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.subsidy-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .95rem;
}
.subsidy-table th {
  background: var(--green-700);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.subsidy-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); }
.subsidy-table tr:last-child td { border-bottom: none; }
.subsidy-table tr:hover td { background: var(--green-50); }
.table-featured td { background: #fffbeb; }
.table-featured td:first-child { font-weight: 600; }
.highlight-green { color: var(--green-700); font-weight: 700; font-size: 1.05rem; }
.table-note {
  margin-top: 16px;
  font-size: .88rem;
  color: var(--gray-600);
  padding: 12px 16px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-500);
}

/* =============================================
   STATES GRID (HOMEPAGE)
   ============================================= */
.states-section { background: var(--white); }

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.state-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--gray-800);
}
.state-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--green-700);
}
.state-flag {
  width: 8px;
  height: 32px;
  border-radius: 4px;
  flex-shrink: 0;
}
.state-info { flex: 1; min-width: 0; }
.state-info strong { display: block; font-size: .92rem; font-weight: 600; }
.state-info span { display: block; font-size: .78rem; color: var(--gray-500); margin-top: 2px; }
.state-arrow { color: var(--gray-400); flex-shrink: 0; }

.states-cta { text-align: center; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--gray-50); }

.faq-grid { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green-400); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .98rem;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-700); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--green-600);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: .95rem;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta-section { padding: 80px 0; }

.final-cta-card {
  background: linear-gradient(135deg, #0f4c2a, #16a34a);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.final-cta-card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta-card p { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.05rem; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }

.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-trust span { color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 500; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #0f4c2a 0%, #16a34a 100%);
  padding: 56px 0 48px;
  color: var(--white);
}
.page-hero-green { background: linear-gradient(135deg, #065f46, #16a34a); }
.page-hero-dark  { background: linear-gradient(135deg, #111827, #1f2937); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 640px; line-height: 1.7; }
.breadcrumb { font-size: .83rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }

.state-custom-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
  line-height: 1.8;
  color: var(--gray-700);
}
.state-custom-content h2, .state-custom-content h3 { color: var(--gray-900); margin-top: 24px; margin-bottom: 12px; }
.state-custom-content p { margin-bottom: 16px; }
.state-custom-content ul, .state-custom-content ol { padding-left: 24px; margin-bottom: 16px; }
.state-custom-content li { margin-bottom: 8px; }

/* =============================================
   CALCULATOR PAGE
   ============================================= */
.calculator-section { background: var(--gray-50); padding: 60px 0; }

.calc-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: start;
}

.calc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.calc-header {
  background: linear-gradient(135deg, #0f4c2a, #16a34a);
  padding: 28px 32px;
  color: var(--white);
}
.calc-header h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.calc-header p { color: rgba(255,255,255,.8); font-size: .9rem; }
.calc-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 22px; }

.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label { font-weight: 600; font-size: .88rem; color: var(--gray-700); }
.field-hint { font-size: .78rem; color: var(--gray-400); }

.size-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  padding: 8px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-700);
}
.size-btn:hover, .size-btn.active {
  border-color: var(--green-600);
  background: var(--green-50);
  color: var(--green-700);
}

/* RESULTS PANEL */
.results-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-height: 400px;
  overflow: hidden;
}

.results-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
  text-align: center;
  color: var(--gray-400);
}
.placeholder-icon { font-size: 4rem; margin-bottom: 16px; }
.results-placeholder h3 { color: var(--gray-600); margin-bottom: 8px; }
.results-placeholder p { font-size: .92rem; }

.results-content { padding: 32px; }
.result-header { margin-bottom: 24px; }
.result-header h2 { font-size: 1.2rem; color: var(--gray-900); margin-bottom: 4px; }
.result-state-name { font-size: .88rem; color: var(--gray-500); }

.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.result-card {
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.card-central { background: #eff6ff; }
.card-state   { background: #fefce8; }
.card-total   { background: var(--green-50); border: 2px solid var(--green-200); }
.rc-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: 8px; }
.rc-amount { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.card-total .rc-amount { color: var(--green-700); }
.rc-note { font-size: .75rem; color: var(--gray-400); }

.result-breakdown { margin-bottom: 28px; }
.result-breakdown h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--gray-800); }
.breakdown-table { border: 1px solid var(--gray-100); border-radius: var(--radius-md); overflow: hidden; }
.br-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .92rem;
}
.br-row:last-child { border-bottom: none; }
.br-row span { color: var(--gray-600); }
.br-row strong { color: var(--gray-900); font-weight: 600; }
.br-deduct strong { color: var(--green-700); }
.br-deduct strong::before { content: '− '; }
.br-net { background: var(--green-50); font-weight: 700; }
.br-net span, .br-net strong { color: var(--green-800); font-weight: 700; }
.br-highlight { background: #fffbeb; }
.br-highlight strong { color: var(--gold-dark); font-weight: 700; }

/* HOW TO APPLY */
.how-apply-section { background: var(--white); }
.apply-steps { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.apply-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}
.apply-step:last-child { border-bottom: none; }
.as-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.as-content h3 { font-weight: 700; margin-bottom: 6px; }
.as-content p { color: var(--gray-600); font-size: .93rem; }

/* =============================================
   STATES HUB PAGE
   ============================================= */
.states-hub-section { background: var(--gray-50); padding: 60px 0; }

.states-search-bar { margin-bottom: 32px; max-width: 480px; }
.states-search-bar input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.states-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.state-full-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  color: inherit;
}
.state-full-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sfc-header {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.sfc-header h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin: 0; }
.sfc-badge {
  background: rgba(255,255,255,.2);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.sfc-body { padding: 16px 20px; flex: 1; }
.sfc-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
}
.sfc-row:last-child { border-bottom: none; }
.sfc-row span { color: var(--gray-500); }
.sfc-row strong { color: var(--gray-800); }
.sfc-footer {
  padding: 14px 20px;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 600;
  font-size: .88rem;
  border-top: 1px solid var(--green-100);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--gray-50); padding: 64px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.contact-form-card h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray-600); margin-bottom: 28px; }

form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; font-size: .88rem; color: var(--gray-700); }
.form-note { text-align: center; color: var(--gray-400); font-size: .82rem; margin-top: 8px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--green-700); }
.form-success p { color: var(--gray-600); margin-bottom: 24px; }

/* SIDEBAR CARDS */
.why-us-card, .process-card, .quick-calc-cta {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-bottom: 20px;
}
.why-us-card h3, .process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--gray-900); }
.why-list { display: flex; flex-direction: column; gap: 10px; }
.why-list li { font-size: .9rem; color: var(--gray-700); }
.mini-steps { display: flex; flex-direction: column; gap: 12px; }
.ms-item { display: flex; align-items: center; gap: 12px; }
.ms-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; flex-shrink: 0;
}
.ms-item p { font-size: .9rem; color: var(--gray-700); }
.quick-calc-cta p { color: var(--gray-600); font-size: .9rem; margin-bottom: 12px; }

/* =============================================
   BLOG LISTING PAGE (home.php)
   ============================================= */

/* Category filter bar */
.blog-filter-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.category-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--green-400); color: var(--green-700); background: var(--green-50); }
.cat-pill.active { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.cat-count {
  background: rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 1px 7px;
  font-size: .75rem;
}
.cat-pill.active .cat-count { background: rgba(255,255,255,.25); }
.cat-pill:not(.active) .cat-count { background: var(--gray-100); color: var(--gray-500); }

/* Blog listing layout */
.blog-listing-section { background: var(--gray-50); padding: 48px 0 80px; }

.blog-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* FEATURED POST CARD */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  margin-bottom: 32px;
  transition: var(--transition);
}
.blog-featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.bfc-image {
  position: relative;
  display: block;
  min-height: 280px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
}
.bfc-image img { width: 100%; height: 100%; object-fit: cover; }
.bfc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.2), transparent);
}
.bfc-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bfc-icon { font-size: 5rem; }

.bfc-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.bfc-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; line-height: 1.3; }
.bfc-title a { color: var(--gray-900); }
.bfc-title a:hover { color: var(--green-700); }
.bfc-excerpt { color: var(--gray-600); font-size: .95rem; line-height: 1.7; }

/* BLOG GRID */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.blog-grid-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-grid-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-200); }

.bgc-image {
  display: block;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-400));
}
.bgc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-grid-card:hover .bgc-image img { transform: scale(1.05); }
.bgc-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.bgc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bgc-title { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.bgc-title a { color: var(--gray-900); }
.bgc-title a:hover { color: var(--green-700); }
.bgc-excerpt { color: var(--gray-500); font-size: .88rem; line-height: 1.6; flex: 1; }
.bgc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-100); }

/* Blog meta (shared) */
.blog-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.blog-cat {
  background: var(--green-100);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-cat:hover { background: var(--green-200); color: var(--green-800); }
.blog-date { font-size: .8rem; color: var(--gray-400); }
.blog-read { font-size: .8rem; color: var(--gray-400); }
.read-more { color: var(--green-700); font-weight: 600; font-size: .88rem; white-space: nowrap; }
.read-more:hover { color: var(--green-800); }

/* EMPTY STATE */
.blog-empty-state {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.bes-icon { font-size: 4rem; margin-bottom: 20px; }
.blog-empty-state h2 { font-size: 1.6rem; color: var(--gray-800); margin-bottom: 12px; }
.blog-empty-state p { color: var(--gray-500); font-size: 1rem; max-width: 480px; margin: 0 auto 28px; }
.bes-topics { margin-bottom: 32px; }
.bes-topics h3 { font-size: .95rem; color: var(--gray-600); margin-bottom: 14px; font-weight: 600; }
.topic-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.topic-pills span {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .83rem;
  font-weight: 500;
}

/* SIDEBAR (enhanced) */
.sidebar-calc {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  border: none;
  text-align: center;
}
.sidebar-calc .sw-icon { font-size: 2.5rem; margin-bottom: 8px; }
.sidebar-calc h3 { color: var(--white); }
.sidebar-calc p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 16px; }
.sidebar-calc .btn-primary { background: var(--white); color: var(--green-700); border-color: var(--white); }
.sidebar-calc .btn-primary:hover { background: var(--green-50); }

.sidebar-cat-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-cat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-700);
  transition: var(--transition);
}
.sidebar-cat-list li a:hover { background: var(--green-50); color: var(--green-700); }
.cat-post-count {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: .75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}

.sidebar-consult {
  background: #fffbeb;
  border-color: #fde68a;
}
.sidebar-consult h3 { color: var(--gray-900); }
.consult-bullets { margin: 12px 0; }
.consult-bullets li { font-size: .88rem; color: var(--gray-700); padding: 4px 0; }

/* =============================================
   BLOG (archive.php / category pages)
   ============================================= */
.blog-section { background: var(--white); padding: 60px 0; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.blog-main { display: flex; flex-direction: column; gap: 32px; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-thumb img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.blog-cat { background: var(--green-100); color: var(--green-700); font-size: .78rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.blog-date { font-size: .82rem; color: var(--gray-400); }
.blog-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: var(--gray-900); }
.blog-title a:hover { color: var(--green-700); }
.blog-excerpt { color: var(--gray-600); font-size: .92rem; margin-bottom: 16px; }
.read-more { color: var(--green-700); font-weight: 600; font-size: .9rem; }
.read-more:hover { color: var(--green-800); }

.no-posts {
  text-align: center;
  padding: 64px 40px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
}
.no-posts-icon { font-size: 4rem; margin-bottom: 16px; }
.no-posts h2 { margin-bottom: 12px; color: var(--gray-800); }
.no-posts p { color: var(--gray-600); margin-bottom: 24px; }

/* SIDEBAR */
.blog-sidebar, .single-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-widget h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-900); }
.sidebar-widget > p { color: var(--gray-600); font-size: .88rem; margin-bottom: 12px; }
.sidebar-cta { background: var(--green-50); border-color: var(--green-200); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links li a { font-size: .9rem; color: var(--gray-700); padding: 4px 0; display: block; }
.sidebar-links li a:hover { color: var(--green-700); }

/* =============================================
   SINGLE POST
   ============================================= */
.single-hero {
  background: linear-gradient(135deg, #0f4c2a, #16a34a);
  padding: 56px 0 48px;
  color: var(--white);
}
.single-meta { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.single-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
}
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 80px;
}
.single-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.post-body { line-height: 1.8; color: var(--gray-700); }
.post-body h2, .post-body h3 { color: var(--gray-900); margin: 28px 0 12px; font-family: var(--font-head); }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 16px; }
.post-body li { margin-bottom: 8px; }
.post-cta-box {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
}
.post-cta-box h3 { color: var(--green-800); margin-bottom: 8px; }
.post-cta-box p { color: var(--gray-600); margin-bottom: 16px; font-size: .95rem; }

/* =============================================
   GENERIC PAGE
   ============================================= */
.page-content {
  padding-top: 60px;
  padding-bottom: 80px;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 780px;
}
.page-content h2, .page-content h3 { color: var(--gray-900); margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-trust { display: flex; flex-direction: column; gap: 6px; }
.footer-trust span { font-size: .82rem; color: rgba(255,255,255,.5); }

.footer-links h4 {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-links ul li a:hover { color: var(--green-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.footer-bottom-left p { font-size: .83rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-disclaimer a { color: rgba(255,255,255,.5); }
.footer-bottom-right { display: flex; gap: 24px; flex-shrink: 0; }
.footer-bottom-right a { font-size: .83rem; color: rgba(255,255,255,.4); }
.footer-bottom-right a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-700);
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .calc-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-page-layout { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .result-cards { grid-template-columns: repeat(3, 1fr); }
  .blog-featured-card { grid-template-columns: 1fr; }
  .bfc-image { min-height: 220px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .header-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
  }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 8px; }
  .nav-list li a { font-size: 1.1rem; padding: 14px 20px; display: block; border-radius: var(--radius-md); }

  .hero { padding: 64px 0 48px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  .mini-calc-fields { grid-template-columns: 1fr; }

  .trust-inner { gap: 20px; }

  .result-cards { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom-right { flex-wrap: wrap; gap: 16px; }

  .states-full-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-filter-section { top: 0; position: relative; }

  .cta-buttons { flex-direction: column; align-items: stretch; }
  .final-cta-card { padding: 40px 24px; }

  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 1.3rem; }
}

/* =============================================
   UTILITIES & ANIMATIONS
   ============================================= */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Fade-in on scroll (JS adds .visible class) */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================
   STATE DETAIL PAGE
   ============================================= */
.state-summary-section { background: var(--gray-50); padding: 48px 0; }
.state-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ss-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.ss-central { border-top: 4px solid #3b82f6; }
.ss-state   { border-top: 4px solid var(--gold); }
.ss-total   { border-top: 4px solid var(--green-500); background: var(--green-50); }
.ss-info    { border-top: 4px solid #8b5cf6; }
.ss-icon    { font-size: 2rem; margin-bottom: 10px; }
.ss-label   { font-size: .8rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing:.05em; margin-bottom: 8px; }
.ss-amount  { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.ss-total .ss-amount { color: var(--green-700); }
.ss-note    { font-size: .78rem; color: var(--gray-400); }

.state-detail-section { padding: 56px 0; }
.state-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.state-main { display: flex; flex-direction: column; gap: 40px; }
.state-card-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.state-card-block h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--gray-900); }

.state-sidebar { display: flex; flex-direction: column; gap: 20px; }
.state-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.state-info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.sic-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .88rem;
}
.sic-row:last-of-type { border-bottom: none; }
.sic-row span { color: var(--gray-500); }
.sic-row strong { color: var(--gray-800); text-align: right; max-width: 55%; }

@media (max-width: 1024px) {
  .state-detail-layout { grid-template-columns: 1fr; }
  .state-summary-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .state-summary-grid { grid-template-columns: 1fr 1fr; }
  .state-card-block { padding: 24px 16px; }
}
