:root {
  --black: #050505;
  --black-2: #0c0c0d;
  --black-3: #141416;
  --panel: #18181a;
  --white: #f7f5f0;
  --silver: #c8c9cc;
  --muted: #949498;
  --gold: #c9a15c;
  --gold-light: #e3c583;
  --gold-dark: #806126;
  --red: #d71920;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --max: 1280px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

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

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

button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 202;
  color: #b7b7ba;
  background: #020202;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  transition: color 160ms ease;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--gold-light);
}

.topbar__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 161, 92, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(6, 6, 6, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 4, 4, 0.98);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.site-logo__image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid rgba(227, 197, 131, 0.42);
  border-radius: 50%;
}

.site-logo__copy {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-logo__copy strong {
  color: var(--gold-light);
}

.site-logo__copy small {
  margin-top: 5px;
  color: #858589;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 13px;
  color: #c4c4c6;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-link.is-current,
.nav-toggle.is-current {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.045);
}

.nav-toggle svg {
  width: 10px;
  transition: transform 160ms ease;
}

.nav-item:hover .nav-toggle svg,
.nav-item:focus-within .nav-toggle svg,
.nav-item.is-open .nav-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: 310px;
  padding: 9px;
  visibility: hidden;
  background: #111113;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown::before {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 16px;
  content: "";
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-link {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 160ms ease;
}

.dropdown-link:last-child {
  border-bottom: 0;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  background: rgba(201, 161, 92, 0.1);
}

.dropdown-link__number {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
}

.dropdown-link strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.dropdown-link small {
  color: #7d7d81;
  font-size: 9px;
}

.dropdown-link__arrow {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-light);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  transition: background 160ms ease, border-color 160ms ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(201, 161, 92, 0.12);
  border-color: var(--gold);
}

.phone-link svg {
  width: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  color: #080808;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(201, 161, 92, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 38px rgba(201, 161, 92, 0.24);
  transform: translateY(-2px);
}

.button--outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--black);
}

.button--dark {
  color: var(--white);
  background: #0a0a0b;
  border-color: #0a0a0b;
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--black);
  background: var(--white);
}

.button--wide {
  width: 100%;
}

.mobile-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle {
  gap: 4px;
}

.mobile-toggle.is-open span {
  opacity: 0;
}

.mobile-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 122px 0 0;
  z-index: 190;
  display: none;
  overflow-y: auto;
  padding: 28px 24px 80px;
  background: rgba(5, 5, 5, 0.99);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel__nav {
  display: grid;
}

.mobile-panel__nav > a,
.mobile-panel details > summary {
  padding: 17px 0;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-panel details > summary {
  display: flex;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}

.mobile-panel details > summary::-webkit-details-marker {
  display: none;
}

.mobile-panel details > summary::after {
  color: var(--gold-light);
  content: "+";
}

.mobile-panel details[open] > summary::after {
  content: "−";
}

.mobile-subnav {
  display: grid;
  padding: 8px 0 12px 16px;
}

.mobile-subnav a {
  padding: 12px 0;
  color: #aaaab0;
  font-size: 13px;
}

.mobile-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  background: #070708;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 46%;
  z-index: -3;
}

.hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #070708 0%, rgba(7, 7, 8, 0.9) 10%, rgba(7, 7, 8, 0.18) 58%, rgba(7, 7, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.76), transparent 48%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 122px);
  padding-block: 90px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero__logo-watermark {
  position: absolute;
  top: 50%;
  left: -50px;
  z-index: -1;
  width: min(620px, 70vw);
  opacity: 0.075;
  filter: grayscale(1);
  transform: translateY(-50%);
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  letter-spacing: -0.048em;
}

h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(54px, 7.4vw, 112px);
  font-weight: 900;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: #b0b0b4;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

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

