/* ============================================================
   BIMMER GARAGE — Main Stylesheet
   ============================================================ */

:root {
  --black:      #080808;
  --dark:       #0f0f0f;
  --card:       #141414;
  --border:     #1e1e1e;
  --red:        #cc0000;
  --red-glow:   #ff1a1a;
  --white:      #f0f0f0;
  --gray:       #888888;
  --light-gray: #bbbbbb;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAV ── */
#bimmer-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 84px;
  background: rgba(8,8,8,0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#bimmer-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.8); }

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img {
  height: 64px; width: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(204,0,0,0.35));
  background: transparent;
}
.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.nav-phone {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}
.nav-phone:hover { color: var(--red-glow); }

.nav-city {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  white-space: nowrap;
  /* sits between logo and burger on mobile, between logo and links on desktop */
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--red-glow) !important; box-shadow: 0 0 20px rgba(204,0,0,0.5); }
.nav-cta::after { display: none !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Shared Section ── */
section { padding: 100px 5vw; position: relative; }

.section-header { margin-bottom: 60px; }

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--red);
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--white);
}
h2 .accent { color: var(--red); }
.section-desc { color: var(--light-gray); max-width: 560px; margin-top: 16px; line-height: 1.8; }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 0 5vw;
  opacity: 0.35;
}

/* Buttons */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 36px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--red-glow); box-shadow: 0 0 30px rgba(204,0,0,0.6); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 36px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 5vw 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(204,0,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(204,0,0,0.04) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; max-width: 700px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); font-weight: 700;
  margin-bottom: 24px;
}
.hero-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--red); }

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
h1 .accent { color: var(--red); }

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--gray);
  letter-spacing: 4px;
  margin-bottom: 28px;
}
.hero-desc { color: var(--light-gray); font-size: 16px; max-width: 520px; margin-bottom: 40px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-logo-float {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  opacity: 0.07; width: clamp(280px,38vw,580px); pointer-events: none;
}

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num { font-family: 'Orbitron', monospace; font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ── SERVICES ── */
#services { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: var(--card); padding: 40px 36px; position: relative; overflow: hidden; cursor: default; transition: background 0.3s;
}
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card-link:hover { background: #181818; transform: translateY(-2px); }
.service-card-link:hover::before { height: 100%; }
.service-card-link:hover .service-card-cta { color: var(--red); opacity: 1; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--red); transition: height 0.4s; }
.service-card:not(.service-card-link):hover { background: #181818; }
.service-card:not(.service-card-link):hover::before { height: 100%; }
.service-card-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--border);
  opacity: 0.7;
  transition: color 0.3s, opacity 0.3s;
  text-transform: uppercase;
}
.service-num { position: absolute; top: 24px; right: 28px; font-family: 'Orbitron', monospace; font-size: 11px; color: var(--border); letter-spacing: 2px; }
.service-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ── PARTS ── */
#parts { background: var(--black); overflow: hidden; }
.parts-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.parts-visual { position: relative; }
.parts-big-num {
  font-family: 'Orbitron', monospace; font-size: clamp(80px, 12vw, 180px); font-weight: 900;
  color: var(--border); line-height: 1; position: absolute; top: -20px; left: -20px;
  z-index: 0; pointer-events: none; user-select: none;
}
.parts-list { position: relative; z-index: 1; }
.part-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); transition: all 0.2s; }
.part-item:hover { padding-left: 8px; }
.part-item:first-child { border-top: 1px solid var(--border); }
.part-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; transform: rotate(45deg); }
.part-name { font-weight: 600; letter-spacing: 1px; color: var(--light-gray); font-size: 15px; }
.part-availability { margin-left: auto; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #3a9a3a; background: rgba(0,150,0,0.08); padding: 3px 10px; white-space: nowrap; }
.parts-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.feature-box { background: var(--card); border: 1px solid var(--border); padding: 20px; position: relative; }
.feature-box::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); opacity: 0; transition: opacity 0.3s; }
.feature-box:hover::after { opacity: 1; }
.feature-box h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; margin-bottom: 6px; }
.feature-box p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ── DISASSEMBLY ── */
#disassembly { background: var(--dark); }
.dis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.dis-card { background: var(--black); border: 1px solid var(--border); padding: 36px 28px; position: relative; transition: border-color 0.3s, transform 0.3s; }
.dis-card:hover { border-color: var(--red); transform: translateY(-4px); }
.dis-card-num { font-family: 'Orbitron', monospace; font-size: 11px; color: var(--red); letter-spacing: 3px; margin-bottom: 20px; display: block; }
.dis-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; margin-bottom: 12px; }
.dis-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ── MODS ── */
#mods { background: var(--black); overflow: hidden; }
#mods::before {
  content: 'M POWER'; position: absolute; right: -5vw; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(80px,12vw,180px);
  color: rgba(255,255,255,0.012); letter-spacing: 10px; pointer-events: none; user-select: none; white-space: nowrap;
}
.mods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 60px; }
.mod-item { background: var(--card); padding: 36px; display: flex; gap: 24px; align-items: flex-start; transition: background 0.3s; }
.mod-item:hover { background: #161616; }
.mod-icon-wrap { width: 48px; height: 48px; background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.mod-item h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; margin-bottom: 8px; }
.mod-item p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ── WHY ── */
#why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.why-card { text-align: center; padding: 40px 24px; border: 1px solid var(--border); background: var(--black); transition: all 0.3s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--red); transition: width 0.4s; }
.why-card:hover::before { width: 80%; }
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.why-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ── CONTACT ── */
#contact { background: var(--black); padding: 100px 5vw; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); font-weight: 600; }
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 12px 16px;
  font-family: 'Rajdhani', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--red); }
