:root {
  --bg: #07070a;
  --panel: rgba(18, 18, 24, 0.78);
  --panel-solid: #111117;
  --red: #ff173d;
  --red-dark: #8f0019;
  --red-soft: rgba(255, 23, 61, 0.22);
  --white: #ffffff;
  --muted: #b9bbc8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(255, 23, 61, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 23, 61, 0.28), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(135deg, #050508 0%, #111116 46%, #07070a 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: clamp(8.5rem, 13vw, 12rem);
  height: 3.4rem;
  overflow: visible;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--red), #3b000b);
  box-shadow: 0 0 32px rgba(255, 23, 61, 0.5);
  font-weight: 900;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 0 18px rgba(255, 23, 61, 0.5));
  transform: scale(1.34);
  transform-origin: left center;
  animation: headerLogoGlow 3.8s ease-in-out infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  padding: 0.85rem 1.15rem;
  background: var(--red);
  box-shadow: 0 0 28px rgba(255, 23, 61, 0.45);
}

.whatsapp-cta {
  background: linear-gradient(135deg, #25d366, #0d8f45);
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.34);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 7.5rem clamp(1rem, 4vw, 4rem) 3rem;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 23, 61, 0.09), transparent 45%),
    radial-gradient(circle at 55% 45%, rgba(255, 23, 61, 0.2), transparent 30rem);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: clamp(31rem, 64vh, 45rem);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  opacity: 0;
  pointer-events: none;
  transform: translateX(32px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff8a9d;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  width: 2.8rem;
  height: 2px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 16px var(--red);
}

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

h1 {
  max-width: 46rem;
  margin-bottom: 1.35rem;
  font-size: clamp(2.55rem, 5.8vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-shadow: 0 0 42px rgba(255, 23, 61, 0.2);
}

.neon-title {
  color: #fff;
  animation: neonFlicker 4.6s infinite;
}

.neon-title span {
  display: block;
  color: #ff2448;
  text-shadow:
    0 0 8px rgba(255, 23, 61, 0.95),
    0 0 22px rgba(255, 23, 61, 0.8),
    0 0 54px rgba(255, 23, 61, 0.55);
}

h2 {
  max-width: 55rem;
  font-size: clamp(1.85rem, 4.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.slide-content p {
  max-width: 36rem;
  font-size: 1.08rem;
}

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

.btn {
  min-height: 3.35rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn.primary {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #9f001c);
  box-shadow: 0 18px 42px rgba(255, 23, 61, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 2rem;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 23, 61, 0.2), transparent 45%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow), inset 0 0 60px rgba(255, 255, 255, 0.04);
}

.speed-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(100deg, transparent 0 2.2rem, rgba(255, 255, 255, 0.08) 2.3rem 2.4rem),
    linear-gradient(90deg, transparent, rgba(255, 23, 61, 0.18), transparent);
  animation: speed 1.35s linear infinite;
}

.car-stage {
  position: absolute;
  inset: auto 4% 14% 4%;
  height: 15rem;
  filter: drop-shadow(0 0 45px rgba(255, 23, 61, 0.48));
}

.car-silhouette {
  position: absolute;
  left: 50%;
  bottom: 3.2rem;
  width: min(36rem, 100%);
  height: 8rem;
  border-radius: 60% 42% 22% 24%;
  background:
    linear-gradient(150deg, #ff3b59 0 24%, #b40020 43%, #390009 72%, #120005),
    linear-gradient(#fff, #fff);
  transform: translateX(-50%);
}

.car-silhouette::before {
  position: absolute;
  left: 21%;
  top: -2.65rem;
  width: 44%;
  height: 4.4rem;
  border-radius: 6rem 4rem 0.8rem 0.8rem;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(10, 10, 16, 0.92));
  clip-path: polygon(4% 100%, 34% 5%, 78% 12%, 100% 100%);
}

.car-silhouette::after {
  position: absolute;
  left: -8%;
  bottom: 1.4rem;
  width: 118%;
  height: 2.2rem;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse, rgba(255, 23, 61, 0.58), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

.sports-car {
  border-radius: 68% 38% 24% 28%;
  animation: carRush 2.4s ease-in-out infinite;
}

.windshield {
  position: absolute;
  left: 34%;
  top: -1.55rem;
  width: 22%;
  height: 2.7rem;
  border-radius: 2rem 2.4rem 0.35rem 0.35rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(0, 0, 0, 0.65));
  transform: skewX(-18deg);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.28);
}

.rear-wing {
  position: absolute;
  left: 4%;
  top: 1.25rem;
  width: 6.5rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #ff2448;
  box-shadow: 0 0 24px rgba(255, 23, 61, 0.9);
  transform: rotate(-10deg);
}

.tail-flame {
  position: absolute;
  left: -5.5rem;
  top: 4.9rem;
  width: 8rem;
  height: 1.25rem;
  border-radius: 100% 0 0 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.96), #ff173d);
  filter: blur(2px);
  animation: flame 0.24s ease-in-out infinite alternate;
}

.car-light {
  position: absolute;
  top: 4.4rem;
  width: 4rem;
  height: 0.8rem;
  border-radius: 999px;
  background: #fff4b8;
  box-shadow: 0 0 26px #fff4b8, 0 0 70px rgba(255, 23, 61, 0.9);
}

.car-light.left {
  left: 2rem;
  background: #ff3355;
  box-shadow: 0 0 26px #ff3355, -3.5rem 0 4rem rgba(255, 23, 61, 0.55);
}

.car-light.right {
  right: 1.25rem;
  background: #fff9d0;
  box-shadow: 0 0 26px #fff9d0, 5rem 0 5.2rem rgba(255, 255, 255, 0.42);
}

.wheel {
  position: absolute;
  bottom: -1.55rem;
  width: 5.1rem;
  height: 5.1rem;
  border: 0.72rem solid #07070a;
  border-radius: 50%;
  background: radial-gradient(circle, #eeeeee 0 12%, #2a2a31 13% 48%, #07070a 49%);
  box-shadow: 0 0 0 0.35rem rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 23, 61, 0.35);
  animation: wheel 1.3s linear infinite;
}

.wheel-left {
  left: 17%;
}

.wheel-right {
  right: 14%;
}

.lens-visual,
.garage-visual {
  display: grid;
  place-items: center;
}

.rotating-rings {
  width: min(24rem, 70vw);
  height: min(24rem, 70vw);
  border: 2px dashed rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 7%, rgba(255, 23, 61, 0.45) 8% 21%, transparent 22%);
  box-shadow: 0 0 80px rgba(255, 23, 61, 0.45);
  animation: spin 12s linear infinite;
}

