@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Oswald:wght@400;600;700&display=swap");

:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --card: #1a1a1a;
  --accent: #ff6b00;
  --accent-2: #ff9f1a;
  --text: #f6f6f6;
  --muted: #b7b7b7;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Oswald", "Arial Black", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1b1b1b 0%, #0b0b0b 55%, #050505 100%);
}

.page {
  max-width: 1120px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 28px 24px 100px;
  min-height: 88vh;
  overflow: hidden;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  color: #d9d9d9;
}

.nav-cta {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.hero-content {
  margin-top: 90px;
  max-width: 600px;
  opacity: 0;
  animation: rise 0.8s ease forwards;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0 40px;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.phone-cta {
  white-space: nowrap;
}

.btn.ghost {
  border-color: #3a3a3a;
  color: #e0e0e0;
  background: transparent;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.8s ease forwards;
  animation-delay: 0.15s;
}

.stat-number {
  display: block;
  font-size: 26px;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d0d0d0;
}

section {
  padding: 90px 24px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: rise 0.7s ease forwards;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.6);
}

.service-grid .card:nth-child(1) {
  animation-delay: 0.05s;
}

.service-grid .card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-grid .card:nth-child(3) {
  animation-delay: 0.15s;
}

.service-grid .card:nth-child(4) {
  animation-delay: 0.2s;
}

.service-grid .card:nth-child(5) {
  animation-delay: 0.25s;
}

.service-grid .card:nth-child(6) {
  animation-delay: 0.3s;
}

.service-grid .card:nth-child(7) {
  animation-delay: 0.35s;
}

.service-grid .card:nth-child(8) {
  animation-delay: 0.4s;
}

.diagnostics {
  background: linear-gradient(110deg, #111 0%, #1f1f1f 55%, #121212 100%);
}

.diagnostics-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}

.diagnostics ol {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
}

.diagnostics-panel {
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  padding: 24px;
  border-radius: 16px;
}

.diagnostics-panel ul {
  padding-left: 18px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
}

.tesla {
  background: linear-gradient(150deg, #140a00 0%, #0b0b0b 60%, #1a1a1a 100%);
}

.tesla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.tesla-card {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.05);
  opacity: 0;
  animation: rise 0.7s ease forwards;
}

.tesla-card:nth-child(1) {
  animation-delay: 0.1s;
}

.tesla-card:nth-child(2) {
  animation-delay: 0.2s;
}

.tesla-card:nth-child(3) {
  animation-delay: 0.3s;
}

.prices {
  background: var(--bg-soft);
}

.map {
  background: #0d0d0d;
}

.map-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  display: block;
}

.map-cta {
  margin-top: 18px;
}

.phone-link {
  color: var(--accent);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.price-card {
  padding: 18px;
  border-radius: 14px;
  background: #101010;
  border: 1px solid #2c2c2c;
  opacity: 0;
  animation: rise 0.7s ease forwards;
}

.price-card:nth-child(1) {
  animation-delay: 0.1s;
}

.price-card:nth-child(2) {
  animation-delay: 0.2s;
}

.price-card:nth-child(3) {
  animation-delay: 0.3s;
}

.price-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer {
  padding: 70px 24px 90px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: #050505;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 20px 18px 80px;
  }

  section {
    padding: 70px 18px;
  }

  .diagnostics-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}