.hero__details {
  display: grid;
  align-self: end;
  margin-bottom: 8px;
  background: rgba(10, 10, 11, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero__detail {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.hero__detail:last-child {
  border-bottom: 0;
}

.hero__detail-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold-light);
  background: rgba(201, 161, 92, 0.1);
  border: 1px solid rgba(201, 161, 92, 0.25);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.hero__detail small {
  display: block;
  color: #79797e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__detail strong {
  font-size: 13px;
}

.trustbar {
  background: linear-gradient(90deg, #9d7634, var(--gold-light), #9d7634);
}

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

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 17px 24px;
  color: #080808;
  border-right: 1px solid rgba(5, 5, 5, 0.18);
}

.trustbar__item:first-child {
  border-left: 1px solid rgba(5, 5, 5, 0.18);
}

.trustbar__item strong {
  font-size: 21px;
  line-height: 1;
}

.trustbar__item span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.section--soft {
  background: #0a0a0b;
}

.section--light {
  color: #121212;
  background: #f1efe9;
}

.section--compact {
  padding-block: clamp(64px, 7vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 900;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.section--light .section-heading > p {
  color: #5f5f62;
}

.section-footer-link {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 30px;
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(201, 161, 92, 0.55);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.1), #0b0b0d 78%);
}

.service-card__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  transition: transform 500ms ease, opacity 300ms ease;
}

.service-card:hover .service-card__image {
  opacity: 0.58;
  transform: scale(1.04);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__number {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card__badge {
  padding: 7px 10px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 2px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card__content {
  margin-top: auto;
}

.service-card h3 {
  margin-bottom: 9px;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.service-card__price {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-card p {
  min-height: 70px;
  margin-bottom: 24px;
  color: #a3a3a8;
  font-size: 13px;
}

.service-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line-strong);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__link span {
  color: var(--gold-light);
  font-size: 18px;
  transition: transform 160ms ease;
}

.service-card:hover .service-card__link span {
  transform: translateX(5px);
}

.price-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.price-snapshot__image {
  min-height: 610px;
}

.price-snapshot__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-snapshot__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 82px);
}

.price-snapshot__content h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
}

.price-snapshot__content > p {
  color: var(--muted);
}

.price-list-mini {
  padding: 0;
  margin: 26px 0 32px;
  list-style: none;
}

.price-list-mini li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.price-list-mini li span {
  color: #b7b7ba;
  font-size: 13px;
}

.price-list-mini li strong {
  color: var(--gold-light);
  font-size: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.comparison-card {
  min-width: 0;
  margin: 0;
}

.comparison {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: 5px;
  touch-action: pan-y;
}

.comparison--landscape {
  aspect-ratio: 16 / 9;
}

.comparison__before,
.comparison__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.comparison__before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison__label {
  position: absolute;
  top: 18px;
  z-index: 5;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison__label--before {
  left: 18px;
}

.comparison__label--after {
  right: 18px;
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.comparison__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  width: 2px;
  background: var(--white);
  transform: translateX(-1px);
  pointer-events: none;
}

.comparison__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--gold-light);
  border: 3px solid var(--black);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.comparison__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison:focus-within {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.comparison-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 2px 0;
}

.comparison-card figcaption strong {
  font-size: 14px;
}

.comparison-card figcaption span {
  color: #818186;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 65px;
  align-items: center;
  padding: clamp(44px, 7vw, 86px);
  overflow: hidden;
  color: #101010;
  background: linear-gradient(135deg, #e5c984, #b98e44);
  border-radius: 5px;
}

.review-panel::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  z-index: -1;
  width: 500px;
  height: 500px;
  content: "";
  background: url("assets/mg-logo.jpg") center / contain no-repeat;
  border-radius: 50%;
  opacity: 0.09;
}

.review-score strong {
  display: block;
  font-size: clamp(86px, 12vw, 170px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.review-score span {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
}

.review-copy p {
  max-width: 620px;
  color: rgba(10, 10, 10, 0.72);
}

.review-copy .button {
  margin-top: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-card {
  min-height: 300px;
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
}

.process-card + .process-card {
  padding-left: 34px;
}

.process-card:last-child {
  border-right: 0;
}

.process-card__number {
  display: block;
  margin-bottom: 66px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 140px);
  text-align: center;
  background:
    linear-gradient(rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.88)),
    url("assets/after-cockpit.jpg") center / cover no-repeat;
}

.cta-section::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  content: "";
  background: url("assets/mg-logo.jpg") center / contain no-repeat;
  border-radius: 50%;
  opacity: 0.08;
  transform: translate(-50%, -50%);
}

.cta-section .eyebrow {
  justify-content: center;
}

.cta-section h2 {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(46px, 7vw, 94px);
  font-weight: 900;
}

.cta-section p {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #aaaab0;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.subhero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--black-2);
}

.subhero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.subhero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.84) 40%, rgba(5,5,5,.35) 100%), linear-gradient(0deg, #050505 0%, transparent 65%);
}

.subhero__content {
  width: min(780px, 100%);
  padding-block: 90px 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #8b8b90;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--gold-light);
}

.subhero h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 92px);
}