.form-field select option { background: var(--card); }
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; text-align: center; }

.form-message { font-size: 14px; padding: 10px 0; min-height: 20px; }
.form-message.success { color: #4caf50; }
.form-message.error { color: var(--red); }

.contact-info { padding-top: 60px; }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.contact-item-value { font-size: 17px; font-weight: 600; color: var(--white); }
.contact-item-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--red); }
.contact-value-multi { display: flex; flex-direction: column; align-items: flex-start; }
.social-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 7px 14px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}
.viber-link  { color: #7360f2 !important; border-color: rgba(115,96,242,0.35); }
.viber-link:hover  { background: rgba(115,96,242,0.1); border-color: #7360f2; }
.tg-link     { color: #2aabee !important; border-color: rgba(42,171,238,0.35); }
.tg-link:hover     { background: rgba(42,171,238,0.1); border-color: #2aabee; }
.insta-link  { color: #e1306c !important; border-color: rgba(225,48,108,0.35); }
.insta-link:hover  { background: rgba(225,48,108,0.1); border-color: #e1306c; }
.tiktok-link { color: var(--white) !important; border-color: rgba(255,255,255,0.2); }
.tiktok-link:hover { background: rgba(255,255,255,0.07); border-color: var(--white); }
.olx-link    { color: #3dbe29 !important; border-color: rgba(61,190,41,0.35); }
.olx-link:hover    { background: rgba(61,190,41,0.1); border-color: #3dbe29; }

/* ── FOOTER ── */
#bimmer-footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 40px 5vw; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo img { height: 40px; width: 40px; object-fit: contain; filter: grayscale(0.5); }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px; color: var(--gray); }
.footer-copy { font-size: 12px; letter-spacing: 1px; color: var(--gray); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── USA IMPORT ── */
#usa { background: var(--dark); }

.usa-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* Steps */
.usa-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }

.usa-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.usa-step:first-child { border-top: 1px solid var(--border); }
.usa-step:hover { padding-left: 8px; }

.usa-step-num {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}

.usa-step-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--white);
}
.usa-step-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Sidebar */
.usa-sidebar { display: flex; flex-direction: column; gap: 20px; }

.usa-highlight-box {
  background: var(--black);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 32px 28px;
}
.usa-flag { font-size: 40px; margin-bottom: 12px; display: block; }
.usa-highlight-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.usa-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.usa-benefits li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--light-gray); line-height: 1.5; }
.usa-check { color: var(--red); font-weight: 700; flex-shrink: 0; }

.usa-calc-box {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 28px;
}
.usa-calc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}
.usa-calc-rows { display: flex; flex-direction: column; gap: 0; }
.usa-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
  gap: 16px;
}
.usa-calc-row:last-child { border-bottom: none; }
.usa-calc-val { font-weight: 700; color: var(--light-gray); white-space: nowrap; }
.usa-calc-total { padding-top: 16px; }
.usa-calc-total span:first-child { color: var(--light-gray); font-weight: 600; }
.usa-calc-total .usa-calc-val.accent { color: var(--red); font-size: 15px; }

.usa-note {
  background: rgba(204,0,0,0.05);
  border: 1px solid rgba(204,0,0,0.2);
  padding: 20px;
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.7;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.usa-note-icon { font-size: 28px; flex-shrink: 0; }
.usa-note strong { color: var(--white); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Tablet + Mobile
   ══════════════════════════════════════════════════ */

/* ── 1024px — Tablet landscape ── */
@media (max-width: 1024px) {
  /* USA section */
  .usa-layout { grid-template-columns: 1fr; gap: 40px; }
  .usa-sidebar { order: -1; }
  .usa-highlight-box, .usa-calc-box { max-width: 100%; }

  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Disassembly */
  .dis-grid { grid-template-columns: 1fr 1fr; }

  /* Mods */
  #mods::before { display: none; }
}

/* ── 900px — Tablet portrait / large phone ── */
@media (max-width: 900px) {

  /* NAV — burger menu */
  .nav-links {
    display: none;
    position: fixed; top: 84px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(8,8,8,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 5vw;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-city { display: none; }
  .nav-cta { margin: 24px 5vw 0; display: block; text-align: center; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-logo-float { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stats .stat-item { min-width: calc(50% - 12px); }

  /* Parts */
  .parts-layout { grid-template-columns: 1fr; gap: 40px; }
  .parts-big-num { font-size: clamp(60px, 15vw, 120px); }
  .parts-features { grid-template-columns: 1fr 1fr; }

  /* Mods */
  .mods-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { padding-top: 0; }

  /* Footer */
  #bimmer-footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── 640px — Mobile ── */
@media (max-width: 640px) {

  /* Global spacing */
  section { padding: 60px 4vw; }

  /* ── HERO ── */
  #hero { padding: 110px 4vw 60px; }

  h1 { font-size: clamp(52px, 14vw, 80px); }

  .hero-sub { font-size: clamp(20px, 6vw, 32px); letter-spacing: 2px; }

  .hero-desc { font-size: 15px; }

  .hero-btns { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; text-align: center; }

  .hero-stats { gap: 20px; }
  .hero-stats .stat-item { min-width: calc(50% - 10px); }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 10px; }

  /* ── HEADINGS — fix overflow ── */
  h2 {
    font-size: clamp(34px, 10vw, 56px);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1;
  }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* ── PARTS ── */
  .parts-features { grid-template-columns: 1fr; }
  .part-availability { display: none; } /* занадто вузько на мобілі */

  /* ── DISASSEMBLY ── */
  .dis-grid { grid-template-columns: 1fr; }
  .dis-card { padding: 24px 20px; }

  /* ── MODS ── */
  .mod-item { padding: 24px 20px; gap: 16px; }
  .mod-icon-wrap { width: 40px; height: 40px; font-size: 18px; }
  .mod-item h3 { font-size: 19px; }

  /* ── WHY US — grid layout fix для мобілі ── */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
    gap: 0 16px;
    padding: 20px 16px;
    overflow: hidden;
  }
  .why-card .why-icon {
    font-size: 30px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    margin-bottom: 0;
  }
  .why-card h3 {
    font-size: 22px;
    margin-bottom: 4px;
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .why-card p {
    font-size: 13px;
    grid-column: 2;
    grid-row: 2;
    line-height: 1.5;
  }
  .why-card::before { display: none; }

  /* ── USA SECTION ── */
  .usa-note {
    /* Fix "60-90 days" breaking mid-word */
    display: block;
  }
  .usa-note-icon { display: inline; margin-right: 8px; }
  .usa-note strong { white-space: nowrap; }

  .usa-step { gap: 14px; }
  .usa-step-num { font-size: 10px; }
  .usa-step-body h4 { font-size: 17px; }

  .usa-calc-row { flex-direction: column; align-items: flex-start; gap: 2px; }
  .usa-calc-val { font-size: 14px; color: var(--red); }
  .usa-calc-total .usa-calc-val.accent { font-size: 16px; }

  /* ── CONTACT FORM ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  #bimmer-footer { padding: 32px 4vw; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ── 380px — Small phones (iPhone SE etc.) ── */
@media (max-width: 380px) {
  h1 { font-size: 46px; }
  h2 { font-size: 32px; }
  .hero-sub { font-size: 18px; }
  .nav-brand { font-size: 17px; }
  .stat-num { font-size: 24px; }
  .why-card { flex-direction: column; text-align: center; }
  .why-card .why-icon { margin-bottom: 8px; }
}

/* ══════════════════════════════════════════════════
   MODEL PAGES — F10 / F30 / F25
   ══════════════════════════════════════════════════ */

/* Hero */
#model-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}
.model-hero-content { position: relative; max-width: 740px; }
.model-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.model-back:hover { color: var(--red); }
.model-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.model-h1 .accent { color: var(--red); font-size: 0.55em; letter-spacing: 4px; }

/* Parts grid */
.model-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}
.model-part-card {
  background: var(--card);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  position: relative;
}
.model-part-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--red);
  transition: width 0.3s;
}
.model-part-card:hover { background: #181818; }
.model-part-card:hover::before { width: 3px; }
.model-part-icon { font-size: 26px; flex-shrink: 0; }
.model-part-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.model-part-name { font-weight: 600; font-size: 15px; color: var(--light-gray); }
.model-part-qty {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #3a9a3a;
  background: rgba(0,150,0,0.08);
  padding: 2px 8px;
  align-self: flex-start;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--red); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-arrow {
  font-size: 11px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 22px;
}
.faq-a p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* Other model links */
.model-other-models { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.model-link {
  display: block;
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.model-link:hover { color: var(--red); padding-left: 8px; }
.model-link:last-child { border-bottom: none; }

/* Mobile */
@media (max-width: 640px) {
  #model-hero { padding: 110px 4vw 60px; }
  .model-h1 { font-size: clamp(58px, 16vw, 100px); }
  .model-parts-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }
}

/* ══════════════════════════════════════════════════
   MODEL LANDING PAGES
   ══════════════════════════════════════════════════ */

.nav-brand-link { text-decoration: none; }

/* ── Model Hero ── */
.model-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 5vw 80px;
  position: relative;
  overflow: hidden;
}
.model-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(204,0,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(204,0,0,0.04) 0%, transparent 50%);
}
.model-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.model-hero-content { position: relative; max-width: 720px; }
.model-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.model-hero-desc {
  color: var(--light-gray);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ── Parts Grid ── */
.model-parts-section { background: var(--dark); }
.model-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}
.model-parts-card {
  background: var(--card);
  padding: 32px 28px;
  transition: background 0.3s;
}
.model-parts-card:hover { background: #181818; }
.model-parts-cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.model-parts-items { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.model-parts-items li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--light-gray); line-height: 1.4;
}
.part-dot-inline { color: var(--red); font-size: 8px; flex-shrink: 0; margin-top: 4px; }

/* ── Services Grid ── */
.model-services-section { background: var(--black); }
.model-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.model-svc-card {
  background: var(--card);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.model-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--red);
  transition: height 0.4s;
}
.model-svc-card:hover { background: #181818; }
.model-svc-card:hover::before { height: 100%; }
.model-svc-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Orbitron', monospace;
  font-size: 11px; color: var(--border); letter-spacing: 2px;
}
.model-svc-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.model-svc-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px; margin-bottom: 10px;
}
.model-svc-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ── SEO Text Section ── */
.model-seo-section { background: var(--dark); }
.model-seo-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.model-seo-text h2 { margin-bottom: 28px; }
.model-seo-text p {
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.model-seo-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.model-fact-box {
  background: var(--black);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.model-fact-num {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
  min-width: 80px;
}
.model-fact-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--light-gray);
  line-height: 1.4;
}
.model-fact-cta {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 24px;
  margin-top: 4px;
}
.model-fact-cta p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.model-fact-cta .btn-primary { display: block; text-align: center; }

/* ── Related Models ── */
.model-related-section { background: var(--black); }
.model-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.model-related-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.model-related-card:hover { border-color: var(--red); transform: translateY(-3px); }
.model-related-home { border-style: dashed; }
.model-related-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
}
.model-related-years { font-size: 13px; color: var(--gray); letter-spacing: 1px; }
.model-related-arrow {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; color: var(--red);
  transition: right 0.2s;
}
.model-related-card:hover .model-related-arrow { right: 14px; }

/* ── Contact section on model page ── */
.model-contact-section { background: var(--dark); padding: 100px 5vw; }

/* ══════════════════════════════════════════════════
   MODEL PAGE RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .model-seo-layout { grid-template-columns: 1fr; }
  .model-seo-facts { flex-direction: row; flex-wrap: wrap; }
  .model-fact-box { flex: 1; min-width: 160px; }
  .model-fact-cta { width: 100%; }
}

@media (max-width: 640px) {
  .model-hero { padding: 110px 4vw 60px; min-height: 70vh; }
  .model-hero-content h1 { font-size: clamp(44px, 12vw, 72px); }
  .model-hero-desc { font-size: 15px; }
  .model-parts-grid { grid-template-columns: 1fr; }
  .model-services-grid { grid-template-columns: 1fr; }
  .model-related-grid { grid-template-columns: 1fr 1fr; }
  .model-seo-facts { flex-direction: column; }
  .model-fact-num { font-size: 20px; min-width: 70px; }
}

/* ══════════════════════════════════════════════════
   NAV DROPDOWN
   ══════════════════════════════════════════════════ */

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-arrow {
  font-size: 10px;
  transition: transform 0.25s;
  display: inline-block;
  color: var(--red);
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

/* Dropdown menu */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  /* no gap — overlap toggle by 8px so mouse never leaves hover zone */
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  list-style: none;
  z-index: 999;
  /* invisible padding-top acts as bridge — mouse stays in hover zone */
  padding: 16px 0 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}

/* Invisible bridge between toggle and menu so mouse doesn't "fall out" */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

/* Triangle pointer */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--red);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li { width: 100%; }

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 20px !important;
  border-bottom: 1px solid var(--border) !important;
  font-size: 14px !important;
  color: var(--light-gray) !important;
  letter-spacing: 1px !important;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap;
}

.nav-dropdown-menu li:last-child a { border-bottom: none !important; }

.nav-dropdown-menu a:hover {
  background: rgba(204,0,0,0.08) !important;
  color: var(--white) !important;
  padding-left: 28px !important;
}

.nav-dropdown-menu a::after { display: none !important; }

.nav-dropdown-menu a span {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-left: auto;
}

/* Active current page */
.nav-dropdown-active a {
  background: rgba(204,0,0,0.1) !important;
  color: var(--white) !important;
  border-left: 2px solid var(--red);
}

/* ── Mobile dropdown ── */
@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    border-top: none;
    border-left: 3px solid var(--red);
    background: rgba(20,20,20,0.98);
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding-left: 32px !important;
    font-size: 14px !important;
  }
  .nav-dropdown-menu a:hover { padding-left: 40px !important; }
}

