/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0d0d0d;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── VARIABLES ─────────────────────────────────────────────────────── */
:root {
  --red: #fa4729;
  --red-dark: #c9371f;
  --bg: #0d0d0d;
  --bg2: #121212;
  --bg3: #181818;
  --border: rgba(255,255,255,0.08);
  --text-muted: rgba(255,255,255,0.45);
  --text-body: rgba(255,255,255,0.7);
}

/* ─── TOP BAR ───────────────────────────────────────────────────────── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 36px;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-follow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-right: 2px;
}
.top-bar-follow a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.top-bar-follow a:hover { color: var(--red); }
.top-bar-follow svg { width: 13px; height: 13px; fill: currentColor; }
.top-bar-lang { position: relative; }
.top-bar-lang .lang-btn {
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 4px;
}
.top-bar-lang .lang-btn svg:first-child { width: 14px; height: 14px; }

/* ─── HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.header-logo img { height: 36px; width: auto; }
.header-tagline {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.header-nav a:hover, .header-nav a.active { color: #fff; }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-consult {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(250,71,41,0.35);
  white-space: nowrap;
}
.btn-consult:hover {
  background: linear-gradient(135deg, #ff5a3d, #e03d22);
  box-shadow: 0 4px 24px rgba(250,71,41,0.5);
  transform: translateY(-1px);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lang-btn svg { width: 10px; height: 10px; transition: transform 0.2s; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: all 0.15s;
}
.lang-dropdown a:hover { background: rgba(250,71,41,0.1); color: #fff; }

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
  padding: 24px 32px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.8); }
.mobile-nav a:hover { color: #fff; }
.mobile-nav .btn-consult { align-self: flex-start; }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  background: var(--bg2);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 60%, rgba(250,71,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 176px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(250,71,41,0.45);
  transition: all 0.2s;
}
.hero-cta:hover {
  background: linear-gradient(135deg, #ff5a3d, #e03d22);
  box-shadow: 0 8px 40px rgba(250,71,41,0.6);
  transform: translateY(-2px);
}
.hero-cta svg { width: 18px; height: 18px; }
.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image img {
  width: 120%;
  max-width: 780px;
  margin-left: -10%;
  filter: drop-shadow(0 20px 80px rgba(250,71,41,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ─── MARQUEE ───────────────────────────────────────────────────────── */
.marquee-section {
  background: #131313;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-item::before {
  content: '✦';
  color: var(--red);
  font-size: 10px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
}
.text-center { text-align: center; }

/* ─── HOW IT WORKS ──────────────────────────────────────────────────── */
.how-it-works {
  background: var(--bg2);
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(250,71,41,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(90deg, rgba(250,71,41,0.4), rgba(250,71,41,0.2), rgba(250,71,41,0.4));
}
.process-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.process-card:hover {
  border-color: rgba(250,71,41,0.3);
  background: rgba(250,71,41,0.04);
}
.process-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(250,71,41,0.4);
  position: relative;
  z-index: 1;
}
.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.process-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.testi-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.testi-header {
  text-align: center;
  margin-bottom: 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(250,71,41,0.25); }
.testi-quote {
  font-size: 32px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testi-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(250,71,41,0.3), rgba(250,71,41,0.1));
  border: 1px solid rgba(250,71,41,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.testi-vehicle {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 32px; margin-bottom: 12px; }
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-newsletter-label {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #838788;
  margin-bottom: 12px;
}
.footer-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 6px 6px 12px;
  transition: border-color 0.2s;
  max-width: 340px;
  height: 46px;
}
.footer-form:focus-within { border-color: rgba(250,71,41,0.4); }
.footer-form > svg { width: 16px; height: 16px; min-width: 16px; min-height: 16px; color: rgba(255,255,255,0.3); flex-shrink: 0; margin-right: 8px; }
.footer-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  outline: none;
  min-width: 0;
  height: 100%;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-form button {
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px; min-width: 32px; min-height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.footer-form button:hover { background: rgba(255,255,255,0.2); }
.footer-form button svg { width: 14px; height: 14px; min-width: 14px; color: #fff; margin: 0; }
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  font-size: 14px;
}
.social-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-legal-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
}

/* ─── SCROLL TO TOP ─────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 999;
  border: none;
  box-shadow: 0 4px 16px rgba(250,71,41,0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top svg { width: 18px; height: 18px; color: #fff; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .top-bar { display: none; }
  .site-header { top: 0; }
  .header-nav, .top-bar-lang { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    text-align: center;
  }
  .hero-image { justify-content: center; }
  .hero-cta { margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 110px 24px 60px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }

  .testi-grid { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .how-it-works { padding: 80px 0 80px; }
  .testimonials { padding: 80px 0; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .header-inner { padding: 0 20px; }
  .how-inner, .testi-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { padding: 24px 0; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}
