:root {
  --bg: #12151a;
  --card-bg: #12151a;
  --card-bg-desktop: #171b20;
  --border: rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-secondary: #e7e9ec;
  --muted: #a8b0b9;
  --faint: #767e88;
  --green: #03c03c;
  --green-hover: #2fe066;
  --green-dark-bg: #08160c;
  --green-border: rgba(3, 192, 60, 0.3);
  --green-border-soft: rgba(3, 192, 60, 0.25);
  --surface: #1c2127;
  --font: 'Golos Text', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  font-family: var(--font);
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-hover);
}

button {
  font-family: inherit;
}

input {
  font-family: inherit;
}

input::placeholder {
  color: var(--faint);
}

input:focus {
  outline: none;
  border-color: var(--green) !important;
}

[hidden] {
  display: none !important;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

/* Side panel (desktop only, see media.css) */
.side-panel {
  display: none;
}

.side-panel-title {
  color: var(--text);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.18;
  max-width: 440px;
  margin: 0;
}

.side-panel-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 400px;
  line-height: 1.55;
  margin: 0;
}

.side-panel-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--green);
  flex: none;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-row {
  display: flex;
  gap: 36px;
  width: max-content;
  align-items: center;
  animation: logoScroll 24s linear infinite;
}

.marquee-row img {
  opacity: 0.72;
  display: block;
}

.brand-text {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 15px;
  opacity: 0.72;
  white-space: nowrap;
}

.brand-text.regular {
  font-weight: 500;
}

.brand-label {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.72;
  white-space: nowrap;
}

.logo-chargerone { height: 16px; }
.logo-pandora { height: 19px; }
.logo-volt { height: 22px; border-radius: 4px; }

/* Card */
.card-outer {
  width: 100%;
}

.card {
  background: var(--card-bg);
  overflow: hidden;
  min-height: 100vh;
}

.progress-track {
  height: 3px;
  background: var(--border);
}

.progress-fill {
  height: 100%;
  background: var(--green);
  transition: width 0.3s;
}

.card-inner {
  padding: 20px 20px 40px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 24px;
}

.back-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  margin-right: 2px;
  padding: 0;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.spacer {
  flex: 1;
}

.step-count {
  color: var(--faint);
  font-size: 13px;
  white-space: nowrap;
}

.title {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0 4px;
  line-height: 1.25;
}

.subtitle,
.hero-sub-text {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.hero-sub-text {
  margin: 8px 0 20px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.chip {
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.chip.active {
  background: var(--green);
  color: var(--green-dark-bg);
  font-weight: 700;
}

.chip.inactive {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
}

.hero {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

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

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.option {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  border: 1px solid var(--border);
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.option.selected {
  border-color: var(--green);
}

.option-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.option-title {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.option-tag {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.option-tag.green { color: var(--green); }
.option-tag.white { color: var(--text-secondary); }

.option-desc {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  white-space: pre-line;
  line-height: 1.5;
}

.card-marquee {
  overflow: hidden;
  margin: 4px 0 10px;
}

.fine-print {
  color: var(--faint);
  font-size: 12px;
  margin: 0 0 20px;
}

.cta {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
}

.cta-primary {
  background: var(--green);
  color: var(--green-dark-bg);
}

.cta-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.info-rows {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row-label {
  color: var(--muted);
  font-size: 14px;
}

.info-row-value {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.connectors-note {
  color: var(--faint);
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
}

.callout {
  background: var(--green-dark-bg);
  border: 1px solid var(--green-border);
  border-radius: 14px;
  padding: 16px;
  margin-top: 16px;
}

.callout-title {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.callout-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.field-label {
  color: var(--muted);
  font-size: 13px;
  margin: 20px 0 8px;
}

.field-label.filled {
  color: var(--green);
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-option {
  background: var(--surface);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--muted);
}

.chip-option.selected {
  border-color: var(--green);
  color: var(--green);
}

.lead-form {
  margin-top: 24px;
}

.input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-submit {
  margin: 24px 0 14px;
}

.form-message {
  font-size: 13px;
  margin: 0 0 14px;
  text-align: center;
}

.form-message.success { color: var(--green); }
.form-message.error { color: #ff6b6b; }

.call-card {
  background: var(--green-dark-bg);
  border: 1px solid var(--green-border-soft);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.call-icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--green);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-icon::after {
  content: '';
  width: 4px;
  height: 15px;
  background: var(--green-dark-bg);
  border-radius: 2px;
  display: block;
  transform: rotate(25deg);
}

.call-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 2px;
}

.call-phone {
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.note {
  color: var(--faint);
  font-size: 12px;
  text-align: center;
}
