:root {
  --bg: #05070a;
  --bg-soft: #0b1118;
  --panel: #111923;
  --panel-2: #151f2b;
  --text: #f4f8fb;
  --muted: #a8b4bf;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #12d8f3;
  --accent-2: #176dff;
  --accent-dark: #071b2e;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* Shared header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 10, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(100% - 32px, 1240px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 152px;
  height: 58px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.nav-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: #dce6ee;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(18, 216, 243, 0.1);
}

.call-button,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.call-button {
  color: #001018;
  background: linear-gradient(135deg, var(--accent), #5eeeff);
  box-shadow: 0 12px 34px rgba(18, 216, 243, 0.22);
  white-space: nowrap;
}

.button-primary {
  color: #001018;
  background: linear-gradient(135deg, var(--accent), #5defff);
  box-shadow: 0 14px 40px rgba(18, 216, 243, 0.22);
}

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

.button:hover,
.call-button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Page sections and hero treatments */
.section {
  padding: 88px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(18, 216, 243, 0.24), transparent 26%),
    linear-gradient(135deg, #05070a 0%, #0a0f16 55%, #07162b 100%);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%);
  background-size: 46px 46px;
  pointer-events: none;
}

.section-muted {
  background:
    linear-gradient(180deg, #0b1118, #080c12),
    var(--bg-soft);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -140px;
  width: 54vw;
  height: 360px;
  border-top: 42px solid rgba(18, 216, 243, 0.2);
  border-radius: 50% 50% 0 0;
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.split-layout,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 40px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-subtitle {
  max-width: 640px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel {
  position: relative;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-photo-scene {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 216, 243, 0.28);
  border-radius: var(--radius);
  background: #020304;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-shop-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.06) brightness(0.58);
}

.hero-photo-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 45%, rgba(18, 216, 243, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.48)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.26), transparent 45%, rgba(5, 7, 10, 0.18));
  pointer-events: none;
}

.hero-logo-scene {
  position: absolute;
  right: -128px;
  bottom: 34px;
  width: min(48%, 330px);
  min-height: 270px;
  display: grid;
  place-items: center;
  isolation: isolate;
  pointer-events: none;
}

.hero-logo-scene::before {
  content: "";
  position: absolute;
  inset: 10% 0 4% 4%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(18, 216, 243, 0.28), transparent 34%),
    radial-gradient(circle at 62% 55%, rgba(23, 109, 255, 0.18), transparent 48%);
  filter: blur(10px);
  animation: logoGlowPulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-logo-scene::after {
  content: "";
  position: absolute;
  inset: 22% 8% 14% 10%;
  z-index: -1;
  border: 1px solid rgba(18, 216, 243, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 2px) 0 0 / 34px 34px,
    radial-gradient(circle at center, rgba(18, 216, 243, 0.16), transparent 2px) 18px 22px / 46px 46px;
  opacity: 0.44;
  transform: rotateX(64deg) rotateZ(-12deg);
  animation: particlePlane 14s linear infinite;
  pointer-events: none;
}

.hero-3d-logo {
  width: min(330px, 100%);
  max-width: 92vw;
  height: auto;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  filter:
    drop-shadow(0 0 18px rgba(18, 216, 243, 0.45))
    drop-shadow(0 26px 54px rgba(0, 0, 0, 0.72));
  animation: floatPrecisionLogo 5.8s ease-in-out infinite;
  will-change: transform;
}

.logo-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 14px rgba(18, 216, 243, 0.9),
    0 0 30px rgba(23, 109, 255, 0.48);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  animation: particleOrbit 4.8s ease-in-out infinite;
}

.particle-one {
  --particle-x: -260px;
  --particle-y: -150px;
  --particle-mid-x: -110px;
  --particle-mid-y: -70px;
  animation-delay: 0s;
}

.particle-two {
  --particle-x: 250px;
  --particle-y: -120px;
  --particle-mid-x: 110px;
  --particle-mid-y: -42px;
  animation-delay: 0.55s;
}

.particle-three {
  --particle-x: 310px;
  --particle-y: 30px;
  --particle-mid-x: 138px;
  --particle-mid-y: 10px;
  animation-delay: 1.1s;
}

.particle-four {
  --particle-x: -300px;
  --particle-y: 70px;
  --particle-mid-x: -128px;
  --particle-mid-y: 18px;
  animation-delay: 1.65s;
}

.particle-five {
  --particle-x: 180px;
  --particle-y: 190px;
  --particle-mid-x: 80px;
  --particle-mid-y: 80px;
  animation-delay: 2.2s;
}

.particle-six {
  --particle-x: -190px;
  --particle-y: 200px;
  --particle-mid-x: -82px;
  --particle-mid-y: 84px;
  animation-delay: 2.75s;
}

.particle-seven {
  --particle-x: 20px;
  --particle-y: -235px;
  --particle-mid-x: 10px;
  --particle-mid-y: -98px;
  animation-delay: 3.3s;
}

.particle-eight {
  --particle-x: -20px;
  --particle-y: 245px;
  --particle-mid-x: -8px;
  --particle-mid-y: 110px;
  animation-delay: 3.85s;
}

@keyframes floatPrecisionLogo {
  0%,
  100% {
    transform: translateY(0) rotateY(-13deg) rotateX(4deg) rotateZ(-1deg);
  }

  50% {
    transform: translateY(-24px) rotateY(8deg) rotateX(7deg) rotateZ(1deg);
  }
}

@keyframes particleOrbit {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(0, 0) scale(0.18);
  }

  32% {
    opacity: 0.95;
    transform: translate(-50%, -50%) translate(var(--particle-mid-x), var(--particle-mid-y)) scale(0.88);
  }

  68% {
    opacity: 0.75;
    transform: translate(-50%, -50%) translate(var(--particle-x), var(--particle-y)) scale(1.05);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate(0, 0) scale(0.18);
  }
}