/* ── Model Switcher Bar ── */
.model-switcher {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  margin-top: 84px; /* nav height */
}
.model-switcher-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}
.model-switcher-inner::-webkit-scrollbar { display: none; }

.model-switcher-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  margin-right: 20px;
  flex-shrink: 0;
}

.model-switcher-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 100%;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gray);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.model-switcher-link:hover {
  color: var(--white);
  background: rgba(204,0,0,0.06);
}
.model-switcher-link span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gray);
  font-weight: 500;
}

.model-switcher-home {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  margin-left: auto;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
}
.model-switcher-home:hover { color: var(--red-glow); }

/* Fix hero top padding since switcher takes space */
.model-switcher + .divider + .model-hero,
.model-switcher ~ .model-hero {
  margin-top: 0;
}
.model-page .model-hero { padding-top: 60px; min-height: calc(80vh - 44px); }

@media (max-width: 640px) {
  .model-switcher { padding: 0 4vw; }
  .model-switcher-link { padding: 0 14px; font-size: 14px; }
  .model-switcher-label { display: none; }
}

/* ══════════════════════════════════════════════════
   NAV CALCULATOR LINK
   ══════════════════════════════════════════════════ */
.nav-calc {
  background: none !important;
  color: var(--red) !important;
  font-weight: 600 !important;
  transition: color 0.2s !important;
}
.nav-calc:hover {
  background: none !important;
  color: var(--red-glow) !important;
}
.nav-calc::after { background: var(--red) !important; }

