:root {
  --black: #030407;
  --black-2: #070a0f;
  --black-3: #0c1119;
  --card: rgba(11, 15, 24, 0.78);
  --card-strong: rgba(16, 22, 34, 0.92);
  --blue: #006bff;
  --blue-2: #0b4bca;
  --blue-3: #2f8dff;
  --silver: #d8dde5;
  --silver-2: #9ba4b1;
  --steel: #596170;
  --line: rgba(216, 221, 229, 0.14);
  --text: #f5f7fb;
  --muted: #a8b0bd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 107, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(216, 221, 229, 0.1), transparent 24rem),
    linear-gradient(180deg, #020306 0%, #070a0f 45%, #020306 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 75%);
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.hero-copy,
.premium-copy,
.contact-info,
.contact-form,
.service-card,
.testimonial,
.step,
.cta-card,
.workshop-card {
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: 0.3s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(3, 4, 7, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 221, 229, 0.13);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 17, 25, 0.72), rgba(5, 7, 11, 0.52));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 107, 255, 0.28));
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--blue-3);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  margin-left: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0046b8);
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 107, 255, 0.28);
  transition: 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 107, 255, 0.42);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 10px;
  transition: 0.25s ease;
}

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

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

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

.hero {
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding-top: clamp(108px, 12vh, 148px);
  padding-bottom: clamp(44px, 7vh, 80px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 1200px;
  height: 520px;
  transform: translateX(-50%) perspective(600px) rotateX(64deg);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(0, 107, 255, 0.16) 18.4% 18.8%, transparent 19.2% 48%, rgba(216, 221, 229, 0.12) 49.8% 50.2%, transparent 52% 80%, rgba(0, 107, 255, 0.16) 81.2% 81.6%, transparent 82%),
    repeating-linear-gradient(to bottom, transparent 0 44px, rgba(216, 221, 229, 0.09) 45px 46px);
  opacity: 0.62;
  filter: blur(0.3px);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero-glow-blue {
  top: 12%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: rgba(0, 107, 255, 0.3);
}

.hero-glow-silver {
  left: 2%;
  bottom: 8%;
  width: 320px;
  height: 320px;
  background: rgba(216, 221, 229, 0.11);
}

.road-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 107, 255, 0.9), rgba(216,221,229,0.6), transparent);
  box-shadow:
    0 18px 0 rgba(0, 107, 255, 0.18),
    0 36px 0 rgba(216, 221, 229, 0.08);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-3);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--silver));
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(0, 107, 255, 0.6);
}

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

h1,
h2 {
  font-family: "Oswald", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  max-width: 100%;
  overflow-wrap: normal;
}

h1 {
  max-width: 780px;
  margin: 22px 0 24px;
  font-size: 4.25rem;
  line-height: 0.95;
  text-wrap: normal;
}

h2 {
  margin: 18px 0 16px;
  font-size: 3.4rem;
  line-height: 1;
}

.hero-copy p,
.section-heading p,
.premium-copy p,
.contact-info p,
.cta-card p {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.8;
}

.hero-copy p {
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition: 0.22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.24), transparent);
  transform: translateX(-110%);
  transition: 0.45s ease;
}

.btn:hover::after {
  transform: translateX(110%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0041a9);
  color: white;
  box-shadow: 0 20px 48px rgba(0, 107, 255, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(216, 221, 229, 0.18);
  background: rgba(255,255,255,0.04);
  color: var(--silver);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 650px;
  margin-top: 26px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.trust-row strong {
  display: block;
  font-family: "Oswald", sans-serif;
  color: var(--silver);
  font-size: 1.8rem;
  line-height: 1;
}

.trust-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: clamp(430px, 37vw, 560px);
  display: grid;
  place-items: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 8% 5%;
  border: 1px solid rgba(0, 107, 255, 0.32);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 22%, rgba(0, 107, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(216, 221, 229, 0.09), rgba(0,0,0,0.18));
  box-shadow: inset 0 0 50px rgba(0, 107, 255, 0.1), var(--shadow);
  transform: rotate(-2deg);
}

.shield-card {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 221, 229, 0.15);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(216, 221, 229, 0.11), rgba(255,255,255,0.015)),
    radial-gradient(circle, rgba(0, 107, 255, 0.1), transparent 60%);
  box-shadow: 0 34px 120px rgba(0,0,0,0.55);
  overflow: hidden;
}