.subhero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #b2b2b6;
  font-size: 17px;
  line-height: 1.7;
}

.subhero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chip {
  padding: 9px 12px;
  color: #c3c3c6;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 72px;
  align-items: start;
}

.content-block + .content-block {
  margin-top: 72px;
}

.content-block h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
}

.content-block > p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 74px;
  padding: 18px 18px 18px 46px;
  color: #bcbcc0;
  background: #101012;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  top: 21px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--black);
  content: "✓";
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 950;
}

.info-box {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 22px;
  margin-top: 26px;
  color: #bababe;
  background: rgba(201, 161, 92, 0.09);
  border: 1px solid rgba(201, 161, 92, 0.28);
  border-radius: 4px;
  font-size: 13px;
}

.info-box__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  border: 1px solid rgba(201, 161, 92, 0.35);
  border-radius: 50%;
  font-weight: 900;
}

.info-box strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.price-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 28px;
  background: #111113;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.price-sidebar__label {
  display: block;
  margin-bottom: 8px;
  color: #848489;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-sidebar__from {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.price-sidebar__from span {
  color: var(--muted);
  font-size: 12px;
}

.price-sidebar__from strong {
  color: var(--gold-light);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
}

.price-table th {
  color: #96969b;
  font-weight: 500;
}

.price-table td {
  color: var(--white);
  font-weight: 850;
  text-align: right;
}

.price-sidebar .button {
  margin-top: 22px;
}

.price-sidebar__note {
  margin: 14px 0 0;
  color: #76767b;
  font-size: 10px;
  text-align: center;
}

.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.pricing-card--featured {
  border-color: rgba(201, 161, 92, .58);
  box-shadow: 0 18px 60px rgba(201, 161, 92, .12);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 10px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 2px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 850;
}

.pricing-card__from {
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 17px;
  font-weight: 900;
}

.pricing-card__desc {
  min-height: 76px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-card .price-table {
  margin-bottom: 24px;
}

.pricing-card__links {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 25px 30px;
  background: linear-gradient(90deg, rgba(201, 161, 92, .14), rgba(201, 161, 92, .04));
  border: 1px solid rgba(201, 161, 92, .34);
  border-radius: 4px;
}

.addon-card span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.addon-card strong {
  font-size: 20px;
}

.addon-card__price {
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 900;
}

.results-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 22px;
}

.results-page-grid .comparison-card:last-child {
  grid-column: 1 / -1;
}

.google-card-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
}

.google-score-card,
.google-info-card {
  padding: clamp(34px, 5vw, 60px);
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.google-score-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 370px;
  text-align: center;
}

.google-score-card strong {
  color: var(--gold-light);
  font-size: clamp(100px, 16vw, 190px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.08em;
}

.google-score-card span {
  margin-top: 28px;
  color: #aaaab0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.google-info-card h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
}

.google-info-card p {
  color: var(--muted);
}

.google-info-card__features {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.google-info-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c1c1c5;
  font-size: 13px;
}

.google-info-card__features li::before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--black);
  content: "✓";
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 35px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--gold), rgba(201,161,92,.1));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding: 28px;
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.timeline-step__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--black);
  background: var(--gold-light);
  border: 7px solid #111113;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.timeline-step h2 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -.025em;
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 32px;
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  border-color: rgba(201, 161, 92, .55);
  transform: translateY(-4px);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  color: var(--gold-light);
  background: rgba(201, 161, 92, .1);
  border: 1px solid rgba(201, 161, 92, .28);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 850;
}

.contact-card p {
  color: var(--muted);
  font-size: 13px;
}

.contact-card__link {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  margin-top: auto;
  color: var(--gold-light);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quick-message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-message {
  padding: 24px;
  background: #111113;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.quick-message span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
}

.quick-message strong {
  display: block;
  margin-bottom: 18px;
}

.quick-message a {
  color: #aaaab0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  list-style: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--gold-light);
  content: "+";
  font-size: 24px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 45px 24px 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 54px;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 850;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
}

.legal-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding-top: 70px;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 50px;
  padding-bottom: 58px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: #79797e;
  font-size: 12px;
}

