:root {
  --bg: #08111d;
  --bg-soft: #101b2a;
  --panel: #142235;
  --panel-light: #1c2f48;
  --text: #f5f8fc;
  --muted: #aeb9c7;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #1677ff;
  --blue-dark: #0b4fb3;
  --red: #e21d2f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans Georgian", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(8, 17, 29, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lang-btn.is-active {
  color: var(--white);
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #05080d url("mnt/data/cover%20shop.png") center / cover no-repeat;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.12) contrast(1.08) brightness(0.95);
  transition: opacity 300ms ease;
}

.hero-video.is-ready {
  opacity: 0.82;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.88) 0%, rgba(5, 10, 18, 0.64) 40%, rgba(5, 10, 18, 0.16) 72%, rgba(5, 10, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.34) 0%, rgba(5, 10, 18, 0.08) 48%, rgba(5, 10, 18, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: end;
  min-height: 100svh;
  padding: 7.5rem clamp(1rem, 5vw, 5rem) 3rem;
}

.hero-copy {
  max-width: 820px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.62);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: #78adff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-title {
  display: grid;
  gap: 0.12em;
  margin: 0;
  max-width: min-content;
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-title-main,
.hero-title-sub {
  display: block;
  white-space: nowrap;
}

.hero-title-main {
  font-size: clamp(2.55rem, 9.2vw, 7rem);
  text-transform: uppercase;
}

.hero-title-sub {
  color: #dbe8f8;
  font-size: clamp(2.3rem, 8.4vw, 6rem);
  text-transform: lowercase;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.headline {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--white);
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  font-weight: 750;
  line-height: 1.25;
}

.hero-note {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: #d7e4f5;
  font-size: clamp(1.02rem, 2.5vw, 1.22rem);
  font-weight: 650;
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 8px;
  padding: 0.85rem 1.15rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #ff4b4b);
  color: var(--white);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-message {
  border: 1px solid rgba(38, 166, 91, 0.5);
  background: rgba(38, 166, 91, 0.2);
  color: var(--white);
}

.button:hover,
.button:focus-visible,
.contact-row:hover,
.contact-row:focus-visible {
  transform: translateY(-2px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left {
  transform: translate3d(-38px, 0, 0);
}

.reveal-on-scroll.reveal-right {
  transform: translate3d(38px, 0, 0);
}

.reveal-on-scroll.reveal-scale {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-card {
  width: min(100%, 360px);
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 17, 29, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.hero-card p {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.hero-card a {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:last-child,
.experience-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-section {
  background:
    radial-gradient(circle at top right, rgba(22, 119, 255, 0.15), transparent 35%),
    var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(28, 47, 72, 0.9), rgba(16, 27, 42, 0.95));
}

.service-card:last-child {
  border-color: rgba(226, 29, 47, 0.5);
  background:
    linear-gradient(135deg, rgba(226, 29, 47, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(28, 47, 72, 0.95), rgba(16, 27, 42, 0.98));
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.popular-parts {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.popular-parts > span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.popular-parts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular-parts li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  color: #dbe8f8;
  font-size: 0.9rem;
  font-weight: 800;
}

.order-section {
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.98), rgba(16, 27, 42, 0.98)),
    var(--bg-soft);
}

.order-layout {
  display: grid;
  gap: 1.25rem;
}

.order-steps {
  display: grid;
  gap: 0.85rem;
}

.order-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.order-step > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
}

.order-step p,
.request-panel p,
.guarantee-note p {
  margin: 0;
  color: var(--muted);
}

.request-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.25rem;
  border: 1px solid rgba(226, 29, 47, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 29, 47, 0.18), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.request-panel h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.guarantee-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.icon-wrap,
.contact-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #dbe9ff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.icon-wrap svg,
.contact-icon svg {
  width: 24px;
  height: 24px;
}

.experience-section {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--bg-soft);
}

.experience-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-media img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.experience-copy {
  max-width: 680px;
}

.experience-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.experience-stats span {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.experience-stats strong {
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1;
}

.experience-stats small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.6), rgba(8, 17, 29, 1)),
    var(--bg);
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.contact-panel {
  display: grid;
  gap: 0.85rem;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 86px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-row strong,
.contact-row small {
  display: block;
}

.contact-row small {
  color: var(--muted);
  font-size: 0.95rem;
}

.map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-light);
}

.map-note {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 17, 29, 0.88);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: #050a12;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

.quick-request-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(38, 166, 91, 0.45);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: #159447;
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.quick-request-fab svg,
.mobile-call-bar svg {
  width: 20px;
  height: 20px;
}

.mobile-call-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 26;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #ff4b4b);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 950;
}

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav-links {
    display: flex;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .order-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }

  .experience-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .experience-section {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .language-switcher {
    justify-self: end;
  }

  .lang-btn {
    min-width: 36px;
    padding: 0.42rem 0.55rem;
  }

  .hero-title-main {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .hero-title-sub {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .headline {
    font-size: 1.1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .order-step,
  .guarantee-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 5.4rem;
  }

  .hero-card {
    display: none;
  }

  .quick-request-fab {
    right: 1rem;
    bottom: 5.15rem;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .quick-request-fab span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .mobile-call-bar {
    display: inline-flex;
  }

  .reveal-on-scroll.reveal-left,
  .reveal-on-scroll.reveal-right {
    transform: translate3d(0, 28px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .button,
  .contact-row,
  .reveal-on-scroll {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