.headlight-beam {
  position: absolute;
  right: -14%;
  width: 70%;
  height: 38%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 23, 61, 0.1), transparent);
  filter: blur(8px);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 60%);
  animation: pulse 2s ease-in-out infinite;
}

.polish-orb {
  position: absolute;
  left: 12%;
  bottom: 15%;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, white, #ff4965 24%, #260008 68%);
  box-shadow: 0 0 55px rgba(255, 23, 61, 0.7);
  animation: float 3.2s ease-in-out infinite;
}

.lift-glow {
  position: absolute;
  bottom: 10%;
  width: 72%;
  height: 1rem;
  border-radius: 50%;
  background: var(--red);
  filter: blur(18px);
  animation: pulse 1.8s ease-in-out infinite;
}

.garage-car {
  width: min(30rem, 78vw);
  height: 10rem;
  border-radius: 48% 48% 20% 20%;
  background: linear-gradient(135deg, #15151b, #ff173d 42%, #32000a);
  box-shadow: 0 0 55px rgba(255, 23, 61, 0.45);
  animation: float 4s ease-in-out infinite;
}

.garage-car::before {
  display: block;
  width: 52%;
  height: 4.3rem;
  margin: -2rem auto 0;
  border-radius: 4rem 4rem 1rem 1rem;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), #09090d);
}

.tool-spark {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px #fff, 0 0 52px var(--red);
  animation: spark 1.4s ease-in-out infinite;
}

.spark-one {
  left: 18%;
  top: 28%;
}

.spark-two {
  right: 22%;
  top: 38%;
  animation-delay: 0.35s;
}

.spark-three {
  left: 54%;
  bottom: 24%;
  animation-delay: 0.7s;
}

.slider-controls {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 0.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.58);
  backdrop-filter: blur(14px);
}

