:root {
  --black: #050607;
  --satin: #0d0d0d;
  --charcoal: #15171b;
  --charcoal-2: #1d2027;
  --silver: #c0c0c0;
  --white: #ffffff;
  --muted: #a8afb9;
  --blue: #0066ff;
  --blue-2: #2e86ff;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(16, 18, 23, 0.84);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --section: clamp(64px, 13vw, 112px);
  --wrap: min(1120px, calc(100% - 32px));
  --mouse-x: 0px;
  --mouse-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 4%, rgba(0, 102, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #030405 0%, var(--black) 45%, #08090b 100%);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), rgba(255, 255, 255, 0.84));
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.62);
  transform: scaleX(0);
  transform-origin: left;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 70%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(5, 6, 7, 0.86);
  border-color: rgba(0, 102, 255, 0.24);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.32);
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: clamp(146px, 39vw, 220px);
  min-width: 0;
  border-radius: 4px;
}

.brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(0, 102, 255, 0.18));
}

.brand-lockup::after {
  position: absolute;
  inset: -30% -50%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-120%) rotate(18deg);
  animation: logo-sheen 5.8s ease-in-out infinite;
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  padding: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(0, 102, 255, 0.16);
  border-color: rgba(0, 102, 255, 0.55);
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: max(16px, calc((100vw - 1120px) / 2));
  display: grid;
  gap: 6px;
  min-width: 190px;
  padding: 10px;
  background: rgba(8, 9, 11, 0.94);
  border: 1px solid rgba(0, 102, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-menu a {
  padding: 12px 14px;
  color: #dfe4ec;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--white);
  background: rgba(0, 102, 255, 0.18);
  transform: translateX(2px);
}

.section-panel,
.section {
  width: var(--wrap);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  padding: 112px 0 34px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(5, 6, 7, 0.8) 58%, var(--black) 94%),
    radial-gradient(circle at 72% 25%, rgba(0, 102, 255, 0.52), transparent 16rem),
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, #101218, #030405 62%);
  animation: hero-ambient 9s ease-in-out infinite alternate;
  transform: translate3d(calc(var(--mouse-x) * -0.18), calc(var(--mouse-y) * -0.12), 0);
  transition: transform 180ms ease-out;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.82;
  filter: saturate(1.1) contrast(1.08) brightness(0.78);
  transform: translate3d(calc(var(--mouse-x) * 0.24), calc(var(--mouse-y) * 0.16), 0) scale(1.04);
  animation: car-float 8s ease-in-out infinite alternate;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.92) 0%, rgba(3, 4, 5, 0.72) 34%, rgba(3, 4, 5, 0.28) 66%, rgba(3, 4, 5, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(5, 6, 7, 0.84) 70%, var(--black) 96%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 46%, rgba(0, 102, 255, 0.26) 48%, transparent 54% 100%);
  mix-blend-mode: screen;
  transform: translateX(-110%);
  animation: hero-scan 5.4s ease-in-out 900ms infinite;
  z-index: 2;
}

.car-silhouette {
  position: absolute;
  right: 2vw;
  bottom: 41%;
  width: min(650px, 104vw);
  height: 95px;
  border-top: 4px solid rgba(255, 255, 255, 0.76);
  border-radius: 62% 38% 0 0 / 100% 100% 0 0;
  opacity: 0.8;
  transform: translate3d(calc(var(--mouse-x) * 0.22), calc(var(--mouse-y) * 0.14), 0);
  animation: silhouette-pulse 3.8s ease-in-out infinite alternate;
  z-index: 2;
}

.shine-line {
  position: absolute;
  right: 8vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), var(--blue), transparent);
  transform-origin: center;
  animation: light-sweep 4.8s ease-in-out infinite;
  z-index: 2;
}

.shine-one {
  bottom: 52%;
  width: 52vw;
  animation-delay: 300ms;
}

.shine-two {
  bottom: 31%;
  width: 64vw;
  animation-delay: 1.2s;
}