@media (max-width: 900px) {
  .nav-calc {
    padding: 14px 5vw !important;
    font-size: 15px !important;
    display: block !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-top: 1px solid var(--border) !important;
    margin-top: -1px !important;
  }
}

/* ══════════════════════════════════════════════════
   CALCULATOR PAGE
   ══════════════════════════════════════════════════ */
.calc-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding: 130px 5vw 70px;
  position: relative;
  overflow: hidden;
}
.calc-hero-content { position: relative; max-width: 640px; }
.calc-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.calc-main-section { background: var(--dark); padding: 80px 5vw; }

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Plugin wrapper — style the shortcode output */
.calc-plugin-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 40px;
  min-height: 300px;
}
/* Reset potential plugin styles inside */
.calc-plugin-wrap * { box-sizing: border-box; }
.calc-plugin-wrap input,
.calc-plugin-wrap select,
.calc-plugin-wrap textarea {
  background: var(--black) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  padding: 10px 14px !important;
  font-family: 'Rajdhani', sans-serif !important;
  width: 100% !important;
}
.calc-plugin-wrap input:focus,
.calc-plugin-wrap select:focus {
  border-color: var(--red) !important;
  outline: none !important;
}
.calc-plugin-wrap button,
.calc-plugin-wrap [type="submit"] {
  background: var(--red) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 28px !important;
  cursor: pointer !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}