.slider-btn {
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.45rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 0.55rem;
}

.slider-dots button {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.slider-dots button.active {
  width: 2.2rem;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.hero-stats {
  position: relative;
  right: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(8rem, 1fr));
  gap: 1rem;
  width: min(46rem, calc(100% - 2rem));
  align-self: flex-end;
  margin-top: -3.75rem;
}

.hero-stats div,
.service-card,
.work-card,
.timeline-item,
.cta-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-stats div {
  padding: 1rem;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
}

.hero-stats div::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: lightSweep 2.6s linear infinite;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #fff;
  font-size: 1.55rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section,
.work-showcase,
.cta-section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.work-showcase .section-heading h2 {
  width: fit-content;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 12px rgba(255, 23, 61, 0.95),
    0 0 34px rgba(255, 23, 61, 0.65);
}

.service-grid,
.work-grid,
.gallery-grid,
.timeline {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.work-card,
.timeline-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.35rem;
  transform-style: preserve-3d;
}

.service-card::before,
.work-card::before,
.timeline-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 23, 61, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.service-card:hover::before,
.work-card:hover::before,
.timeline-item:hover::before {
  transform: translateX(100%);
}

.service-card:hover,
.work-card:hover,
.timeline-item:hover {
  border-color: rgba(255, 23, 61, 0.45);
  box-shadow: 0 30px 80px rgba(255, 23, 61, 0.18);
}

.card-icon {
  display: inline-grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: rgba(255, 23, 61, 0.15);
  color: #ff8a9d;
  font-weight: 900;
  box-shadow: inset 0 0 20px rgba(255, 23, 61, 0.12), 0 0 28px rgba(255, 23, 61, 0.18);
}

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

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

.gallery-section {
  position: relative;
}

.gallery-page {
  min-height: 100vh;
  padding-top: 8.5rem;
}

.gallery-page-title {
  max-width: 64rem;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255, 23, 61, 0.22);
}

.gallery-page .section-heading p {
  max-width: 44rem;
}

.gallery-section::before {
  position: absolute;
  inset: 10% 0 auto;
  z-index: -1;
  height: 26rem;
  content: "";
  background: radial-gradient(circle, rgba(255, 23, 61, 0.18), transparent 64%);
  pointer-events: none;
}

.work-card.large {
  grid-row: span 2;
  min-height: 34rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 23, 61, 0.26), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.video-work-card {
  padding: 1rem;
}

.video-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.video-compare figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  background: #09090d;
  box-shadow: inset 0 0 30px rgba(255, 23, 61, 0.08);
}

.video-compare figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 38%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.video-compare span {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 8, 0.68);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.video-compare video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.video-compare img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 22rem;
  margin-bottom: 1.4rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #09090d;
}

.car-panel {
  display: grid;
  place-items: end center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.car-panel::before {
  width: 86%;
  height: 8rem;
  margin-bottom: 3rem;
  border-radius: 50% 50% 20% 20%;
  content: "";
}

.before {
  background: linear-gradient(135deg, rgba(80, 80, 88, 0.28), rgba(0, 0, 0, 0.45));
}

.before::before {
  background: linear-gradient(135deg, #3d3d45, #16161b);
  box-shadow: inset 2rem 0 0 rgba(0, 0, 0, 0.35);
}

.after {
  background: linear-gradient(135deg, rgba(255, 23, 61, 0.3), rgba(0, 0, 0, 0.2));
}

.after::before {
  background: linear-gradient(135deg, #ff3c59, #56000f);
  box-shadow: 0 0 44px rgba(255, 23, 61, 0.62);
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 18px #fff, 0 0 42px var(--red);
  animation: scan 3.2s ease-in-out infinite;
}

.mini-scene {
  position: relative;
  min-height: 12rem;
  margin-bottom: 1.2rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 45% 48%, rgba(255, 255, 255, 0.72), transparent 8%),
    radial-gradient(circle at center, rgba(255, 23, 61, 0.42), transparent 35%),
    #09090d;
  overflow: hidden;
}

.mini-scene::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: reflection 3.4s ease-in-out infinite;
}

.mini-scene.headlight {
  box-shadow: inset -7rem 0 7rem rgba(255, 255, 255, 0.18);
}

.mini-scene.detailing {
  background:
    linear-gradient(130deg, transparent 0 42%, rgba(255, 255, 255, 0.55) 43% 45%, transparent 46%),
    radial-gradient(circle at 30% 70%, rgba(255, 23, 61, 0.55), transparent 30%),
    #09090d;
}

.mini-scene.paint {
  background:
    repeating-linear-gradient(115deg, rgba(255, 23, 61, 0.16) 0 1rem, transparent 1rem 2rem),
    linear-gradient(135deg, #ff173d, #07070a 72%);
}

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

.timeline::before {
  position: absolute;
  top: 3.2rem;
  left: 6%;
  right: 6%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 23, 61, 0.75), transparent);
  box-shadow: 0 0 18px rgba(255, 23, 61, 0.75);
}

