:root {
  --purple: #602d72;
  --black: #050507;
  --ink: #0b0c10;
  --gray-900: #11151c;
  --gray-800: #202633;
  --gray-700: #343b47;
  --gray-200: #e7e9ee;
  --gray-100: #f5f6f8;
  --muted: #747c88;
  --white: #ffffff;
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 8px 14px;
  color: var(--white);
  background: rgb(17 21 28 / 0.96);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-action {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
  overflow: visible;
}

.site-nav a {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.05);
  color: rgb(255 255 255 / 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-full {
  display: none;
}

.nav-short {
  display: inline;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: start;
  overflow: hidden;
  color: var(--white);
  width: 100vw;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 22% 28%, rgb(96 45 114 / 0.42), transparent 34%),
    linear-gradient(90deg, rgb(5 5 7 / 0.97), rgb(5 5 7 / 0.78) 48%, rgb(5 5 7 / 0.4)),
    linear-gradient(0deg, rgb(5 5 7 / 0.94), rgb(5 5 7 / 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100vw - 32px), 440px);
  margin: 0 auto;
  padding-top: 118px;
}

.mobile-section-nav {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0 0 24px;
}

.mobile-section-nav a {
  min-width: 0;
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgb(255 255 255 / 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.button,
.header-action {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(3.05rem, 13.5vw, 4.25rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 11vw, 3.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-copy {
  max-width: 34ch;
  margin-bottom: 24px;
  color: rgb(255 255 255 / 0.78);
  font-size: 0.98rem;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  max-width: 100%;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 34px rgb(96 45 114 / 0.32);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--purple);
  filter: brightness(1.08);
}

.button.secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.05);
  backdrop-filter: blur(10px);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgb(255 255 255 / 0.45);
}

.hero-checks {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.9rem;
  list-style: none;
}

.hero-checks li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgb(96 45 114 / 0.22);
}

.trust-strip {
  display: grid;
  gap: 12px;
  padding: 34px 16px 54px;
  background: var(--black);
}

.trust-strip div {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, rgb(96 45 114 / 0.28), rgb(32 38 51 / 0.78));
  box-shadow: 0 18px 50px rgb(0 0 0 / 0.24);
}

.trust-strip strong,
.trust-strip span,
.site-footer strong,
.site-footer span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.trust-strip span {
  color: rgb(255 255 255 / 0.62);
}

.section,
.split-section,
.location-section,
.contact-band {
  scroll-margin-top: 72px;
}

.section {
  padding: 58px 16px 66px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgb(96 45 114 / 0.28), transparent 34%),
    linear-gradient(180deg, var(--black), var(--gray-900));
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  min-height: 205px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gray-800), #0d1118);
  box-shadow: 0 18px 42px rgb(0 0 0 / 0.2);
}

.service-card:hover {
  border-color: rgb(255 255 255 / 0.22);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.service-card:nth-child(2) {
  background: linear-gradient(145deg, rgb(96 45 114 / 0.42), #10131a);
}

.service-card:nth-child(3) {
  background: linear-gradient(145deg, var(--gray-800), #111111);
}

.card-number {
  display: block;
  margin: 18px 22px 8px;
  color: rgb(255 255 255 / 0.42);
  font-weight: 900;
}

.service-card h3,
.service-card p {
  padding-inline: 22px;
}

.service-card p {
  padding-bottom: 24px;
}

.service-card p,
.contact-band p {
  color: rgb(255 255 255 / 0.68);
}

.split-section {
  display: grid;
  gap: 26px;
  padding: 58px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  color: var(--ink);
}

.split-section .eyebrow,
.location-section .eyebrow {
  color: var(--purple);
}

.repair-list {
  display: grid;
  gap: 12px;
}

.repair-list p {
  margin: 0;
  padding: 16px 16px 16px 18px;
  border-left: 3px solid var(--purple);
  color: var(--muted);
  background: var(--gray-100);
}

.location-section {
  display: grid;
  gap: 22px;
  padding: 48px 16px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.location-section address {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact-band {
  display: grid;
  gap: 24px;
  margin: 16px;
  padding: 32px 22px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--gray-900) 62%, var(--black));
}

.contact-band h2 {
  margin-bottom: 14px;
}

.contact-band p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 48px 16px 36px;
  color: rgb(255 255 255 / 0.55);
  font-size: 0.88rem;
  background: linear-gradient(160deg, rgb(96 45 114 / 0.35) 0%, var(--gray-900) 35%, var(--black) 100%);
  border-top: 1px solid rgb(96 45 114 / 0.3);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.site-footer span {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 4px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.footer-links a {
  color: rgb(255 255 255 / 0.52);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  border-top: 1px solid rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.28);
  font-size: 0.78rem;
}

/* Floating WhatsApp button */
.fab {
  position: fixed;
  z-index: 30;
  bottom: 22px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  box-shadow:
    0 4px 18px rgb(96 45 114 / 0.55),
    0 1px 4px rgb(0 0 0 / 0.3);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 8px 28px rgb(96 45 114 / 0.7),
    0 2px 6px rgb(0 0 0 / 0.3);
}

.fab svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 700px) {
  .site-header {
    min-height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    padding: 12px clamp(24px, 5vw, 64px);
  }

  .brand {
    width: 62px;
    height: 62px;
  }

  .site-nav,
  .header-action {
    display: flex;
    align-items: center;
  }

  .site-nav {
    gap: clamp(14px, 2vw, 28px);
    margin-left: 0;
    overflow: visible;
    font-size: 0.92rem;
    color: rgb(255 255 255 / 0.72);
  }

  .site-nav a {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgb(255 255 255 / 0.72);
    font-size: 0.92rem;
  }

  .nav-full {
    display: inline;
  }

  .nav-short {
    display: none;
  }

  .header-action {
    justify-self: end;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 8px;
    background: var(--purple);
    font-size: 0.92rem;
    text-transform: uppercase;
  }

  .hero {
    min-height: 96vh;
    align-items: center;
  }

  .hero-content {
    width: min(720px, calc(100% - 48px));
    margin-left: clamp(24px, 9vw, 150px);
    padding-top: 190px;
    padding-bottom: 100px;
  }

  h1 {
    font-size: clamp(4.5rem, 8vw, 7rem);
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 clamp(24px, 9vw, 150px) 58px;
  }

  .trust-strip div {
    margin-top: -34px;
    padding: 24px;
  }

  .section,
  .split-section,
  .location-section {
    padding-left: clamp(24px, 5vw, 64px);
    padding-right: clamp(24px, 5vw, 64px);
  }

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

  .split-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: clamp(30px, 7vw, 88px);
  }

  .location-section {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .location-section address {
    text-align: right;
  }

  .contact-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin: clamp(18px, 5vw, 64px);
    padding: clamp(34px, 6vw, 64px);
  }

  .site-footer {
    padding: 56px clamp(24px, 5vw, 64px) 44px;
  }

  .footer-brand {
    gap: 18px;
  }

  .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .footer-links {
    gap: 8px 28px;
  }

  .footer-bottom {
    flex-direction: row;
    gap: 24px;
  }

  .fab {
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
  }

  .fab svg {
    width: 30px;
    height: 30px;
  }
}
