/* ALM Auto Service — Modern Design 2026 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #070b14;
  --bg-soft: #0d1320;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --glass: rgba(15, 23, 42, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);
  --accent: #4f8cff;
  --accent-2: #7c5cff;
  --accent-glow: rgba(79, 140, 255, 0.35);
  --warm: #ffb020;
  --warm-glow: rgba(255, 176, 32, 0.3);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(79, 140, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(124, 92, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 176, 32, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #7eb3ff; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 16px;
  left: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
}

.header--scrolled {
  top: 8px;
  background: rgba(7, 11, 20, 0.92);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 8px 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo__mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.logo__text { display: flex; flex-direction: column; }

.logo__main {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo__main span { color: var(--accent); }

.logo__sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 100px;
  padding: 4px;
  border: 1px solid var(--border);
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--highlight {
  color: var(--accent) !important;
  background: rgba(79, 140, 255, 0.12) !important;
}

.nav__link--phone { display: none; }

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 11px 22px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
  color: #fff;
}

.btn--warm {
  background: linear-gradient(135deg, var(--warm), #ff8c00);
  color: #1a1000;
  box-shadow: 0 4px 20px var(--warm-glow);
}

.btn--warm:hover {
  transform: translateY(-2px);
  color: #1a1000;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn--large { padding: 14px 32px; font-size: 0.95rem; }

.btn__icon { font-size: 1.1rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(79, 140, 255, 0.15);
  top: -100px; right: -100px;
}

.hero__orb--2 {
  width: 350px; height: 350px;
  background: rgba(124, 92, 255, 0.12);
  bottom: 0; left: -80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero__content { position: relative; z-index: 2; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(79, 140, 255, 0.1);
  border: 1px solid rgba(79, 140, 255, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__tag-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.hero__stat:hover {
  background: var(--surface-hover);
  border-color: rgba(79, 140, 255, 0.2);
  transform: translateY(-2px);
}

.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero__card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero__card-icon {
  font-size: 4rem;
  text-align: center;
  margin: 16px 0;
  filter: drop-shadow(0 8px 24px rgba(79, 140, 255, 0.3));
}

.hero__card-items { display: flex; flex-direction: column; gap: 12px; }

.hero__card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.hero__card-item-icon {
  width: 36px; height: 36px;
  background: rgba(79, 140, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero__card-item span:last-child {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent);
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section__header {
  margin-bottom: 56px;
  max-width: 640px;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section__desc {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 140, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before { opacity: 1; }

.service-card--wide { grid-column: span 2; }

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card__text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ─── PRICES ─── */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.price-category:hover {
  border-color: rgba(79, 140, 255, 0.2);
}

.price-category__title {
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 24px;
  background: rgba(79, 140, 255, 0.08);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prices-table { width: 100%; border-collapse: collapse; }

.prices-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.prices-table tr:last-child td { border-bottom: none; }

.prices-table td:first-child { color: var(--text-muted); }

.prices-table td:last-child {
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 140px 0 60px;
  position: relative;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page-hero__breadcrumb {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.page-hero__breadcrumb a { color: var(--text-muted); }
.page-hero__breadcrumb a:hover { color: var(--accent); }

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.15), rgba(124, 92, 255, 0.1));
  border: 1px solid rgba(79, 140, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-banner__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.footer__desc {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: var(--text-muted); font-size: 0.9rem; }
.footer__links a:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__contact-item a { color: var(--text); font-weight: 600; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── FLOATING BTN ─── */
.floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--warm), #ff8c00);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 32px var(--warm-glow);
  transition: all var(--transition);
  animation: float-pulse 3s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.08);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 32px var(--warm-glow); }
  50% { box-shadow: 0 8px 48px rgba(255, 176, 32, 0.5); }
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header { left: 12px; right: 12px; top: 12px; }
  .nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(20px);
  }
  .nav--open { display: flex; }
  .nav__link { width: 100%; text-align: center; border-radius: var(--radius-sm); }
  .burger { display: flex; }
  .hero__stats { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}