.hero-content {
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding-bottom: clamp(18px, 8vh, 74px);
  opacity: 1;
  transform: none;
  animation: hero-copy-in 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 16vw, 6.8rem);
  font-family: Sora, Inter, Arial, sans-serif;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p {
  max-width: 620px;
  color: #d6d9df;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after {
  position: absolute;
  inset: -70% -40%;
  z-index: 0;
  content: "";
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.24), transparent 70%);
  mix-blend-mode: screen;
  transform: translateX(-130%) rotate(10deg);
  transition: transform 620ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(130%) rotate(10deg);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0047c4);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.36);
  animation: cta-breathe 3.8s ease-in-out infinite;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.section {
  padding-block: var(--section);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 8vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section-line {
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform-origin: left;
}

.package-grid,
.proof-grid {
  display: grid;
  gap: 14px;
}

.package-card,
.testimonial-card,
.why-item,
.booking-form,
.placeholder-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package-card::before,
.testimonial-card::before,
.why-item::before,
.booking-form::before,
.placeholder-photo::after,
.social-slot::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(0, 102, 255, 0.12), transparent);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 220ms ease, transform 720ms ease;
}

.package-card:hover::before,
.testimonial-card:hover::before,
.why-item:hover::before,
.booking-form:focus-within::before,
.placeholder-photo:hover::after,
.social-slot:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.package-card {
  display: grid;
  gap: 22px;
  min-height: 390px;
  padding: 24px;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.package-card:hover {
  border-color: rgba(0, 102, 255, 0.58);
  box-shadow: 0 30px 90px rgba(0, 102, 255, 0.2);
}

.package-card.featured {
  border-color: rgba(0, 102, 255, 0.72);
  box-shadow: 0 24px 90px rgba(0, 102, 255, 0.19);
}

.package-label {
  margin-bottom: 12px;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 18px;
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #d8dce3;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.package-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 102, 255, 0.75);
  animation: bullet-glow 2.7s ease-in-out infinite alternate;
}

.ideal {
  color: var(--muted);
  line-height: 1.55;
}

.btn-card {
  color: var(--white);
  background: rgba(0, 102, 255, 0.16);
  border-color: rgba(0, 102, 255, 0.56);
}

.comparison {
  display: grid;
  gap: 12px;
}

.comparison-single {
  grid-template-columns: minmax(0, 1fr);
}

.full-photo {
  min-height: 340px;
}

.placeholder-photo {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.placeholder-photo img,
.social-slot img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08) brightness(0.76);
  transition: transform 420ms ease, filter 420ms ease;
}

.placeholder-photo:hover img,
.social-slot:hover img {
  filter: saturate(1.08) contrast(1.12) brightness(0.86);
  transform: scale(1.04);
}

.placeholder-photo::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.05) 50% 75%, transparent 75%),
    radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.28), transparent 14rem),
    #101218;
  background-size: 28px 28px, auto, auto;
  animation: placeholder-drift 18s linear infinite;
}

.placeholder-photo span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  background: var(--blue);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.28);
}


.after::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.055) 50% 75%, transparent 75%),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 20% 76%, rgba(0, 102, 255, 0.34), transparent 12rem),
    #141820;
  background-size: 28px 28px, auto, auto, auto;
}

.comparison {
  position: relative;
}

.comparison::after {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  width: 2px;
  height: calc(100% - 28px);
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.72), var(--blue), transparent);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: divider-pulse 2.8s ease-in-out infinite;
}

.why-grid {
  display: grid;
  gap: 12px;
}

.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 5px 14px;
  padding: 20px;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why-item p {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.55;
}

.icon-dot {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: radial-gradient(circle, var(--white) 0 24%, var(--blue) 26% 58%, transparent 60%);
  border: 1px solid rgba(0, 102, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(0, 102, 255, 0.44);
  animation: icon-pulse 2.9s ease-in-out infinite;
}

.booking {
  position: relative;
}

.booking::before {
  position: absolute;
  inset: 42px calc(50% - 50vw) 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.12), transparent);
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 14px;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 102, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.18);
  transform: translateY(-1px);
}

select {
  color-scheme: dark;
}

.date-input {
  cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1) opacity(0.72);
}

.full {
  width: 100%;
}

.submit-btn {
  border: 0;
  cursor: pointer;
}

.form-trust {
  margin-top: 2px;
  color: #e8edf5;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.6;
}

.testimonial-card {
  min-height: 140px;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 22px;
  text-align: left;
}

