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

:root {
  --primary: #0a0a0a;
  --primary-light: #141414;
  --accent: #d4a853;
  --accent-bright: #e8be6a;
  --accent-dark: #b8923f;
  --accent-glow: rgba(212,168,83,0.12);
  --text: #f0ece4;
  --text-light: #b8b0a4;
  --text-muted: #6e665c;
  --bg: #0b0b0b;
  --bg-alt: #101010;
  --bg-card: #161616;
  --border: #252525;
  --white: #fff;
  --blue-link: #7aa8d4;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--accent-dark); }

/* NAV */
nav {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(16px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212,168,83,0.15);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
nav .logo img {
  height: 38px;
  width: auto;
}
nav .logo span { color: var(--accent); }
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}
nav ul a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--white); text-decoration: none; }
nav .cta-nav {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 8px 22px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav .cta-nav:hover { background: var(--accent-dark); }
nav .dealer-login {
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 5px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
nav .dealer-login:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero {
  background:
    url('../img/logo-bear.png') center 40% / 420px no-repeat,
    radial-gradient(ellipse at 50% 30%, rgba(212,168,83,0.07) 0%, transparent 55%),
    var(--bg);
  color: var(--white);
  padding: 120px 0 90px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.92) 50%, var(--bg) 75%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-logo {
  display: none;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--white);
}
.hero h1 span { color: var(--accent-bright); }
.hero p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero .tagline {
  color: var(--accent);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero .cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,168,83,0.3);
}
.hero .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212,168,83,0.4);
  text-decoration: none;
  color: var(--primary);
}
.hero .sub-cta {
  display: block;
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 14px;
}
/* tagline styled above with hero */

/* STATS BAR */
.stats-bar {
  background: var(--primary-light);
  padding: 45px 0;
  border-top: 2px solid rgba(212,168,83,0.25);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* SECTIONS */
section { padding: 80px 0; }
section:nth-child(even) { background: var(--bg-alt); }
section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--white);
  letter-spacing: -0.3px;
}
section .section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(165deg, var(--bg-card) 0%, #111 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(212,168,83,0.08);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
  filter: grayscale(0.3);
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent);
}
.feature-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

/* HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 15px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; color: var(--white); }
.step p { font-size: 14px; color: var(--text-light); }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 10px 50px rgba(212,168,83,0.12), 0 0 0 1px rgba(212,168,83,0.1);
  background: linear-gradient(165deg, #1a1a1a 0%, #111 100%);
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin: 15px 0 5px;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-period { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; }
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
}
.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
}
.pricing-cta {
  display: block;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.pricing-cta.primary {
  background: var(--accent);
  color: var(--primary);
}
.pricing-cta.primary:hover { background: var(--accent-dark); text-decoration: none; }
.pricing-cta.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.pricing-cta.secondary:hover { background: var(--accent-glow); text-decoration: none; }
.pricing-cta:hover { transform: translateY(-1px); }

/* ROI */
.roi-box {
  background: linear-gradient(170deg, #161616 0%, #0e0e0e 100%);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  margin-top: 50px;
}
.roi-box h3 { font-size: 28px; margin-bottom: 15px; color: var(--white); }
.roi-box p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.roi-number { font-size: 64px; font-weight: 800; color: var(--accent); margin: 20px 0; }

/* CTA SECTION */
.cta-section {
  background: radial-gradient(ellipse at 50% 80%, rgba(212,168,83,0.06) 0%, transparent 55%), var(--primary-light);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  border-top: 2px solid rgba(212,168,83,0.2);
}
.cta-section h2 { color: var(--white); margin-bottom: 15px; }
.cta-section p { color: var(--text-light); font-size: 17px; margin-bottom: 30px; }
.cta-button-inline {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,168,83,0.3);
}
.cta-button-inline:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--primary);
}
.cta-sub {
  color: var(--text-muted) !important;
  font-size: 14px !important;
  margin-top: 15px !important;
}

/* FOOTER */
footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-brand h4 { color: var(--accent); font-size: 18px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: var(--text-muted); }
.footer-links h4 { color: var(--white); font-size: 15px; margin-bottom: 15px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 14px; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* LEGAL PAGES */
.legal-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 36px; color: var(--white); margin-bottom: 10px; }
.legal-page .updated { color: var(--text-muted); margin-bottom: 30px; }
.legal-page h2 { font-size: 22px; color: var(--accent); margin: 30px 0 10px; text-align: left; }
.legal-page p, .legal-page li { font-size: 15px; line-height: 1.8; margin-bottom: 10px; color: var(--text-light); }
.legal-page ul { padding-left: 25px; margin-bottom: 15px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .hero-logo { width: 120px; }
  .stats-grid, .features-grid, .pricing-grid, .steps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular { transform: none; }
  nav ul { display: none; }
  .container { padding: 0 15px; }
  nav .logo { font-size: 16px; }
  nav .logo img { height: 30px; }
}
