
:root {
  --bg: #090c11;
  --bg-2: #11151d;
  --bg-3: #151b24;
  --panel: rgba(17, 21, 29, 0.82);
  --panel-strong: rgba(20, 24, 33, 0.96);
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.16);
  --text: #f5f7fa;
  --muted: #b4bcc8;
  --soft: #8d98a8;
  --brand: #ef4025;
  --brand-2: #ff9c2a;
  --brand-3: #ffc258;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(239,64,37,0.18), transparent 26%),
    radial-gradient(circle at 90% 15%, rgba(255,156,42,0.16), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(255,194,88,0.07), transparent 28%),
    linear-gradient(180deg, #090c11 0%, #11151d 52%, #0a0d12 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  background: radial-gradient(circle, rgba(239,64,37,0.20) 0%, rgba(255,156,42,0.12) 30%, rgba(239,64,37,0) 72%);
  filter: blur(14px);
  transform: translate(-50%, -50%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("../img/grid-texture.png");
  background-size: 340px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 48%, transparent 92%);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section { padding: 96px 0; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(0px);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(9, 12, 17, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand img {
  width: auto;
  height: 82px;
  max-width: min(240px, 44vw);
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.28));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.main-nav a,
.social-mini,
.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}
.main-nav a:hover,
.social-mini:hover,
.footer-links a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  inset: 84px 16px auto 16px;
  background: rgba(13, 17, 24, 0.98);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px;
}
.mobile-nav a {
  display: block;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  font-weight: 600;
}
.mobile-nav a:last-child { border-bottom: 0; margin-top: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 44px; padding: 0 16px; font-size: 0.95rem; }
.btn-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 40px rgba(239,64,37,0.24);
}
.btn-ghost {
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.btn-instagram {
  color: #fff;
  background: linear-gradient(135deg, #f94857, #ff9c2a);
}
.btn-facebook {
  color: #fff;
  background: linear-gradient(135deg, #2559ef, #3a8cff);
}

.hero {
  padding-top: 42px;
  padding-bottom: 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}
.eyebrow,
.section-kicker,
.mini-label,
.contact-label,
.aside-label {
  color: var(--brand-3);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.hero h1,
.section h2 {
  margin: 14px 0 18px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); }
.section h2 { font-size: clamp(2rem, 4.3vw, 3.6rem); }

.hero-text,
.section-copy p,
.social-copy p,
.map-copy p,
.contact-copy p,
.category-body p,
.why-card p,
.info-card p,
.mini-panel p,
.aside-note {
  color: var(--muted);
  line-height: 1.74;
  font-size: 1.03rem;
  margin: 0 0 16px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 28px;
}
.hero-tags,
.parts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags span,
.parts-list span,
.brand-chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-card,
.cta-box,
.category-card,
.aside-card,
.contact-card,
.info-card,
.why-card,
.mini-panel,
.map-frame,
.trust-item {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}
.hero-card-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(13, 16, 23, 0.82);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-card-badge strong { font-size: 0.95rem; }
.hero-card-badge a {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}

.trust-strip { padding: 10px 0 0; }
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-item {
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.about-grid,
.why-grid,
.social-grid,
.map-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.info-card,
.why-card,
.mini-panel {
  border-radius: 22px;
  padding: 24px;
}
.info-card h3,
.why-card h3,
.category-body h3,
.mini-panel strong {
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.info-card h3,
.why-card h3,
.category-body h3 { font-size: 1.25rem; }
.info-card p,
.why-card p { margin: 0; font-size: 0.98rem; }

.aside-card {
  border-radius: 28px;
  padding: 28px;
  position: sticky;
  top: 110px;
}
.aside-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
}
.aside-row a {
  font-size: 1.12rem;
  font-weight: 700;
}
.aside-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 10px 0 20px;
}

.section-head { max-width: 920px; margin-bottom: 28px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.category-card {
  overflow: hidden;
  border-radius: 28px;
}
.category-media img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}
.category-body { padding: 22px 22px 24px; }

.parts-list { margin-top: 18px; }

.why-points { display: grid; gap: 16px; }
.brand-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: start;
}
.brand-chip {
  justify-content: center;
  min-height: 56px;
  letter-spacing: 0.05em;
}

.social-cards {
  display: grid;
  gap: 16px;
}
.social-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

.map-frame {
  overflow: hidden;
  border-radius: 28px;
  min-height: 460px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

.cta-box {
  overflow: hidden;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
}
.cta-copy { padding: 34px; }
.cta-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-card {
  border-radius: 28px;
  padding: 18px;
  display: grid;
  gap: 10px;
}
.contact-line {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-line strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  word-break: break-word;
}
.contact-phone {
  background: linear-gradient(135deg, rgba(239,64,37,0.18), rgba(255,156,42,0.15));
  border-color: rgba(255,156,42,0.36);
}

.site-footer {
  padding: 30px 0 90px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner,
.footer-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 20px;
  align-items: start;
}
.footer-logo { width: 190px; margin-bottom: 12px; }
.site-footer p,
.footer-bottom span {
  color: var(--soft);
  margin: 0;
  line-height: 1.7;
}
.footer-links {
  display: grid;
  gap: 12px;
}
.footer-bottom {
  grid-template-columns: 1fr auto;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  min-width: 210px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 24px 60px rgba(239,64,37,0.28);
  border: 1px solid rgba(255,255,255,0.18);
}
.floating-call span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}
.floating-call strong { font-size: 1rem; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

.card-tilt {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.card-tilt:hover { box-shadow: 0 28px 90px rgba(0,0,0,0.40); }

@media (max-width: 1120px) {
  .header-actions { display: none; }
  .hero-grid,
  .about-grid,
  .why-grid,
  .social-grid,
  .map-grid,
  .cta-box,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .info-grid,
  .category-grid,
  .trust-items { grid-template-columns: 1fr; }
  .brand-wall { grid-template-columns: repeat(3, 1fr); }
  .aside-card { position: static; }
  .cta-image img { min-height: 320px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .mobile-nav.is-open { display: block; }
  .brand img { height: 68px; max-width: 52vw; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .section h2 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-card-badge {
    position: static;
    margin: 14px;
  }
  .hero-card img { aspect-ratio: 1 / 1; }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 24px; }
  .btn,
  .hero-cta .btn { width: 100%; }
  .hero-card-badge {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-tags span,
  .parts-list span,
  .brand-chip { font-size: 0.84rem; }
  .info-grid { grid-template-columns: 1fr; }
  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }
}



body.has-offer-modal {
  overflow: hidden;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.offer-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,156,42,0.12), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(239,64,37,0.12), transparent 24%),
    rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(8px);
}

.offer-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  background:
    linear-gradient(145deg, rgba(20,24,33,0.98), rgba(11,14,20,0.96));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  box-shadow: 0 40px 140px rgba(0,0,0,0.50);
  overflow: hidden;
  transform: translateY(18px) scale(0.97);
  transition: transform 260ms ease;
}

.offer-modal.is-visible .offer-modal__dialog {
  transform: translateY(0) scale(1);
}

.offer-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,194,88,0.18), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(239,64,37,0.18), transparent 22%);
  pointer-events: none;
}

.offer-modal__content {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 20px;
  align-items: center;
  padding: 36px;
}

.offer-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.offer-modal__close:hover {
  transform: scale(1.06);
  background: rgba(255,255,255,0.14);
}

.offer-modal__art {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
}

.offer-modal__art img {
  width: min(100%, 360px);
  filter: drop-shadow(0 20px 38px rgba(0,0,0,0.34));
}

.offer-modal__copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.offer-modal__copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 42ch;
}

.offer-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-3);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.offer-modal__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.offer-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.offer-modal__dismiss {
  cursor: pointer;
}

@media (max-width: 860px) {
  .offer-modal {
    padding: 14px;
  }

  .offer-modal__content {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 20px 24px;
  }

  .offer-modal__art img {
    width: min(100%, 250px);
  }

  .offer-modal__copy {
    text-align: center;
  }

  .offer-modal__copy p {
    max-width: none;
  }

  .offer-modal__actions {
    justify-content: center;
  }

  .offer-modal__close {
    top: 10px;
    right: 10px;
  }
}