.testimonial-quote {
  color: #dfe5ee;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-name {
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.social-grid-compact {
  width: min(520px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-slot {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 158px;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
  background:
    radial-gradient(circle at 70% 26%, rgba(0, 102, 255, 0.26), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease;
  isolation: isolate;
}

.social-slot::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
}

.social-slot span {
  align-self: end;
  justify-self: start;
  margin: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(0, 102, 255, 0.82);
  border-radius: 4px;
  font-size: 0.72rem;
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.25);
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 0;
  background: rgba(7, 10, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.play-triangle {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
}

.social-slot:hover {
  border-color: rgba(0, 102, 255, 0.52);
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  gap: 18px;
  width: var(--wrap);
  margin-inline: auto;
  padding: 34px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  filter: drop-shadow(0 0 22px rgba(0, 102, 255, 0.18));
}

.footer-mark {
  width: min(210px, 100%);
}

.site-footer a {
  color: var(--blue-2);
  font-weight: 800;
}

.service-areas {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-areas li::marker {
  color: var(--blue-2);
}

.site-footer p {
  line-height: 1.55;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 16px 48px;
}

.thank-you-shell {
  width: min(720px, 100%);
}

.thank-you-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  text-align: center;
}

.thank-you-card h1 {
  font-family: Sora, Inter, Arial, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.thank-you-card .btn {
  justify-self: center;
  min-width: 220px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 720ms ease var(--reveal-delay, 0ms), transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

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

.reveal.is-visible .section-line,
.section-heading.is-visible .section-line {
  animation: line-build 740ms ease both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-ambient {
  from {
    filter: saturate(1) brightness(0.96);
  }

  to {
    filter: saturate(1.18) brightness(1.08);
  }
}

@keyframes hero-scan {
  0%,
  50% {
    transform: translateX(-110%);
  }

  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes car-float {
  from {
    filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.76));
  }

  to {
    filter: drop-shadow(0 44px 84px rgba(0, 102, 255, 0.18));
  }
}

@keyframes silhouette-pulse {
  from {
    opacity: 0.52;
  }

  to {
    opacity: 0.88;
  }
}

@keyframes light-sweep {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-18px) scaleX(0.72);
  }

  46%,
  62% {
    opacity: 1;
    transform: translateX(14px) scaleX(1);
  }
}

@keyframes logo-sheen {
  0%,
  52% {
    transform: translateX(-120%) rotate(18deg);
  }

  70%,
  100% {
    transform: translateX(120%) rotate(18deg);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.32);
  }

  50% {
    box-shadow: 0 22px 62px rgba(0, 102, 255, 0.52);
  }
}

@keyframes line-build {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes bullet-glow {
  from {
    opacity: 0.62;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.46);
  }

  to {
    opacity: 1;
    box-shadow: 0 0 18px rgba(0, 102, 255, 0.86);
  }
}

@keyframes placeholder-drift {
  from {
    background-position: 0 0, center, center;
  }

  to {
    background-position: 56px 56px, center, center;
  }
}

@keyframes divider-pulse {
  0%,
  100% {
    opacity: 0.46;
  }

  50% {
    opacity: 1;
  }
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(0, 102, 255, 0.32);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 28px rgba(0, 102, 255, 0.55);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media,
  .hero-media::before,
  .car-silhouette {
    transform: none !important;
  }
}

@media (min-width: 720px) {
  .hero {
    min-height: 92vh;
    align-items: center;
    padding-top: 132px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .button-row .btn {
    min-width: 178px;
  }

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

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

  .comparison-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison::after {
    display: block;
  }

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

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

  .why-item {
    grid-column: span 2;
  }

  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    grid-column: span 3;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 26px;
  }

  .booking-form .full,
  .submit-btn,
  .form-trust {
    grid-column: 1 / -1;
  }

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

  .site-footer {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: end;
  }
}

@media (min-width: 1040px) {
  .hero-content {
    padding-bottom: 0;
  }

  .hero-media::before {
    right: 2vw;
    bottom: 22%;
  }

  .car-silhouette {
    right: 13vw;
  }

  .section-heading {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
  }

  .section-heading p {
    grid-column: 2;
  }

  .section-line {
    margin-top: 16px;
  }
}
