/* Calibrate — Main Stylesheet */
/* Branding based on calibrate.codes/vrm/index_test.html */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Inter+Tight:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

:root {
  --black:        #080b12;
  --dark:         #0d1117;
  --dark-2:       #131820;
  --dark-3:       #1a2030;
  --dark-4:       #222b3a;
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.13);
  --glass:        rgba(255,255,255,0.04);
  --glass-hover:  rgba(255,255,255,0.07);

  --white:    #ffffff;
  --off-white:#e2e8f0;
  --muted:    #64748b;
  --muted-2:  #94a3b8;

  --yellow:       #0085f9;
  --yellow-dark:  #0071d4;
  --yellow-glow:  rgba(240,192,64,0.12);
  --yellow-glow2: rgba(240,192,64,0.05);

  --red:   #ef4444;
  --green: #22c55e;
  --blue:  #3b82f6;

  --font-display: 'Inter Tight', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-width: 1200px;
  --nav-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.nav__logo span { color: var(--yellow); font-style: italic; }

.nav__links { display: flex; gap: 2px; list-style: none; }

.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted-2);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav__links a:hover { color: var(--white); background: var(--glass); }

.nav__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  padding: 7px 16px;
  border: 1px solid rgba(240,192,64,0.25);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav__phone:hover { background: var(--yellow-glow); color: var(--yellow); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(240,192,64,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 90%, rgba(59,130,246,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 10% 70%, rgba(240,192,64,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 40px 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.22);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--white);
  margin-bottom: 22px;
}

.hero__title em { color: var(--yellow); font-style: italic; }

.hero__sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted-2);
  margin-bottom: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__phone {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted-2);
  margin-bottom: 40px;
}

.hero__phone a { color: var(--yellow); font-weight: 600; }

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  background: var(--glass);
  border-right: 1px solid var(--border);
}

.hero__stat:last-child { border-right: none; }

.hero__stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero__stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---- TRUST PILLS ---- */
.trust-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-2);
}

.trust-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--primary { background: var(--yellow); color: var(--black); }
.btn--primary:hover { background: #f5ce60; color: var(--black); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(240,192,64,0.22); }

.btn--outline { background: var(--glass); color: var(--off-white); border: 1px solid var(--border-light); }
.btn--outline:hover { background: var(--glass-hover); border-color: rgba(255,255,255,0.2); color: var(--white); transform: translateY(-1px); }

.btn--sm { font-size: 13px; padding: 8px 18px; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: var(--yellow-glow2);
  border: 1px solid rgba(240,192,64,0.18);
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.1;
}

.section-title em { color: var(--yellow); font-style: italic; }

.section-sub {
  font-size: 16px;
  color: var(--muted-2);
  margin-top: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---- SERVICES ---- */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover { background: var(--glass-hover); border-color: var(--border-light); transform: translateY(-2px); }
.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 34px; height: 34px;
  background: var(--yellow-glow);
  border: 1px solid rgba(240,192,64,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 4px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--white);
}

.service-card__desc { font-size: 14px; color: var(--muted-2); line-height: 1.65; flex: 1; }

.service-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.5px;
  margin-top: 4px;
}

.service-card__price span { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ---- STATS BAND ---- */
.stats { background: var(--yellow); padding: 60px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item { text-align: center; padding: 28px 20px; background: var(--yellow); }

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1.5px;
}

.stat-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-top: 6px;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--black); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color 0.2s;
}

.testimonial-card:hover { border-color: var(--border-light); }

.testimonial-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--muted-2); line-height: 1.75; margin-bottom: 18px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-vehicle { font-size: 12px; color: var(--yellow); margin-top: 2px; }

/* ---- NEWS ---- */
.news { background: var(--dark); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.news-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  display: block;
  color: inherit;
}

.news-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.news-card__body { padding: 24px; }
.news-card__date { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.news-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.3px; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.news-card__excerpt { font-size: 14px; color: var(--muted-2); line-height: 1.65; }

/* ---- VRM SECTION ---- */
.vrm-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.vrm-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 28px auto 0;
  flex-wrap: wrap;
}

.vrm-input {
  flex: 1;
  min-width: 200px;
  background: var(--dark-3);
  border: 1.5px solid var(--border-light);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s;
}

.vrm-input::placeholder { letter-spacing: 4px; color: rgba(255,255,255,0.12); }
.vrm-input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(240,192,64,0.1); }

/* ---- CONTACT ---- */
.contact { background: var(--black); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item__label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.contact-item__value { font-size: 18px; font-weight: 500; color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); }

.form-input, .form-select, .form-textarea {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s;
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(240,192,64,0.08);
}

.form-select option { background: var(--dark-2); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 0 32px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand__logo { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: var(--white); margin-bottom: 12px; }
.footer-brand__logo span { color: var(--yellow); font-style: italic; }
.footer-brand__desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }

.footer-social {
  width: 34px; height: 34px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 13px;
  transition: all 0.2s;
}

.footer-social:hover { background: var(--yellow-glow); border-color: rgba(240,192,64,0.3); color: var(--yellow); }

.footer-col__title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--yellow); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ---- VRM RESULTS ---- */
.vrm-results {
  background: var(--glass);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-top: 32px;
  display: none;
}

.vrm-results.active { display: block; }

.vrm-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.vrm-result-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 15px;
}

.vrm-result-item__label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.vrm-result-item__value { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }

.vrm-gains {
  background: var(--yellow-glow2);
  border: 1px solid rgba(240,192,64,0.18);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 18px;
}

.vrm-gains__title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }

.gains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gain-item { text-align: center; }
.gain-item__before { font-size: 12px; color: var(--muted); }
.gain-item__after { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--yellow); letter-spacing: -0.5px; }
.gain-item__plus { font-size: 12px; font-weight: 600; color: var(--green); }
.gain-item__label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-top: 2px; }

/* ---- FLASH ---- */
.flash { padding: 13px 18px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 20px; }
.flash--success { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.25); color: var(--green); }
.flash--error   { background: rgba(239,68,68,0.07);  border: 1px solid rgba(239,68,68,0.25);  color: var(--red); }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav__links { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gains-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; max-width: 200px; }
}