.shield-card::before,
.shield-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(0, 107, 255, 0.28);
}

.shield-card::after {
  inset: 42px;
  border-color: rgba(216, 221, 229, 0.12);
}

.shield-card img {
  width: 78%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55));
  animation: floatLogo 4.4s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 20%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(0, 107, 255, 1), rgba(216,221,229,0.9), transparent);
  box-shadow: 0 0 26px rgba(0, 107, 255, 0.75);
  animation: scan 3.4s ease-in-out infinite;
}

.diagnostic-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  width: min(92%, 430px);
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(216, 221, 229, 0.16);
  border-radius: 24px;
  background: rgba(5, 7, 11, 0.82);
  box-shadow: 0 26px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(16px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.panel-top strong {
  color: #70ffbd;
}

.meter {
  height: 10px;
  margin: 14px 0 16px;
  border-radius: 99px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.meter span {
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--silver));
  box-shadow: 0 0 18px rgba(0, 107, 255, 0.65);
}

.diagnostic-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.diagnostic-panel li span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(0, 107, 255, 0.8);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

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

.service-card,
.testimonial,
.step,
.contact-form,
.contact-cards > *,
.cta-card,
.workshop-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
    rgba(8, 12, 18, 0.74);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}

.service-card {
  position: relative;
  min-height: 265px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 107, 255, 0.22), transparent 32%),
    linear-gradient(180deg, transparent, rgba(0, 107, 255, 0.04));
  opacity: 0;
  transition: 0.25s ease;
}

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

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

.icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 107, 255, 0.22), rgba(216, 221, 229, 0.08));
  border: 1px solid rgba(0, 107, 255, 0.28);
  color: var(--blue-3);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3,
.step h3,
.testimonial strong,
.contact-form h3,
.feature-list h3 {
  position: relative;
  margin-bottom: 12px;
  color: var(--silver);
  font-size: 1.12rem;
}

.service-card p,
.step p,
.testimonial p,
.feature-list p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.premium-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 107, 255, 0.1), transparent 30%, rgba(216, 221, 229, 0.05)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28), transparent);
}

.premium-band::before {
  content: "";
  position: absolute;
  inset: 8% auto 8% 0;
  width: 5px;
  background: linear-gradient(var(--blue), var(--silver), var(--blue));
  box-shadow: 0 0 34px rgba(0, 107, 255, 0.86);
}

.premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-list > div {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--silver));
  box-shadow: 0 0 22px rgba(0, 107, 255, 0.4);
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #020306;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.workshop-card {
  min-height: 440px;
  display: grid;
  align-content: center;
  gap: 32px;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.workshop-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 107, 255, 0.24), transparent 32%),
    repeating-linear-gradient(-35deg, transparent 0 15px, rgba(216,221,229,0.04) 16px 17px);
}

.car-line {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.car-line svg {
  width: 100%;
  overflow: visible;
}

.car-line path,
.car-line circle {
  fill: none;
  stroke: url(#unused);
}

.car-line svg path,
.car-line svg circle {
  stroke: var(--silver);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(0, 107, 255, 0.55));
}

.car-line svg path:first-child {
  stroke: var(--blue);
}

.specs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.specs div {
  padding: 18px;
  border: 1px solid rgba(216, 221, 229, 0.13);
  border-radius: 18px;
  background: rgba(3, 4, 7, 0.56);
}

.specs span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.specs strong {
  display: block;
  margin-top: 6px;
  color: var(--silver);
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 107, 255, 0.55), rgba(216,221,229,0.3), transparent);
}

.step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
}

