.map-section {
  padding: 56px 0 48px;
  background: var(--bg-white);
}
.map-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.us-map {
  width: 100%;
  height: auto;
  display: block;
}
.us-map .state-path {
  fill: #A8C9A0;
  stroke: var(--bg);
  stroke-width: 1;
  cursor: pointer;
  transition: fill 0.15s ease;
}
.us-map .state-path:hover { fill: var(--green); }
.us-map .state-path:hover .state-label { fill: #fff; }

.state-label-group { cursor: pointer; }
.state-label-group:hover .state-path { fill: var(--green); }

.map-tooltip {
  position: fixed;
  background: var(--green-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 999;
  white-space: nowrap;
}
.map-tooltip.visible { opacity: 1; }

.state-grid-section {
  padding: 0 0 56px;
  background: var(--bg-white);
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.state-tile {
  display: block;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
  transition: all 0.15s;
  cursor: pointer;
}
.state-tile:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