@keyframes particlePlane {
  0% {
    background-position: 0 0, 18px 22px;
    opacity: 0.32;
  }

  50% {
    opacity: 0.55;
  }

  100% {
    background-position: 140px 70px, -90px 132px;
    opacity: 0.32;
  }
}

@keyframes logoGlowPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080c12;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-left: 1px solid var(--line);
  color: var(--white);
  font-weight: 900;
}

.trust-grid div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid span {
  color: var(--accent);
  font-size: 0.82rem;
}

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

.section-heading p:last-child {
  font-size: 1.05rem;
}

.shop-gallery-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(18, 216, 243, 0.12), transparent 30%),
    linear-gradient(180deg, #0b1118, #080c12);
  border-top: 1px solid var(--line);
}

.shop-photo-grid,
.service-photo-grid,
.about-photo-grid {
  display: grid;
  gap: 18px;
}

.shop-photo-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  align-items: stretch;
}

.shop-photo-card,
.service-photo-card,
.about-photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #020304;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.shop-photo-large {
  min-height: 360px;
}

.shop-photo-card img,
.service-photo-card img,
.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04) brightness(0.86);
  transition: transform 260ms ease, filter 260ms ease;
}

.shop-photo-card:hover img,
.service-photo-card:hover img,
.about-photo-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.05) brightness(0.92);
}

.shop-photo-card::after,
.service-photo-card::after,
.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.shop-photo-card figcaption,
.service-photo-card figcaption,
.about-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Reusable card surfaces */
.service-card,
.detail-card,
.info-card,
.shop-panel,
.contact-details,
.contact-form,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.service-card:hover,
.detail-card:hover,
.info-card:hover {
  border-color: rgba(18, 216, 243, 0.4);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 6px;
  color: #001018;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(18, 216, 243, 0.18);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
}

.feature-list {
  font-size: 1.05rem;
}