.step span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  border: 1px solid rgba(0, 107, 255, 0.42);
  border-radius: 50%;
  background: var(--black-2);
  color: var(--blue-3);
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  box-shadow: 0 0 34px rgba(0, 107, 255, 0.24);
}

.testimonials {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 107, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(216, 221, 229, 0.08), transparent 22rem);
}

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

.testimonial {
  padding: 28px;
  border-radius: var(--radius);
}

.stars {
  margin-bottom: 18px;
  color: var(--blue-3);
  letter-spacing: 0.12em;
  text-shadow: 0 0 20px rgba(0, 107, 255, 0.42);
}

.testimonial strong {
  display: block;
  margin-top: 22px;
  margin-bottom: 4px;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.cta-section {
  padding: 80px 0;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 107, 255, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(16, 22, 34, 0.95), rgba(5, 7, 11, 0.92));
  overflow: hidden;
  position: relative;
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(216, 221, 229, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(0, 107, 255, 0.16);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.review-section {
  padding: 40px 0 80px;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 36px 40px;
  overflow: hidden;
  border: 1px solid rgba(66, 133, 244, 0.34);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(66, 133, 244, 0.2), transparent 26rem),
    linear-gradient(135deg, rgba(16, 22, 34, 0.96), rgba(5, 7, 11, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.review-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(66, 133, 244, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(66, 133, 244, 0.12);
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 221, 229, 0.2);
  border-radius: 24px;
  background: #fff;
  color: #4285f4;
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.review-stars {
  margin-bottom: 12px;
  color: #fbbc04;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-shadow: 0 0 20px rgba(251, 188, 4, 0.26);
}

.review-copy h2 {
  margin: 12px 0 10px;
  font-size: 2.55rem;
}

.review-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.contact {
  padding-top: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-cards > * {
  display: block;
  padding: 20px;
  border-radius: 20px;
  transition: 0.2s ease;
}

.contact-cards a:hover {
  transform: translateX(4px);
  border-color: rgba(0, 107, 255, 0.42);
}

.contact-cards span {
  display: block;
  color: var(--blue-3);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 6px;
  color: var(--silver);
  overflow-wrap: break-word;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
}

.contact-form h3 {
  margin-bottom: 2px;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 221, 229, 0.14);
  border-radius: 16px;
  outline: none;
  background: rgba(3, 4, 7, 0.62);
  color: var(--text);
  padding: 15px 16px;
  transition: 0.2s ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--silver-2) 50%),
    linear-gradient(135deg, var(--silver-2) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 53%,
    calc(100% - 14px) 53%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 107, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 107, 255, 0.12);
}

.contact-form small {
  color: var(--muted);
  line-height: 1.5;
}

.location-map {
  width: min(100% - 40px, var(--container));
  min-width: 0;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
    rgba(8, 12, 18, 0.74);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
}

.location-map-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.location-map-header h3 {
  margin: 10px 0 8px;
  color: var(--silver);
  font-family: "Oswald", sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.location-map-header p {
  margin-bottom: 0;
  color: var(--muted);
}

.location-map-header .btn {
  flex: 0 0 auto;
}

.location-map-frame {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(380px, 42vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(216, 221, 229, 0.14);
  border-radius: 20px;
  background: rgba(3, 4, 7, 0.62);
}

.location-map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: #020306;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.footer-brand span {
  overflow-wrap: break-word;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--muted);
}

.site-footer p {
  max-width: 360px;
  line-height: 1.7;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid strong {
  color: var(--silver);
  margin-bottom: 8px;
}

.footer-grid a {
  transition: 0.2s ease;
}

.footer-grid a:hover {
  color: var(--blue-3);
}

.footer-whatsapp {
  color: var(--blue-3) !important;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1bd741, #0b9f2c);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(27, 215, 65, 0.1);
  transition: 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 31px;
  fill: white;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes scan {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.12;
  }

  50% {
    transform: translateY(250px);
    opacity: 1;
  }
}

@media (max-width: 1280px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid {
    gap: 44px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .hero-copy p,
  .section-heading p,
  .premium-copy p,
  .contact-info p,
  .cta-card p {
    font-size: 1rem;
  }
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .premium-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-card {
    min-height: 520px;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  h1 {
    max-width: 880px;
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.9rem;
  }

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

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

  .timeline::before {
    display: none;
  }

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 96px;
  }

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

  .section {
    padding: 66px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-shell {
    height: 68px;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 26px;
  }

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

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 55;
    flex: 0 0 46px;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(3, 4, 7, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    color: var(--silver);
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 34px;
  }

  h1 {
    margin: 18px 0 18px;
    font-size: 2.38rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .hero-copy p,
  .section-heading p,
  .premium-copy p,
  .contact-info p,
  .cta-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions,
  .cta-card,
  .review-card {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-card .btn {
    width: 100%;
  }

  .trust-row,
  .cards-grid,
  .timeline,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .trust-row div {
    padding: 14px 10px;
    border-radius: 16px;
  }

  .trust-row strong {
    font-size: 1.45rem;
  }

  .trust-row span {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-card {
    min-height: 410px;
  }

  .hero-card::before {
    inset: 9% 2%;
    border-radius: 32px;
  }

  .shield-card {
    width: min(86vw, 390px);
  }

  .diagnostic-panel {
    width: min(100%, 390px);
    padding: 16px;
    border-radius: 20px;
  }

  .diagnostic-panel li {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .panel-top {
    font-size: 0.82rem;
  }

  .premium-grid,
  .contact-grid {
    gap: 28px;
  }

  .workshop-card {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .car-line {
    min-height: 160px;
  }

  .cta-card {
    padding: 28px;
  }

  .contact-form,
  .service-card,
  .testimonial,
  .step {
    padding: 22px;
  }

  .review-section {
    padding: 28px 0 66px;
  }

  .review-card {
    display: flex;
    gap: 22px;
    padding: 28px;
  }

  .review-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }

  .review-copy h2 {
    font-size: 2.15rem;
  }

  .review-button {
    width: 100%;
  }

  .location-map {
    width: min(100% - 28px, var(--container));
    margin-top: 28px;
    padding: 22px;
  }

  .location-map-header {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .location-map-header .btn {
    width: 100%;
  }

  .location-map-frame {
    height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

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

  .location-map {
    width: min(100% - 24px, var(--container));
    padding: 18px;
    border-radius: 22px;
  }

  .review-card {
    padding: 22px;
    border-radius: 24px;
  }

  .review-copy h2 {
    font-size: 1.9rem;
  }

  .location-map-frame {
    height: 300px;
    border-radius: 16px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.9rem;
  }

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

  .hero-card {
    min-height: 370px;
  }

  .shield-card {
    width: min(82vw, 360px);
  }
}

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

  .location-map {
    width: min(100% - 22px, var(--container));
    padding: 14px;
  }

  .location-map-header h3 {
    font-size: 1.55rem;
  }

  .location-map-frame {
    height: 260px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    left: 11px;
    right: 11px;
  }

  .eyebrow {
    align-items: flex-start;
    gap: 8px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .eyebrow::before {
    width: 24px;
    margin-top: 0.48rem;
  }

  h1 {
    font-size: 1.92rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  h1,
  h2 {
    overflow-wrap: break-word;
  }

  .hero-actions {
    gap: 10px;
  }

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

  .btn {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-card {
    min-height: 350px;
  }

  .diagnostic-panel {
    bottom: 0;
    width: min(100%, 340px);
    padding: 14px;
  }

  .diagnostic-panel ul {
    gap: 8px;
  }

  .specs {
    gap: 8px;
  }

  .specs div {
    padding: 12px 8px;
  }

  .specs span {
    font-size: 0.68rem;
  }

  .specs strong {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 14px;
  }
}

@media (max-width: 360px) {
  .trust-row,
  .specs {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.78rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-card {
    min-height: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
