*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-card: #141c2e;
  --navy-border: #1e2d47;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-glow: rgba(201,168,76,0.25);
  --white: #f5f3ee;
  --muted: #8a96a8;
  --text: #d4cfc6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-border);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img.nav-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

.nav-logo .nav-brand-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.nav-logo .plus-badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-left: 2px;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  font-size: 0.85rem !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; }

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--navy-border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: rgba(201,168,76,0.4);
  background: var(--gold-dim);
}

.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 2rem;
  display: flex; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.05em; }

section { padding: 6rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 540px;
  line-height: 1.7;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.how-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.how-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.how-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.how-card:hover::before { opacity: 1; }

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.how-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.6rem;
}

.how-card p { color: var(--text); font-size: 0.9rem; line-height: 1.65; }

.benefits-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .benefits-split { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .stats-bar { gap: 2rem; }
}

.benefit-panel {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.panel-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.badge-garage {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}

.badge-driver {
  background: rgba(100,160,255,0.1);
  color: #7eb8ff;
  border: 1px solid rgba(100,160,255,0.2);
}

.benefit-panel h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.benefit-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
}

.benefit-list li .icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; margin-top: 1px;
}

.pricing-section { background: var(--navy-mid); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(160deg, #141c2e 0%, #1a2236 100%);
}

.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 20px;
  white-space: nowrap;
}

.pricing-who {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}

.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pricing-amount span {
  font-size: 1rem; font-weight: 400;
  color: var(--muted);
}

.pricing-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; }

.pricing-divider {
  height: 1px; background: var(--navy-border);
  margin-bottom: 1.5rem;
}

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.pricing-features li {
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 0.88rem; color: var(--text);
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.policy-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.policy-card:hover { border-color: rgba(201,168,76,0.25); }

.policy-icon {
  font-size: 1.5rem; margin-bottom: 0.75rem;
}

.policy-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.4rem;
}

.policy-card p { font-size: 0.85rem; color: var(--text); line-height: 1.5; }

.register-section {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.register-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .register-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.register-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select option { background: var(--navy-mid); }

.form-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: 10px;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  margin-top: 0.5rem;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}

.form-submit:disabled { cursor: not-allowed; opacity: 0.95; }

.form-disclaimer {
  font-size: 0.75rem; color: var(--muted);
  text-align: center; line-height: 1.5;
}

.gp-form-status {
  font-size: 0.82rem;
  text-align: center;
  min-height: 1.25em;
}

.slots-preview {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}

.slot-chip {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transition: border-color 0.3s;
  min-width: 160px;
}

.slot-chip:hover { border-color: rgba(201,168,76,0.3); }

.slot-time {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
}

.slot-garage { font-size: 0.78rem; color: var(--muted); }

.slot-price {
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold); margin-top: 0.25rem;
}

.flash-label {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 2px 8px; border-radius: 20px;
  width: fit-content;
}

footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: var(--white);
}

.footer-brand span { color: var(--gold); }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.78rem; color: var(--muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
