:root {
  --bg: #111111;
  --bg-soft: #1a1a1c;
  --ink: #101114;
  --muted: #666b73;
  --line: #e5e7eb;
  --white: #ffffff;
  --offwhite: #f6f7f9;
  --red: #d71920;
  --red-dark: #a70f15;
  --steel: #87919f;
  --shadow: 0 20px 60px rgba(0, 0, 0, .22);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible {
  outline: 3px solid rgba(215, 25, 32, .55);
  outline-offset: 3px;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--red);
  color: var(--white);
  transform: translateY(-140%);
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}
.brand strong {
  display: block;
  font-size: .94rem;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: .75rem;
}
.brand-mark {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ef4444);
  border-radius: 7px;
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: 0;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
}
.main-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  padding: 18px;
  background: rgba(17, 17, 17, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.main-nav.is-open {
  display: grid;
  gap: 6px;
}
.main-nav a {
  color: var(--white);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius);
}
.main-nav a:hover { background: rgba(255, 255, 255, .08); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary,
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 28px rgba(215, 25, 32, .24);
}
.btn--primary:hover,
.btn-primary:hover { background: var(--red-dark); }
.btn--secondary,
.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}
.btn--outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}
.btn--small { min-height: 42px; padding: 10px 14px; }
.btn--large { min-height: 56px; padding-inline: 24px; }
.text-link {
  color: var(--red);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media { object-fit: cover; }
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 9, .92), rgba(8, 8, 9, .68) 48%, rgba(8, 8, 9, .28)),
    linear-gradient(0deg, rgba(8, 8, 9, .4), rgba(8, 8, 9, .04));
}
.hero__content {
  position: relative;
  padding: 86px 0 70px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.65rem);
  line-height: .95;
  letter-spacing: 0;
}
.hero__text {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  color: rgba(255, 255, 255, .82);
}
.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero__badges span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: .86rem;
}
.hero__location {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.trust-bar {
  background: var(--bg);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
.trust-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  font-weight: 900;
}
.trust-grid b {
  color: var(--red);
  font-size: 1.2rem;
}

.section {
  padding: 76px 0;
  background: var(--bg);
  color: var(--white);
  scroll-margin-top: 82px;
}
.section--light {
  color: var(--ink);
  background: var(--offwhite);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2,
.split h2,
.hybrid h2,
.reviews h2,
.location h2,
.final-cta h2,
.cta-band h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.section-heading p:not(.eyebrow),
.split p,
.hybrid p,
.reviews p,
.location p,
.final-cta p,
.cta-band p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 720px;
}
.section-heading--dark p:not(.eyebrow) { color: rgba(255, 255, 255, .72); }

.services-grid,
.why-grid {
  display: grid;
  gap: 14px;
}
.service-card,
.why-card,
.process-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
}
.service-card h3,
.why-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.18;
  text-transform: uppercase;
}
.service-card p,
.why-card p,
.process-card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.split__inner,
.hybrid__inner,
.location__inner,
.reviews__inner {
  display: grid;
  gap: 28px;
}
.split__image img,
.hybrid__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.split__content,
.hybrid__content {
  align-self: center;
}
.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
}
.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
}

.hybrid {
  position: relative;
  overflow: hidden;
  background: #0d0e10;
}
.hybrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 25, 32, .22), transparent 42%);
  pointer-events: none;
}
.hybrid__inner { position: relative; }
.hybrid p,
.split p,
.final-cta p,
.cta-band p { color: rgba(255, 255, 255, .76); }
.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0 28px;
}
.mini-cards span {
  padding: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 12px;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-card:hover img { transform: scale(1.035); }

.process {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), transparent),
    var(--bg);
}
.process-grid {
  display: grid;
  gap: 14px;
}
.process-card {
  color: var(--white);
  background: var(--bg-soft);
  border-color: rgba(255, 255, 255, .1);
  box-shadow: none;
}
.process-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 950;
}
.process-card p { color: rgba(255, 255, 255, .68); }
.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.reviews {
  color: var(--white);
  background: linear-gradient(135deg, #191a1d, #111111);
}
.reviews__inner {
  align-items: center;
}
.reviews__box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}
.reviews__box p { color: rgba(255, 255, 255, .78); margin-bottom: 20px; }

.cta-band,
.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--bg);
}
.cta-band {
  min-height: 430px;
  display: grid;
  align-items: center;
}
.cta-band img,
.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.cta-band::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 9, .92), rgba(8, 8, 9, .54));
}
.cta-band__content,
.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.location .info-list {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.info-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-list dt {
  font-weight: 950;
  color: var(--ink);
}
.info-list dd {
  margin: 3px 0 0;
  color: var(--muted);
}
.map-card {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #17181b;
  box-shadow: var(--shadow);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}
.map-placeholder {
  min-height: 360px;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 28px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, .18), transparent),
    #17181b;
}
.map-placeholder strong { font-size: 1.3rem; }
.map-placeholder span { color: rgba(255, 255, 255, .68); }

.final-cta {
  min-height: 500px;
  display: grid;
  align-items: center;
}
.final-cta h2 {
  max-width: 900px;
}

.site-footer {
  padding: 48px 0 92px;
  color: rgba(255, 255, 255, .78);
  background: #09090a;
}
.footer-grid {
  display: grid;
  gap: 28px;
}
.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin: 0 0 12px;
}
.site-footer p { margin: 6px 0; }
.site-footer nav {
  display: grid;
  gap: 8px;
}
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: var(--white);
  background: #18a957;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}