.feature-list ul,
.shop-panel ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li,
.shop-panel li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  color: #d6e1e9;
}

.feature-list li::before,
.shop-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--accent);
  border-radius: 50%;
}

.cta-band {
  padding: 46px 0;
  background: linear-gradient(90deg, #08243a, #071018 52%, #081f36);
  border-top: 1px solid rgba(18, 216, 243, 0.25);
  border-bottom: 1px solid rgba(18, 216, 243, 0.25);
}

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

.cta-content h2 {
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 150px;
  padding: 24px;
}

.info-card span,
.contact-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card strong,
.contact-line strong,
.contact-line a {
  color: var(--white);
  font-size: 1.05rem;
}

.page-hero {
  min-height: 440px;
  display: flex;
  align-items: center;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 300px;
  align-items: center;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.page-hero-logo {
  width: 300px;
  padding: 18px;
  justify-self: end;
  border: 1px solid rgba(18, 216, 243, 0.22);
  border-radius: var(--radius);
  background: #020304;
}

.services-list {
  display: grid;
  gap: 18px;
}

.service-photo-strip {
  padding: 34px 0 0;
}

.service-photo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-photo-card {
  min-height: 280px;
}

.detail-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 28px;
}

.detail-card .card-icon {
  margin-bottom: 0;
}

.about-grid {
  grid-template-columns: 1.05fr 0.75fr;
  align-items: start;
}

.about-copy p {
  font-size: 1.05rem;
}

.shop-panel {
  padding: 30px;
}

.about-photo-grid {
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 18px;
}

.about-photo-card {
  min-height: 330px;
}

.about-photo-wide {
  min-height: 330px;
}

.reviews-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(18, 216, 243, 0.14), transparent 28%),
    linear-gradient(180deg, #080c12, #0b1118);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.review-card::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 18px;
  width: 54px;
  height: 42px;
  opacity: 0.14;
  background:
    linear-gradient(var(--accent), var(--accent)) left top / 20px 30px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right top / 20px 30px no-repeat;
  transform: skew(-10deg);
}

.review-card-large {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(18, 216, 243, 0.16), rgba(255, 255, 255, 0.035)),
    var(--panel-2);
}

.review-card-accent {
  background:
    linear-gradient(145deg, rgba(23, 109, 255, 0.18), rgba(18, 216, 243, 0.09)),
    var(--accent-dark);
}

.review-card p {
  position: relative;
  margin-bottom: 26px;
  color: #dce6ee;
  font-size: 1rem;
}

.review-card-large p {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.48;
}

.review-card footer {
  position: relative;
  color: var(--white);
  font-weight: 900;
}

.review-card footer::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.review-card a:hover {
  color: var(--accent);
}

/* Contact page */
.contact-grid {
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
}

.contact-details,
.contact-form {
  padding: 30px;
}

.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line a:hover,
.info-card a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.map-panel {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(18, 216, 243, 0.12), rgba(23, 109, 255, 0.1)),
    #0b1118;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 49%, rgba(18, 216, 243, 0.3) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.18) 50%, transparent 51%);
  background-size: 52px 52px;
  pointer-events: none;
}

.map-panel h3,
.map-panel p,
.map-panel a {
  position: relative;
}

.form-heading {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  margin: 14px 0 7px;
  color: #dce6ee;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.hidden-field {
  display: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(18, 216, 243, 0.45);
  border-color: var(--accent);
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.privacy-note a {
  color: var(--accent);
  font-weight: 900;
}

.form-message {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--accent);
  font-weight: 900;
}

.policy-content {
  max-width: 880px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.policy-content h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.policy-content h2:first-of-type {
  margin-top: 22px;
}

.policy-content a {
  color: var(--accent);
  font-weight: 900;
}

.vendor-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 12%, rgba(18, 216, 243, 0.13), transparent 32%),
    linear-gradient(180deg, #070a0f 0%, #030507 100%);
}

