.charging-landing { width: min(1080px, calc(100vw - 32px)); }
.charging-hero { text-align: left; }

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

.charging-option {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel-strong), rgba(8, 18, 26, 0.9));
  box-shadow: var(--shadow);
}

.charging-option--featured {
  border-color: rgba(30, 227, 143, 0.5);
  background: linear-gradient(160deg, rgba(12, 49, 43, 0.95), rgba(8, 18, 26, 0.92));
}

.option-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.charging-option h2 { margin-bottom: 12px; }
.charging-option p { color: var(--muted); line-height: 1.55; }
.option-actions { display: grid; gap: 8px; margin-top: auto; padding-top: 22px; }

.planned-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: #b8c8d6;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.planned-button--wide { margin-top: auto; }
.planned-button--primary { border-color: rgba(30, 227, 143, 0.4); color: #8af0ca; background: rgba(30, 227, 143, 0.1); }
.landing-details { margin-top: 14px; }

@media (max-width: 820px) {
  .charging-options { grid-template-columns: 1fr; }
  .charging-option { min-height: 0; }
  .planned-button--wide { margin-top: 22px; }
}