.floating-whatsapp img {
  width: 24px;
  height: 24px;
}
.floating-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0c0d0e;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-action-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: .78rem;
  font-weight: 950;
  border-right: 1px solid rgba(255, 255, 255, .1);
}
.mobile-action-bar a:nth-child(2) { background: #18a957; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: 54px 0;
  background: var(--offwhite);
}
.legal-page .container {
  max-width: 800px;
}
.legal-page p {
  color: var(--muted);
}

@media (min-width: 680px) {
  .services-grid,
  .why-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-card--1 img { aspect-ratio: 4 / 4.9; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .main-nav a {
    font-size: .78rem;
    padding: 10px 7px;
  }
  .split__inner,
  .hybrid__inner,
  .location__inner,
  .reviews__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
  }
  .gallery-card--1,
  .gallery-card--2 { grid-row: span 2; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .floating-whatsapp { display: inline-flex; }
  .mobile-action-bar { display: none; }
  .site-footer { padding-bottom: 48px; }
}

@media (min-width: 1180px) {
  .main-nav a { padding-inline: 10px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand strong { font-size: .82rem; }
  .brand small { display: none; }
  .hero { min-height: 650px; }
  .hero__actions .btn,
  .button-row .btn { width: 100%; }
  .mini-cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}

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

/* V2 premium automotive direction */
body {
  background: #07080a;
  padding-bottom: 58px;
}

.site-header {
  background: rgba(8, 9, 11, .9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
}

.brand-mark {
  background: linear-gradient(135deg, #f21f2b, #8f0d13);
  box-shadow: 0 12px 28px rgba(215, 25, 32, .28);
}

.btn--primary,
.btn-primary {
  background: linear-gradient(135deg, #f21f2b, #b90f17);
  box-shadow: 0 18px 38px rgba(215, 25, 32, .32);
}

.hero {
  min-height: 760px;
}

.hero__overlay {
  background:
    radial-gradient(circle at 72% 64%, rgba(215, 25, 32, .22), transparent 30%),
    linear-gradient(90deg, rgba(5, 6, 8, .98), rgba(5, 6, 8, .74) 43%, rgba(5, 6, 8, .2)),
    linear-gradient(0deg, rgba(5, 6, 8, .86), rgba(5, 6, 8, .06));
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 7vw, 6.15rem);
  text-shadow: 0 12px 42px rgba(0, 0, 0, .38);
}

.hero__text {
  color: rgba(255, 255, 255, .88);
}

.hero__proof {
  display: grid;
  gap: 1px;
  max-width: 780px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.hero__proof span {
  display: grid;
  gap: 2px;
  padding: 14px;
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.hero__proof strong {
  color: var(--white);
  font-size: .78rem;
  text-transform: uppercase;
}

.trust-bar {
  background: #08090b;
}

.trust-grid span {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
}

.section--light {
  background:
    linear-gradient(180deg, rgba(10, 11, 13, .05), transparent 300px),
    #f3f4f6;
}

.services-grid {
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 45px rgba(11, 12, 15, .09);
}

.service-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.06);
}

.service-card__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  margin: 0;
  background: linear-gradient(135deg, #f21f2b, #8f0d13);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
}

.service-card__body {
  padding: 22px;
}

.service-card .text-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.split {
  background:
    radial-gradient(circle at 18% 34%, rgba(215, 25, 32, .18), transparent 28%),
    #08090b;
}

.split__image,
.hybrid__image {
  position: relative;
  z-index: 1;
}

.split__image img,
.hybrid__image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.split__image::after,
.hybrid__image::after {
  content: "";
  position: absolute;
  inset: auto 22px -16px 22px;
  height: 42px;
  background: var(--red);
  filter: blur(30px);
  opacity: .28;
  z-index: -1;
}

.independent-note {
  margin: 0 0 22px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .06);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hybrid {
  background:
    radial-gradient(circle at 72% 24%, rgba(215, 25, 32, .2), transparent 30%),
    #07080a;
}

.mini-cards span {
  background: rgba(255, 255, 255, .1);
}

.gallery-grid {
  gap: 14px;
}

.gallery-card {
  background: #07080a;
}

.gallery-card img {
  aspect-ratio: 4 / 3.15;
  filter: saturate(1.02) contrast(1.03);
}

.gallery-card::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.why-card {
  background:
    linear-gradient(180deg, rgba(215, 25, 32, .045), transparent),
    #fff;
}

.reviews {
  background:
    radial-gradient(circle at 22% 18%, rgba(215, 25, 32, .16), transparent 24%),
    linear-gradient(135deg, #18191d, #08090b);
}

.cta-band img,
.final-cta img {
  opacity: .62;
}

.cta-band::after,
.final-cta::after {
  background:
    radial-gradient(circle at 75% 65%, rgba(215, 25, 32, .18), transparent 28%),
    linear-gradient(90deg, rgba(5, 6, 8, .94), rgba(5, 6, 8, .58));
}

.final-cta {
  min-height: 560px;
}

a[aria-disabled="true"] {
  cursor: not-allowed;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 680px) {
  body { padding-bottom: 0; }
  .hero__proof { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .service-card:nth-child(10),
  .service-card:nth-child(11) {
    grid-column: span 1;
  }
  .gallery-card--1 img,
  .gallery-card--2 img {
    aspect-ratio: 4 / 5.35;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 760px;
  }
  .hero__content {
    padding-top: 70px;
  }
  .hero__proof {
    margin-top: 22px;
  }
  .hero__proof span {
    display: block;
    padding: 9px 12px;
    font-size: .82rem;
    line-height: 1.35;
  }
  .hero__proof strong {
    display: inline;
    margin-right: 6px;
  }
  .hero__badges {
    margin-top: 18px;
  }
}