.vendor-section::before,
.vendor-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(13vw, 140px);
  pointer-events: none;
}

.vendor-section::before {
  left: 0;
  background: linear-gradient(90deg, #070a0f, rgba(7, 10, 15, 0));
}

.vendor-section::after {
  right: 0;
  background: linear-gradient(270deg, #030507, rgba(3, 5, 7, 0));
}

.vendor-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.vendor-heading h2 {
  margin-bottom: 0;
}

.vendor-heading p:last-child {
  margin-bottom: 6px;
}

.vendor-carousel {
  position: relative;
  z-index: 1;
  margin: 0 calc((100vw - min(100vw - 40px, var(--max-width))) / -2);
  padding: 12px 0;
  overflow: hidden;
  min-height: 156px;
}

.vendor-track {
  display: flex;
  width: auto;
  min-width: 0;
  gap: 18px;
  --vendor-loop-distance: 4824px;
  animation: vendorScroll 90s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.vendor-carousel:hover .vendor-track {
  animation-play-state: paused;
}

.vendor-card {
  flex: 0 0 250px;
  height: 132px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #101721;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.vendor-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes vendorScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--vendor-loop-distance) * -1), 0, 0);
  }
}

.site-footer {
  padding: 54px 0 24px;
  border-top: 1px solid var(--line);
  background: #030507;
}

.footer-grid {
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}

.footer-logo img {
  width: 160px;
  border-radius: 4px;
}

.footer-grid h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.footer-grid p {
  max-width: 620px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: #dce6ee;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .button,
  .call-button,
  .reveal {
    transition: none;
  }

  .hero-3d-logo,
  .logo-particle,
  .hero-logo-scene::before,
  .hero-logo-scene::after,
  .vendor-track {
    animation: none;
  }

  .hero-3d-logo {
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 7, 10, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 86px 0;
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vendor-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vendor-heading p:last-child {
    max-width: 680px;
  }

  .page-hero-logo {
    justify-self: start;
  }

  .card-grid,
  .info-grid,
  .reviews-grid,
  .shop-photo-grid,
  .service-photo-grid,
  .about-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .shop-photo-large,
  .about-photo-wide {
    grid-column: 1 / -1;
  }

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

  .trust-grid div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .brand img {
    width: 124px;
    height: 50px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

  .button-row,
  .button-row .button,
  .cta-content .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 430px;
  }

  .hero-photo-scene {
    min-height: 430px;
  }

  .hero-logo-scene {
    right: -32px;
    bottom: 12px;
    width: min(58%, 260px);
    min-height: 210px;
  }

  .hero-3d-logo {
    width: min(260px, 62vw);
  }

  .logo-particle {
    width: 7px;
    height: 7px;
  }

  .card-grid,
  .info-grid,
  .trust-grid,
  .reviews-grid,
  .shop-photo-grid,
  .service-photo-grid,
  .about-photo-grid {
    grid-template-columns: 1fr;
  }

  .shop-photo-large,
  .about-photo-wide {
    grid-column: auto;
  }

  .trust-grid div,
  .trust-grid div:last-child,
  .trust-grid div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .service-card {
    min-height: auto;
  }

  .page-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .page-hero-logo {
    width: min(100%, 260px);
  }

  .detail-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-details,
  .contact-form,
  .shop-panel {
    padding: 24px;
  }

  .vendor-section {
    padding: 58px 0;
  }

  .vendor-section::before,
  .vendor-section::after {
    width: 42px;
  }

  .vendor-carousel {
    margin: 0 -14px;
    min-height: 130px;
    padding: 12px 0 18px;
    overflow: hidden;
  }

  .vendor-track {
    gap: 12px;
    --vendor-loop-distance: 3924px;
    animation-duration: 78s;
    transform: translate3d(0, 0, 0);
  }

  .vendor-card {
    flex-basis: 206px;
    height: 112px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-bottom {
    display: block;
  }
}