.timeline-item {
  min-height: 16rem;
  padding-top: 2rem;
}

.timeline-item span {
  display: block;
  margin-bottom: 3rem;
  color: var(--red);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.85;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: center;
  border-radius: 2rem;
  padding: clamp(1.4rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 23, 61, 0.28), rgba(255, 255, 255, 0.05)),
    rgba(12, 12, 18, 0.78);
  box-shadow: 0 0 0 1px rgba(255, 23, 61, 0.08), 0 38px 120px rgba(255, 23, 61, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 23, 61, 0.28), transparent 60%);
  animation: pulse 2.4s ease-in-out infinite;
}

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

.contact-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.contact-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-panel a {
  font-weight: 900;
}

.contact-panel a:hover {
  border-color: rgba(255, 23, 61, 0.75);
  box-shadow: 0 0 32px rgba(255, 23, 61, 0.22);
  transform: translateX(6px);
}

.site-footer {
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

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

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

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

.hero-fullscreen {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 8rem;
  text-align: center;
  overflow: hidden;
}

.hero-fullscreen::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 23, 61, 0.32), transparent 28rem),
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 23, 61, 0.12), transparent 55%);
  clip-path: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(76rem, 100%);
}

.hero-copy .eyebrow {
  justify-content: center;
  margin-bottom: 1.15rem;
}

.hero-copy h1 {
  position: relative;
  max-width: 72rem;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.88;
}

.slogan-title {
  min-height: 2.05em;
}

.neon-title .slogan-line {
  display: block;
  color: #fff;
  transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}

.neon-title .slogan-accent {
  color: #ff2448;
  text-shadow:
    0 0 8px rgba(255, 23, 61, 0.95),
    0 0 22px rgba(255, 23, 61, 0.8),
    0 0 54px rgba(255, 23, 61, 0.55);
}

.slogan-smoke {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(46rem, 92vw);
  height: 9rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.38), transparent 18%),
    radial-gradient(circle at 38% 40%, rgba(255, 23, 61, 0.28), transparent 22%),
    radial-gradient(circle at 62% 55%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.35);
  pointer-events: none;
}

.slogan-title.is-changing .slogan-line {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(52px) skewX(-8deg);
}

.slogan-title.is-changing .slogan-smoke {
  animation: smokePass 0.72s ease-out;
}

.hero-lead {
  max-width: 54rem;
  margin-bottom: 0.9rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

.hero-signature {
  max-width: 48rem;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.9rem;
}

.hero-tags span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 22px rgba(255, 23, 61, 0.08);
}

.hero-copy .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.whatsapp-btn {
  border-color: rgba(37, 211, 102, 0.75);
  background: linear-gradient(135deg, #25d366, #0d8f45);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.24);
}

.hero-fullscreen .hero-stats {
  align-self: center;
  width: min(48rem, 100%);
  margin-top: 3rem;
}

@keyframes smokePass {
  0% {
    opacity: 0;
    transform: translate(-74%, -50%) scaleX(0.2);
  }

  35% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: translate(24%, -50%) scaleX(1.18);
  }
}

@keyframes speed {
  to {
    background-position: 18rem 0, 0 0;
  }
}

@keyframes neonFlicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
    filter: brightness(1.18);
  }

  20%,
  24%,
  55% {
    opacity: 0.78;
    filter: brightness(0.86);
  }
}

@keyframes carRush {
  50% {
    transform: translateX(calc(-50% + 10px)) translateY(-4px);
  }
}