.footer-title {
  display: block;
  margin-bottom: 17px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #89898e;
  font-size: 12px;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-light);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  color: #5d5d61;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: #06140a;
  background: #42d96b;
  border: 2px solid #050505;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .44);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 19px;
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 205px 1fr auto;
  }

  .nav-link,
  .nav-toggle {
    padding-inline: 9px;
    font-size: 9px;
  }

  .header-actions .button {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr 280px;
  }

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

  .trustbar__item:nth-child(2) {
    border-right: 0;
  }

  .trustbar__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  }

  .service-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__group:first-child {
    display: none;
  }

  .desktop-nav,
  .phone-link {
    display: none;
  }

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

  .mobile-toggle {
    display: grid;
  }

  .mobile-panel {
    inset: 110px 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    inset: 0;
  }

  .hero__media::before {
    background: linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.56)), linear-gradient(0deg, #050505 0%, transparent 60%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 100px 70px;
  }

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

  .hero__detail {
    grid-template-columns: 1fr;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero__detail:last-child {
    border-right: 0;
  }

  .hero__detail-icon {
    margin-inline: auto;
  }

  .section-heading,
  .review-panel,
  .service-layout,
  .google-card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .services-grid,
  .pricing-page-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 400px;
  }

  .price-snapshot {
    grid-template-columns: 1fr;
  }

  .price-snapshot__image {
    min-height: 420px;
  }

  .price-sidebar {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .topbar__group {
    gap: 12px;
  }

  .topbar__group span:last-child {
    display: none;
  }

  .site-logo__image {
    width: 52px;
    height: 52px;
  }

  .site-logo__copy {
    font-size: 12px;
  }

  .site-logo__copy small {
    font-size: 7px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero__grid {
    padding-block: 78px 46px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__details {
    grid-template-columns: 1fr;
  }

  .hero__detail {
    grid-template-columns: 38px 1fr;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__detail:last-child {
    border-bottom: 0;
  }

  .hero__detail-icon {
    margin: 0;
  }

  .trustbar__grid {
    grid-template-columns: 1fr;
  }

  .trustbar__item,
  .trustbar__item:nth-child(2),
  .trustbar__item:nth-child(-n + 2) {
    border-right: 1px solid rgba(5, 5, 5, 0.18);
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  }

  .trustbar__item:last-child {
    border-bottom: 0;
  }

  .results-grid,
  .results-page-grid,
  .feature-list,
  .contact-grid,
  .quick-message-grid {
    grid-template-columns: 1fr;
  }

  .results-page-grid .comparison-card:last-child {
    grid-column: auto;
  }

  .comparison--landscape {
    aspect-ratio: 4 / 5;
  }

  .review-panel {
    gap: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card + .process-card {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card__number {
    margin-bottom: 32px;
  }

  .subhero {
    min-height: 480px;
  }

  .subhero__content {
    padding-block: 76px 54px;
  }

  .subhero h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .timeline::before {
    left: 27px;
  }

  .timeline-step {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .timeline-step__number {
    width: 38px;
    height: 38px;
  }

  .addon-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 20px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

/* MG Detailing — Swiss Precision visual system */
:root {
  --black: #061018;
  --black-2: #091720;
  --black-3: #0d202b;
  --panel: #102733;
  --white: #f3f8fa;
  --silver: #b9cbd3;
  --muted: #8ea5af;
  --gold: #25aebe;
  --gold-light: #76dfe8;
  --gold-dark: #0a6f7b;
  --red: #ef5358;
  --line: rgba(156, 214, 222, 0.13);
  --line-strong: rgba(156, 214, 222, 0.25);
  --shadow: 0 28px 90px rgba(0, 7, 12, 0.44);
  --max: 1320px;
  --header-h: 84px;
}

html,
body {
  background: var(--black);
}

body {
  background-image:
    radial-gradient(circle at 8% 10%, rgba(37, 174, 190, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 48%, rgba(67, 111, 174, 0.08), transparent 34rem);
  font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  color: #031014;
  background: var(--gold-light);
}

.container {
  width: min(var(--max), calc(100% - 64px));
}

.topbar {
  color: #a8bec7;
  background: #040d13;
  border-bottom-color: rgba(118, 223, 232, 0.12);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.topbar__inner {
  min-height: 38px;
}

.topbar__dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(118, 223, 232, 0.72);
}

.site-header {
  background: rgba(7, 20, 28, 0.9);
  border-bottom-color: rgba(143, 207, 218, 0.14);
  backdrop-filter: blur(22px) saturate(130%);
}

.site-header.is-scrolled {
  background: rgba(5, 16, 23, 0.97);
  box-shadow: 0 18px 48px rgba(0, 8, 14, 0.38);
}

.site-header__inner {
  grid-template-columns: 250px minmax(0, 1fr) auto;
}

.site-logo__image {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(118, 223, 232, 0.48);
  box-shadow: 0 0 0 6px rgba(118, 223, 232, 0.05);
}

.site-logo__copy {
  font-size: 15px;
  letter-spacing: 0.1em;
}

.site-logo__copy strong {
  color: var(--gold-light);
}

.site-logo__copy small {
  color: #78909a;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.desktop-nav {
  gap: 4px;
}

.nav-link,
.nav-toggle {
  min-height: 42px;
  padding-inline: 12px;
  color: #b7c7ce;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-link.is-current,
.nav-toggle.is-current {
  color: #eafcff;
  background: rgba(118, 223, 232, 0.08);
  border-color: rgba(118, 223, 232, 0.16);
}

.nav-dropdown {
  padding: 12px;
  background: rgba(9, 25, 34, 0.98);
  border-color: rgba(118, 223, 232, 0.2);
  border-radius: 16px;
}

.dropdown-link {
  border-radius: 10px;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  background: rgba(118, 223, 232, 0.08);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  color: #031116;
  background: linear-gradient(135deg, #89ecf2, #28b2c2);
  border: 1px solid rgba(154, 244, 249, 0.5);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(20, 154, 170, 0.2);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.button:hover,
.button:focus-visible {
  color: #020c10;
  background: linear-gradient(135deg, #adf6f9, #4bcbd7);
  box-shadow: 0 16px 38px rgba(20, 154, 170, 0.3);
  transform: translateY(-2px);
}

.button--outline {
  color: #d9e8ed;
  background: rgba(11, 30, 40, 0.6);
  border-color: rgba(151, 210, 220, 0.28);
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: #ecfcff;
  background: rgba(118, 223, 232, 0.1);
  border-color: rgba(118, 223, 232, 0.52);
}

.button--dark {
  color: #e8f8fb;
  background: #071821;
  border-color: #071821;
  box-shadow: 0 12px 30px rgba(0, 12, 18, 0.22);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: #061018;
  background: #61d8e3;
  border-color: #61d8e3;
}

.phone-link {
  color: #dbe9ed;
  background: rgba(118, 223, 232, 0.06);
  border: 1px solid rgba(118, 223, 232, 0.14);
  border-radius: 10px;
}

.hero {
  min-height: calc(100vh - 122px);
  background: linear-gradient(135deg, #061018 0%, #091a24 62%, #07131b 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(118, 223, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 223, 232, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.hero__media {
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero__media::before {
  background:
    linear-gradient(90deg, rgba(4, 14, 20, 0.98) 0%, rgba(4, 14, 20, 0.9) 30%, rgba(4, 14, 20, 0.42) 56%, rgba(4, 14, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 13, 19, 0.82) 0%, transparent 54%, rgba(3, 13, 19, 0.18) 100%);
}

.hero__media img {
  object-position: 68% center;
  filter: saturate(0.82) contrast(1.04);
}

.hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.52fr);
  gap: 56px;
  padding-block: 100px;
}

.hero__content {
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}

.hero__logo-watermark {
  display: none;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2 {
  letter-spacing: -0.042em;
}

h1 {
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 800;
}

h1 em,
h2 em {
  color: var(--gold-light);
}

.hero__lead {
  color: #afc2ca;
  font-size: clamp(17px, 1.4vw, 20px);
}

.hero__details {
  gap: 10px;
  align-self: end;
  margin-bottom: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__detail {
  padding: 18px;
  background: rgba(7, 24, 33, 0.86);
  border: 1px solid rgba(139, 207, 217, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 9, 15, 0.2);
  backdrop-filter: blur(16px);
}

.hero__detail:last-child {
  border-bottom: 1px solid rgba(139, 207, 217, 0.18);
}

.hero__detail-icon {
  color: #a0f0f5;
  background: rgba(118, 223, 232, 0.09);
  border-color: rgba(118, 223, 232, 0.26);
  border-radius: 10px;
}

.hero__detail small {
  color: #76909a;
  font-size: 10px;
}

.hero__detail strong {
  color: #edf8fa;
  font-size: 14px;
}

.trustbar {
  background: #0b1c26;
  border-block: 1px solid rgba(145, 209, 220, 0.14);
}

.trustbar__grid {
  gap: 0;
}

.trustbar__item,
.trustbar__item:first-child {
  min-height: 96px;
  color: #e8f3f6;
  border-color: rgba(151, 211, 221, 0.12);
}

.trustbar__item strong {
  color: var(--gold-light);
  font-size: 20px;
}

.trustbar__item span {
  color: #91a7b0;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.section {
  position: relative;
  padding-block: clamp(90px, 9vw, 138px);
}

.section--soft {
  background:
    linear-gradient(135deg, rgba(17, 43, 56, 0.38), rgba(5, 16, 24, 0.16)),
    #08151d;
  border-block: 1px solid rgba(147, 210, 220, 0.08);
}

.section--light {
  color: #0a1b23;
  background: #eaf2f4;
}

.section-heading {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.5fr);
  gap: 88px;
  margin-bottom: 62px;
}

.section-heading h2 {
  font-size: clamp(42px, 5.1vw, 74px);
  font-weight: 800;
}

.section-heading > p {
  padding-left: 24px;
  color: #91a8b1;
  border-left: 1px solid rgba(118, 223, 232, 0.32);
  font-size: 16px;
}

.services-grid {
  gap: 22px;
}

.service-card {
  min-height: 510px;
  padding: 28px;
  background: #0d202a;
  border-color: rgba(145, 208, 219, 0.16);
  border-radius: 22px 8px 22px 8px;
  box-shadow: 0 20px 56px rgba(0, 8, 14, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:nth-child(2) {
  border-radius: 8px 22px 8px 22px;
}

.service-card:hover {
  border-color: rgba(118, 223, 232, 0.55);
  box-shadow: 0 28px 70px rgba(0, 12, 20, 0.4);
  transform: translateY(-7px);
}

.service-card::after {
  background: linear-gradient(180deg, rgba(5, 15, 22, 0.04) 10%, rgba(7, 22, 30, 0.64) 55%, #081820 88%);
}

.service-card__image {
  opacity: 0.5;
  filter: saturate(0.85) contrast(1.03);
}

.service-card:hover .service-card__image {
  opacity: 0.68;
}

.service-card__number,
.service-card__price,
.service-card__link span {
  color: var(--gold-light);
}

.service-card__number {
  font-size: 12px;
}

.service-card__badge {
  color: #041216;
  background: #7ce4ec;
  border-radius: 999px;
  font-size: 10px;
}

.service-card h3 {
  font-size: 32px;
}

.service-card p {
  color: #a7bbc3;
  font-size: 15px;
}

.service-card__link {
  border-top-color: rgba(152, 213, 222, 0.18);
  font-size: 11px;
}

.price-snapshot {
  background: #0d202a;
  border-color: rgba(145, 208, 219, 0.17);
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
}

.price-snapshot__image {
  position: relative;
}

.price-snapshot__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 70%, #0d202a 100%);
  pointer-events: none;
}

.price-snapshot__image img {
  filter: saturate(0.85);
}

.price-snapshot__content > p,
.price-list-mini li span {
  color: #9db1b9;
}

.price-list-mini li {
  border-bottom-color: rgba(151, 211, 221, 0.14);
}

.price-list-mini li strong {
  color: var(--gold-light);
}

.comparison {
  border-color: rgba(151, 211, 221, 0.18);
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 20px 50px rgba(0, 7, 12, 0.28);
}

.comparison__label {
  padding: 8px 12px;
  background: rgba(4, 17, 24, 0.82);
  border-color: rgba(194, 233, 238, 0.22);
  border-radius: 999px;
  font-size: 10px;
}

.comparison__label--after {
  color: #031115;
  background: #79e3eb;
  border-color: #79e3eb;
}

.comparison__divider {
  background: #d8f9fb;
}

.comparison__handle {
  color: #031115;
  background: #79e3eb;
  border-color: #071820;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 12, 18, 0.35);
}

.comparison-card figcaption span {
  color: #8199a3;
  font-size: 11px;
}

.review-panel {
  grid-template-columns: 0.7fr 1.3fr;
  color: #081a22;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(135deg, #d9f4f5 0%, #b7e2e8 55%, #8dd2dc 100%);
  border: 1px solid rgba(226, 253, 255, 0.6);
  border-radius: 28px 8px 28px 8px;
  box-shadow: 0 26px 75px rgba(0, 19, 27, 0.28);
}

.review-panel::after {
  right: -50px;
  bottom: -130px;
  opacity: 0.055;
  filter: grayscale(1) contrast(1.4);
}

.review-score strong {
  color: #08232d;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.review-score span {
  margin-top: 18px;
  color: #24525f;
  font-size: 13px;
}

.review-copy h2 {
  font-size: clamp(38px, 4.7vw, 62px);
}

.review-copy p {
  color: rgba(6, 31, 39, 0.72);
}

.process-grid {
  gap: 16px;
  border-top: 0;
}

.process-card,
.process-card + .process-card {
  min-height: 310px;
  padding: 32px;
  background: rgba(13, 34, 45, 0.7);
  border: 1px solid rgba(145, 208, 219, 0.14);
  border-radius: 18px 6px 18px 6px;
}

.process-card:nth-child(2) {
  transform: translateY(18px);
}

.process-card__number {
  margin-bottom: 72px;
  color: var(--gold-light);
  font-size: 12px;
}

.process-card h3 {
  font-size: 26px;
}

.process-card p {
  color: #91a8b1;
  font-size: 15px;
}

.cta-section {
  border-top: 1px solid rgba(139, 206, 217, 0.12);
  background:
    linear-gradient(112deg, rgba(4, 17, 24, 0.96) 8%, rgba(5, 25, 34, 0.88) 55%, rgba(8, 57, 66, 0.74)),
    url("assets/after-cockpit.jpg") center / cover no-repeat;
}

.cta-section::after {
  width: min(620px, 82vw);
  height: min(620px, 82vw);
  opacity: 0.035;
  filter: grayscale(1) hue-rotate(120deg);
}

.cta-section h2 {
  font-size: clamp(46px, 6.5vw, 86px);
}

.cta-section p {
  color: #a7bcc4;
  font-size: 17px;
}

.subhero {
  min-height: 500px;
  background: #07141c;
  border-bottom: 1px solid rgba(147, 210, 220, 0.12);
}

.subhero__media {
  inset: 34px 3vw 34px 43%;
  overflow: hidden;
  border: 1px solid rgba(153, 215, 224, 0.16);
  border-radius: 26px 8px 26px 8px;
}

.subhero__media img {
  filter: saturate(0.82) contrast(1.04);
}

.subhero::before {
  background:
    linear-gradient(90deg, #06131b 0%, rgba(6, 19, 27, 0.92) 38%, rgba(6, 19, 27, 0.28) 76%),
    linear-gradient(0deg, #06131b 0%, transparent 66%);
}

.subhero__content {
  padding-block: 84px 68px;
}

.breadcrumb {
  color: #8299a2;
  font-size: 11px;
}

.subhero h1 {
  font-size: clamp(50px, 6.5vw, 86px);
}

.subhero__lead {
  color: #abc0c8;
  font-size: 18px;
}

.meta-chip {
  color: #c7d8de;
  background: rgba(118, 223, 232, 0.07);
  border-color: rgba(118, 223, 232, 0.2);
  border-radius: 999px;
  font-size: 11px;
}

.feature-list li,
.price-sidebar,
.pricing-card,
.google-score-card,
.google-info-card,
.timeline-step,
.contact-card,
.quick-message,
.faq-list details {
  background: #0d202a;
  border-color: rgba(145, 208, 219, 0.16);
  border-radius: 18px 6px 18px 6px;
}

.feature-list li {
  color: #b3c5cc;
  font-size: 14px;
}

.feature-list li::before,
.google-info-card__features li::before,
.timeline-step__number {
  color: #041216;
  background: var(--gold-light);
}

.info-box {
  color: #b7c9cf;
  background: rgba(37, 174, 190, 0.08);
  border-color: rgba(118, 223, 232, 0.25);
  border-radius: 14px;
  font-size: 14px;
}

.info-box__icon {
  color: var(--gold-light);
  border-color: rgba(118, 223, 232, 0.32);
  border-radius: 12px;
}

.price-sidebar {
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.price-sidebar__from strong,
.pricing-card__from,
.addon-card__price,
.contact-card__link {
  color: var(--gold-light);
}

.pricing-card {
  padding: 32px;
}

.pricing-card--featured {
  border-color: rgba(118, 223, 232, 0.55);
  box-shadow: 0 24px 65px rgba(20, 154, 170, 0.14);
}

.pricing-card__badge {
  color: #041216;
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 10px;
}

.addon-card {
  background: linear-gradient(90deg, rgba(37, 174, 190, 0.12), rgba(37, 174, 190, 0.03));
  border-color: rgba(118, 223, 232, 0.26);
  border-radius: 16px 6px 16px 6px;
}

.google-score-card strong {
  color: var(--gold-light);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.google-score-card span {
  color: #a9bec6;
  font-size: 13px;
}

.google-info-card__features li {
  color: #b8cbd2;
  font-size: 14px;
}

.timeline::before {
  background: linear-gradient(var(--gold), rgba(37, 174, 190, 0.08));
}

.timeline-step__number {
  border-color: #0d202a;
  border-radius: 13px;
}

.contact-card:hover {
  border-color: rgba(118, 223, 232, 0.5);
  box-shadow: 0 24px 60px rgba(0, 10, 17, 0.28);
}

.contact-card__icon {
  color: var(--gold-light);
  background: rgba(118, 223, 232, 0.08);
  border-color: rgba(118, 223, 232, 0.24);
  border-radius: 14px;
}

.site-footer {
  background: #040e14;
  border-top: 1px solid rgba(147, 210, 220, 0.12);
}

.floating-whatsapp {
  color: #041216;
  background: linear-gradient(135deg, #8cecf2, #2ab6c5);
  border: 1px solid rgba(190, 250, 252, 0.56);
  box-shadow: 0 14px 36px rgba(13, 151, 167, 0.34);
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 210px 1fr auto;
  }

  .nav-link,
  .nav-toggle {
    padding-inline: 8px;
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  .mobile-panel {
    inset: 114px 0 0;
    background: rgba(5, 17, 24, 0.98);
  }

  .hero__media {
    inset: 0;
    opacity: 1;
    border-radius: 0;
  }

  .hero__media::before {
    background:
      linear-gradient(90deg, rgba(5, 16, 24, 0.97), rgba(5, 16, 24, 0.5)),
      linear-gradient(0deg, #061018 0%, transparent 64%);
  }

  .hero__media img {
    object-position: 70% center;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 92px 62px;
  }

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

  .hero__detail {
    grid-template-columns: 1fr;
    border: 1px solid rgba(139, 207, 217, 0.18);
    text-align: center;
  }

  .hero__detail:last-child {
    border: 1px solid rgba(139, 207, 217, 0.18);
  }

  .hero__detail-icon {
    margin-inline: auto;
  }

  .section-heading,
  .review-panel,
  .service-layout,
  .google-card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .process-card:nth-child(2) {
    transform: none;
  }

  .subhero__media {
    inset: 20px 18px 20px 34%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .topbar {
    font-size: 11px;
  }

  .hero__media {
    inset: 0;
    opacity: 1;
    border-radius: 0;
  }

  .hero__media::before {
    background:
      linear-gradient(90deg, rgba(4, 15, 22, 0.97), rgba(4, 15, 22, 0.56)),
      linear-gradient(0deg, #061018 0%, rgba(6, 16, 24, 0.22) 72%);
  }

  .hero__media img {
    object-position: 72% center;
  }

  .hero__content {
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero__details {
    grid-template-columns: 1fr;
  }

  .hero__detail {
    grid-template-columns: 38px 1fr;
    text-align: left;
  }

  .hero__detail-icon {
    margin: 0;
  }

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

  .trustbar__item,
  .trustbar__item:nth-child(2),
  .trustbar__item:nth-child(-n + 2) {
    min-height: 92px;
    padding: 16px;
    border-color: rgba(151, 211, 221, 0.12);
  }

  .trustbar__item:nth-child(odd) {
    border-left: 0;
  }

  .trustbar__item strong {
    font-size: 16px;
  }

  .section-heading > p {
    padding-left: 16px;
  }

  .service-card {
    min-height: 430px;
  }

  .price-snapshot__image::after {
    background: linear-gradient(0deg, #0d202a 0%, transparent 28%);
  }

  .review-panel {
    gap: 34px;
  }

  .process-card,
  .process-card + .process-card {
    min-height: 0;
    padding: 28px;
    border: 1px solid rgba(145, 208, 219, 0.14);
  }

  .process-card__number {
    margin-bottom: 34px;
  }

  .subhero__media {
    inset: 14px;
    opacity: 0.5;
  }
}
