/* GleamRide — mobile car detailing landing page */
:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --fg: #f5f0e8;
  --fg-muted: #999588;
  --gold: #d4a843;
  --gold-light: #e8c46e;
  --border: rgba(212, 168, 67, 0.15);
  --card-bg: rgba(255,255,255,0.03);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(28px, 5vw, 46px);
  color: var(--fg);
  margin-bottom: 48px;
}

.gold { color: var(--gold); }

/* Nav */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,168,67,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 6vw, 58px);
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label { font-size: 12px; color: var(--fg-muted); }
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Card */
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-before-after {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-before, .hero-after {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.before-label, .after-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-arrow { color: var(--gold); flex-shrink: 0; }

.car-silhouette {
  width: 80px;
  height: 40px;
  border-radius: 40px 40px 8px 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-silhouette.large {
  width: 180px;
  height: 90px;
  border-radius: 90px 90px 16px 16px;
}
.dirty {
  background: #3a3528;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,0.4), inset 0 2px 0 rgba(100,90,60,0.3);
}
.clean {
  background: linear-gradient(135deg, #c8d4e0 0%, #e8c46e 50%, #d4a843 100%);
  box-shadow: 0 8px 32px rgba(212,168,67,0.3), inset 0 -8px 0 rgba(0,0,0,0.2), inset 0 2px 0 rgba(255,255,255,0.4);
}
.clean::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 35%;
  height: 25%;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  filter: blur(4px);
}

.hero-card-note {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}

/* How it works */
.how {
  background: var(--bg-2);
  padding: 100px 32px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* Services */
.services { padding: 100px 32px; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: rgba(212,168,67,0.4); }
.service-card.featured {
  border-color: rgba(212,168,67,0.35);
  background: rgba(212,168,67,0.05);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.service-icon { color: var(--gold); margin-bottom: 20px; }
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--fg);
}
.service-card p { font-size: 14px; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.6; }
.service-price {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

/* Membership */
.membership {
  background: var(--bg-2);
  padding: 100px 32px;
}
.membership-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.membership-desc {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.membership-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.membership-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  width: 20px;
}
.membership-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--gold);
}
.price-period {
  font-size: 18px;
  color: var(--fg-muted);
}
.membership-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.transform-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.transform-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Closing */
.closing {
  padding: 100px 32px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.4;
}
.quote-attr {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 80px;
}
.closing h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: 20px;
}
.closing p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-info {
  text-align: center;
}
.footer-info p { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: rgba(153,149,136,0.5); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner,
  .membership-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat-divider { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero { padding: 60px 24px 80px; }
}
@media (max-width: 480px) {
  .section-headline { font-size: 28px; }
  .price-amount { font-size: 40px; }
  .footer-info { display: none; }
}