@keyframes flame {
  to {
    opacity: 0.55;
    transform: scaleX(0.72);
  }
}

@keyframes wheel {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(1.04);
  }
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes spark {
  50% {
    opacity: 0.25;
    transform: translate(18px, -18px) scale(1.8);
  }
}

@keyframes scan {
  50% {
    left: 58%;
  }
}

@keyframes reflection {
  50%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes lightSweep {
  to {
    transform: translateX(100%);
  }
}

@keyframes headerLogoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 23, 61, 0.35));
  }

  45% {
    filter:
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.55))
      drop-shadow(0 0 32px rgba(255, 23, 61, 0.5));
  }

  52% {
    filter: drop-shadow(0 0 6px rgba(255, 23, 61, 0.22));
  }
}

@media (max-width: 1100px) {
  .hero-slide,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-fullscreen {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-slider {
    min-height: 78vh;
  }

  .hero-visual {
    min-height: 24rem;
  }

  .hero-stats {
    width: 100%;
    align-self: stretch;
    margin-top: 1.2rem;
  }

  .hero-fullscreen .hero-stats {
    align-self: center;
    width: min(48rem, 100%);
    margin-top: 2.2rem;
  }

  .slider-controls {
    margin-top: 1rem;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-height: 2.45rem;
    padding: 0 0.78rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .brand {
    gap: 0;
    width: 7.6rem;
    height: 2.7rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.8rem;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
    transform: scale(1.28);
  }

  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-right: 1rem;
    padding-bottom: 2.2rem;
    padding-left: 1rem;
  }

  .hero-fullscreen {
    min-height: 100svh;
    justify-content: center;
    padding-top: 6rem;
  }

  .hero-copy {
    justify-items: start;
    text-align: left;
  }

  .hero-copy .eyebrow {
    justify-content: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-slide.active {
    display: grid;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 11vw, 3.35rem);
    letter-spacing: -0.05em;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4.35rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(1.7rem, 10vw, 2.75rem);
  }

  .slide-content p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-signature {
    font-size: 0.95rem;
  }

  .hero-tags {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .hero-tags span {
    padding: 0.58rem 0.78rem;
    font-size: 0.74rem;
  }

  .hero-slider {
    min-height: 0;
  }

  .hero-visual {
    min-height: 16.5rem;
    border-radius: 1.35rem;
  }

  .car-stage {
    inset: auto 6% 10% 6%;
    height: 11rem;
  }

  .car-silhouette {
    width: min(24rem, 94vw);
    height: 5.8rem;
  }

  .wheel {
    width: 3.6rem;
    height: 3.6rem;
    border-width: 0.5rem;
  }

  .rear-wing {
    width: 4.2rem;
  }

  .tail-flame {
    left: -3.2rem;
    width: 4.8rem;
  }

  .hero-actions {
    gap: 0.7rem;
    margin-top: 1.35rem;
  }

  .hero-copy .hero-actions {
    justify-content: flex-start;
    margin-top: 0;
  }

  .btn {
    min-height: 3rem;
    padding: 0 1.05rem;
    font-size: 0.88rem;
  }

  .slider-controls {
    justify-content: center;
    width: 100%;
    margin-top: 1.25rem;
  }

  .hero-stats,
  .service-grid,
  .work-grid,
  .gallery-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .video-compare {
    grid-template-columns: 1fr;
  }

  .video-compare video {
    aspect-ratio: 1 / 1;
  }

  .video-compare img {
    aspect-ratio: 1 / 1;
  }

  .hero-stats {
    width: 100%;
    margin-top: 1rem;
  }

  .hero-fullscreen .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .section,
  .work-showcase,
  .cta-section {
    padding: 3.5rem 1rem;
  }

  .gallery-page {
    padding-top: 6.5rem;
  }

  .gallery-page-title {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }

  .work-card.large {
    min-height: auto;
  }

  .before-after {
    min-height: 17rem;
  }

  .timeline::before {
    display: none;
  }

  .cta-card {
    grid-template-columns: 1fr;
    border-radius: 1.35rem;
  }
}

@media (max-width: 420px) {
  .header-cta {
    padding: 0 0.65rem;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 5.6rem;
  }
}

@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;
  }
}
