:root {
  --bg: #030812;
  --bg-soft: #071421;
  --panel: rgba(10, 23, 36, 0.78);
  --panel-strong: rgba(12, 30, 46, 0.94);
  --text: #f5fbff;
  --muted: #a9c0d3;
  --line: rgba(171, 224, 255, 0.16);
  --blue: #00b9ff;
  --blue-2: #15f1ff;
  --silver: #e9f6ff;
  --shadow: 0 28px 80px rgba(0, 185, 255, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 185, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 10% 4%, rgba(21, 241, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #020712 0%, #06111d 45%, #030812 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  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: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-glow {
  position: fixed;
  inset: auto -18rem -20rem auto;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 185, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(3, 8, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  filter: drop-shadow(0 0 18px rgba(0, 185, 255, 0.5));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a {
  padding: 0.72rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(0, 185, 255, 0.13);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.header-call {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.section-pad {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 86px);
  padding-top: 3rem;
}

.hero-logo {
  width: min(280px, 72vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 0 22px rgba(0, 185, 255, 0.45));
}

.hero h1,
.section-heading h2,
.results-copy h2,
.booking-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.5rem, 7vw, 5.9rem);
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.section-heading h2,
.results-copy h2,
.booking-copy h2 {
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  max-width: 820px;
}

.hero p,
.section-heading > p:last-child,
.results-copy p,
.booking-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.filter-row,
.package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #00101b;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 44px rgba(0, 185, 255, 0.28);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button.full {
  width: 100%;
}

.request-cta {
  font-family: inherit;
  font-size: 1.2rem;
  line-height: 1.2;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.trust-strip span,
.section-label {
  color: #c8f7ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-strip span {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-media {
  position: relative;
  padding-bottom: 5.5rem;
}

.shine-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(21, 241, 255, 0.22), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.shine-card::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.shine-card img {
  width: min(430px, 84%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.waterline {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 13%;
  height: 70px;
  background:
    linear-gradient(90deg, transparent, rgba(21, 241, 255, 0.28), transparent),
    repeating-linear-gradient(165deg, transparent 0 28px, rgba(255, 255, 255, 0.38) 29px 33px);
  filter: blur(0.2px);
  transform: skewY(-4deg);
}

.floating-card {
  position: absolute;
  z-index: 6;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(3, 8, 18, 0.78);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.estimate-card {
  right: 1rem;
  top: auto;
  bottom: 4.25rem;
  padding: 1rem 1.15rem;
}

.estimate-card span,
.estimate-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.estimate-card strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.2rem;
}

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

.section-label {
  margin: 0 0 0.8rem;
}

.service-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.gallery-tile,
blockquote,
.package-panel,
.booking-form,
.quote-box,
.faq-item,
.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.service-card {
  padding: 1.35rem;
  min-height: 230px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.4rem;
  color: var(--blue-2);
  border-radius: 16px;
  background: rgba(0, 185, 255, 0.12);
  box-shadow: inset 0 0 28px rgba(21, 241, 255, 0.13);
}

.service-card h3,
.gallery-tile h3,
.process-list h3 {
  margin: 0 0 0.65rem;
  font-size: 1.14rem;
}

.service-card p,
.gallery-tile p,
.process-list p,
blockquote p,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
}

.results {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.compare {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #17100c, #071421 50%, #041d2c);
  box-shadow: var(--shadow);
}

.compare-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.compare-layer.after {
  clip-path: inset(0 50% 0 0);
  background:
    radial-gradient(circle at 55% 40%, rgba(21, 241, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, #071421, #032338);
}

.compare-tag {
  position: absolute;
  top: 1rem;
  z-index: 6;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  pointer-events: none;
}

.compare-tag-before {
  left: 1rem;
}

.compare-tag-after {
  right: 1rem;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  touch-action: none;
}

.compare-touch-zone {
  position: absolute;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 72px;
  cursor: ew-resize;
  touch-action: none;
  transform: translateX(-50%);
}

.compare.is-side-by-side .compare-touch-zone {
  display: none;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 20px var(--blue-2);
}

.compare-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #00101b;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-2), white);
  transform: translate(-50%, -50%);
}

.car-illustration {
  position: relative;
  width: min(430px, 75vw);
  height: 175px;
  border-radius: 44px 92px 36px 36px;
}

.car-illustration .hood,
.car-illustration .cabin {
  position: absolute;
  display: block;
}

.car-illustration .hood {
  inset: 54px 16px 38px;
  border-radius: 60px 78px 22px 28px;
}

.car-illustration .cabin {
  left: 33.72%;
  top: 15px;
  width: 37.21%;
  height: auto;
  aspect-ratio: 160 / 82;
  border-radius: 78px 88px 8px 12px;
  transform: skewX(-14deg);
}

.car-illustration .wheel {
  position: absolute;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 12px solid #020812;
  background: radial-gradient(circle, #b8cedc 0 20%, #17212e 22% 100%);
}

.car-illustration .wheel.left {
  left: 74px;
}

.car-illustration .wheel.right {
  right: 70px;
}

.car-illustration.dirty .hood,
.car-illustration.dirty .cabin {
  background: linear-gradient(135deg, #6d5134, #252014);
  box-shadow: inset 0 0 0 3px rgba(166, 120, 72, 0.4);
}

.car-illustration.clean .hood,
.car-illustration.clean .cabin {
  background: linear-gradient(135deg, white, #7edfff 35%, #162b3d 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5), 0 0 35px rgba(21, 241, 255, 0.22);
}

.filter,
.package-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.filter.active,
.package-tab.active {
  color: #00101b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.gallery-grid {
  margin-top: 1rem;
}

.gallery-tile {
  padding: 0.8rem;
}

.tile-art {
  display: block;
  height: 190px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #061421, #0b3451);
}

.tile-art.blue {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9), transparent 0.9rem),
    linear-gradient(135deg, #01111d, #00b9ff);
}

.tile-art.silver {
  background:
    linear-gradient(165deg, transparent 20%, rgba(255, 255, 255, 0.45) 21% 24%, transparent 25%),
    linear-gradient(135deg, #202b36, #f6fbff);
}

.tile-art.ceramic {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75) 0 0.5rem, transparent 0.55rem),
    radial-gradient(circle at 54% 52%, rgba(255, 255, 255, 0.58) 0 0.8rem, transparent 0.85rem),
    linear-gradient(135deg, #04263a, #15f1ff);
}

.tile-art.wheels {
  background:
    radial-gradient(circle, #e9f6ff 0 10%, #03101b 12% 24%, #7bdcff 25% 29%, #020812 30% 42%, transparent 43%),
    linear-gradient(135deg, #061421, #112b40);
}

.gallery-tile.is-hidden {
  display: none;
}

.package-tabs {
  margin-bottom: 1rem;
}

.package-panel {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 0.38fr);
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 80% 15%, rgba(0, 185, 255, 0.18), transparent 22rem),
    var(--panel-strong);
}

.package-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
}

.package-panel p,
.package-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.price-card span {
  color: var(--muted);
}

.price-card strong {
  font-size: 3rem;
  letter-spacing: -0.08em;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 1.4rem;
}

.process-list span {
  color: var(--blue-2);
  font-weight: 900;
}

blockquote {
  margin: 0;
  padding: 1.4rem;
}

blockquote p {
  margin-top: 0;
  color: var(--text);
  font-size: 1.05rem;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
}

.booking {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.quote-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 260px;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
}

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

.quote-box strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.form-demo-note {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(130, 193, 255, 0.35);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(4, 35, 59, 0.68);
}

.form-demo-note strong {
  color: var(--silver);
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--silver);
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.92rem 1rem;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.065);
  outline: none;
}

select {
  color-scheme: dark;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  font: inherit;
  font-weight: inherit;
  text-align: left;
  background: rgba(255, 255, 255, 0.065);
  cursor: pointer;
}

.custom-select-trigger svg {
  width: 16px;
  flex: 0 0 16px;
  transition: transform 160ms ease;
}

.custom-select-trigger:focus-visible,
.custom-select-trigger[aria-expanded="true"] {
  border-color: rgba(21, 241, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(0, 185, 255, 0.15);
  outline: none;
}

.custom-select-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.35rem);
  left: 0;
  width: 100%;
  padding: 0.3rem;
  border: 1px solid rgba(171, 224, 255, 0.25);
  border-radius: 12px;
  background: #0b1d2b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-option {
  display: block;
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 0;
  border-radius: 8px;
  color: #f5fbff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  background: #0b1d2b;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  color: #03131c;
  background: #24dff4;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(21, 241, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(0, 185, 255, 0.15);
}

textarea {
  resize: vertical;
}

.form-success {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(21, 241, 255, 0.4);
  border-radius: 16px;
  color: #dffcff;
  background: rgba(0, 185, 255, 0.12);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: 1rem 1.15rem;
  color: var(--text);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  display: none;
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-weight: 500;
}

.faq-item.open p {
  display: block;
}

.faq-item.open strong {
  transform: rotate(45deg);
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: 4rem clamp(1rem, 4vw, 2rem) 4.5rem;
  border-top: 1px solid var(--line);
}

.site-footer-brand {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.site-footer-brand img {
  width: min(220px, 70vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
}

.site-footer-brand p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.site-footer-cta,
.footer-link {
  color: var(--blue-2);
  font-weight: 900;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-panel {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 128px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(10, 23, 36, 0.58);
}

.footer-panel h2 {
  margin: 0;
  color: var(--blue-2);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-link {
  width: fit-content;
  color: var(--text);
  text-decoration: none;
}

.footer-contact-links {
  display: grid;
  justify-items: start;
  gap: 0.7rem;
}

.instagram-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}

.footer-link:hover,
.footer-link:focus-visible,
.site-footer-cta:hover,
.site-footer-cta:focus-visible {
  color: var(--blue-2);
}

.about-page {
  display: grid;
  min-height: calc(100vh - 86px);
  align-items: center;
}

.about-card {
  width: min(760px, 100%);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(8, 32, 51, 0.96), rgba(2, 17, 30, 0.96));
  box-shadow: var(--shadow);
}

.about-card img {
  width: min(280px, 80vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 2.5rem;
}

.about-card h1 {
  max-width: 640px;
  margin: 0 0 2rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.about-nav {
  display: flex;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.error-card {
  width: min(620px, 100%);
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(145deg, rgba(8, 32, 51, 0.96), rgba(2, 17, 30, 0.96));
  box-shadow: var(--shadow);
}

.error-card img {
  width: min(240px, 80vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1.5rem;
}

.error-card h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.5rem, 10vw, 5rem);
}

.error-card p {
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

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

.js-enabled .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 920px) {
  .hero,
  .results,
  .booking,
  .package-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .shine-card {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    background: rgba(3, 8, 18, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 17vw, 4.2rem);
    line-height: 0.98;
  }

  .service-grid,
  .gallery-grid,
  .testimonial-grid,
  .process-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    right: 1rem;
    top: auto;
    bottom: 4.25rem;
  }

  .compare {
    min-height: 330px;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer-brand {
    justify-items: center;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-panel {
    justify-items: center;
  }

  .footer-link {
    width: auto;
  }

  .footer-contact-links {
    justify-items: center;
  }

  .about-nav {
    display: none;
  }
}

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

/* Authentic media proof system */
.hero-result-card {
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  background: #061421;
}

.hero .hero-logo {
  width: min(180px, 46vw);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 5.2vw, 4.45rem);
}

.hero-copy > p {
  margin: 1rem 0;
}

.hero-result-card::before,
.hero-result-card .waterline {
  display: none;
}

.shine-card.hero-result-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}

.hero-result-card figcaption {
  position: absolute;
  z-index: 3;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(2, 10, 18, 0.78);
  backdrop-filter: blur(12px);
}

.proof-section {
  align-items: start;
  padding-top: clamp(4.5rem, 9vw, 8rem);
}

.proof-section .results-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
}

.results-copy {
  position: sticky;
  top: 120px;
  min-width: 0;
}

.pair-selector {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.6rem 0;
}

.pair-option {
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.pair-option:hover,
.pair-option:focus-visible,
.pair-option.active {
  color: #00101b;
  border-color: transparent;
  outline: none;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.result-description {
  padding: 1rem 0 0.75rem;
  border-top: 1px solid var(--line);
}

.result-description h3 {
  margin: 0;
  font-size: 1.35rem;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.comparison-shell {
  width: min(100%, 610px);
  min-width: 0;
  justify-self: end;
}

.media-compare {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  background: #071421;
}

.media-compare .compare-layer,
.media-compare .compare-layer.after {
  background: #071421;
}

.media-compare .compare-layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-compare .compare-tag-before {
  right: 1rem;
  left: auto;
}

.media-compare .compare-tag-after {
  right: auto;
  left: 1rem;
}

.compare-range:focus-visible + .compare-handle::after {
  outline: 4px solid #ffffff;
  outline-offset: 3px;
}

.media-compare.is-side-by-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  aspect-ratio: 8 / 5;
}

.media-compare.is-side-by-side .compare-layer {
  position: relative;
  inset: auto;
  clip-path: none !important;
}

.media-compare.is-side-by-side .compare-range,
.media-compare.is-side-by-side .compare-handle {
  display: none;
}

.media-compare.is-side-by-side .compare-tag-before {
  right: auto;
  left: 1rem;
}

.media-compare.is-side-by-side .compare-tag-after {
  right: 1rem;
  left: auto;
}

.compare-fallback {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.compare-fallback img {
  width: 100%;
  border-radius: var(--radius-lg);
}

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

.real-gallery .gallery-tile {
  overflow: hidden;
  padding: 0 0 1rem;
}

.real-gallery .gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  object-fit: contain;
  background: #071421;
}

.real-gallery .gallery-tile img.gallery-media--cargo {
  object-fit: cover;
  object-position: 50% 56%;
}

.real-gallery .gallery-tile picture {
  display: block;
}

.real-gallery .gallery-tile h3,
.real-gallery .gallery-tile p {
  margin-right: 1rem;
  margin-left: 1rem;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(10, 23, 36, 0.72);
}

.gallery-cta p {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
}

.mobile-conversion-bar {
  display: none;
}

@media (max-width: 920px) {
  .results-copy {
    position: static;
  }

  .comparison-shell {
    width: min(100%, 650px);
    justify-self: center;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: end;
    min-height: calc(100svh + 4rem);
    padding: clamp(8rem, 27vh, 12rem) 1rem 9rem;
    overflow: hidden;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
  }

  .hero .hero-logo,
  .hero-actions,
  .hero .trust-strip {
    display: none;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-copy > p {
    max-width: 34rem;
    margin: 0.9rem 0 0;
    color: #d8e8f3;
    font-size: clamp(0.92rem, 4vw, 1.02rem);
    line-height: 1.55;
  }

  .hero-media {
    position: absolute;
    z-index: 1;
    inset: 0;
    padding: 0;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(2, 8, 16, 0.04) 0%, rgba(2, 8, 16, 0.12) 68%, rgba(2, 8, 16, 0.78) 88%, #020b14 100%),
      linear-gradient(90deg, rgba(2, 8, 16, 0.12), transparent 64%);
  }

  .proof-section {
    position: relative;
    isolation: isolate;
    margin-top: -7rem;
    padding-top: 3rem;
    background: none;
  }

  .proof-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -3rem;
    right: 0;
    left: 0;
    height: 16rem;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(2, 11, 20, 0) 0%,
      rgba(2, 11, 20, 0.8) 14%,
      #020b14 22%,
      #020b14 62%,
      rgba(2, 11, 20, 0.9) 80%,
      rgba(2, 11, 20, 0) 100%
    );
  }

  .hero-result-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .shine-card.hero-result-card img {
    object-position: right center;
  }

  .hero-result-card figcaption,
  .hero-media .floating-card {
    display: none;
  }

  .pair-selector {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pair-selector::-webkit-scrollbar {
    display: none;
  }

  .pair-option {
    flex: 0 0 auto;
  }

  .media-compare,
  .compare {
    min-height: 0;
  }

  .media-compare.is-side-by-side {
    aspect-ratio: 8 / 5;
  }

  .compare-range {
    pointer-events: none;
  }

  .compare-touch-zone {
    width: clamp(104px, 30vw, 120px);
  }

  .real-gallery {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .real-gallery .gallery-tile {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .real-gallery .gallery-tile img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .real-gallery .gallery-tile img.gallery-media--cargo {
    object-fit: contain;
    object-position: center;
  }

  .gallery-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .mobile-conversion-bar {
    position: sticky;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border-top: 1px solid var(--line);
    background: rgba(3, 8, 18, 0.94);
    backdrop-filter: blur(18px);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  .mobile-conversion-bar .button {
    min-height: 48px;
    padding: 0.7rem 0.9rem;
  }
}

@media (max-width: 680px) and (display-mode: standalone) {
  .hero {
    padding-bottom: calc(9rem + env(safe-area-inset-bottom));
  }

  .mobile-conversion-bar {
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  }
}