.calc-plugin-wrap button:hover,
.calc-plugin-wrap [type="submit"]:hover {
  background: var(--red-glow) !important;
}
.calc-plugin-wrap label {
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--gray) !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.calc-plugin-wrap h2,
.calc-plugin-wrap h3 {
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 2px !important;
  color: var(--white) !important;
}

/* Sidebar */
.calc-sidebar { display: flex; flex-direction: column; gap: 16px; }

.calc-info-box {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 24px;
}
.calc-info-box.calc-info-cta { border-top: 3px solid var(--red); }

.calc-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
}
.calc-info-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.calc-info-list li {
  display: flex; gap: 10px;
  font-size: 13px; color: var(--light-gray); line-height: 1.5;
  align-items: flex-start;
}
.calc-info-dot { color: var(--red); font-size: 8px; flex-shrink: 0; margin-top: 4px; }
.calc-info-box p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.calc-models-box {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 24px;
}
.calc-model-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--light-gray);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s, padding-left 0.2s;
}
.calc-model-link:last-child { border-bottom: none; }
.calc-model-link:hover { color: var(--white); padding-left: 6px; }
.calc-model-years { font-size: 11px; color: var(--gray); margin-left: auto; }
.calc-model-arr { color: var(--red); font-size: 14px; }

@media (max-width: 1024px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .calc-hero { padding: 110px 4vw 50px; }
  .calc-main-section { padding: 60px 4vw; }
  .calc-plugin-wrap { padding: 24px 16px; }
  .calc-sidebar { grid-template-columns: 1fr; }
}
