:root {
  --ink: #20242a;
  --muted: #626a73;
  --line: #dfe3e6;
  --paper: #ffffff;
  --soft: #f5f2ed;
  --warm: #c7a16d;
  --warm-dark: #99713d;
  --charcoal: #171a1d;
  --charcoal-2: #242a2f;
  --mist: #edf2f4;
  --green: #607263;
  --shadow: 0 18px 40px rgba(20, 23, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  hyphens: manual;
  overflow-wrap: break-word;
}

h1 {
  max-width: 650px;
  font-size: 3.42rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 16px 7vw;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(35, 38, 43, 0.08);
  box-shadow: 0 12px 32px rgba(25, 28, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 276px;
  min-width: 276px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: end;
}

.header-phone {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-weight: 650;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle .icon-menu-close {
  display: none;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 19px;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.1;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(25, 28, 32, 0.16);
}

.button small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
}

.button-dark {
  color: #fff;
  background: var(--charcoal);
}

.button-warm {
  color: var(--ink);
  background: #e9ddcd;
  border-color: #ddcfbd;
}

.button-light,
.button-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: #d4d9dd;
}

.button-outline {
  width: 100%;
  color: var(--warm-dark);
  border-color: #d8bd95;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 640px;
  padding-top: 96px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 246, 242, 0.96) 44%, rgba(232, 236, 236, 0.92) 100%),
    repeating-linear-gradient(90deg, rgba(32, 36, 42, 0.04) 0 1px, transparent 1px 86px);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: 64%;
  height: 100%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(199, 161, 109, 0.18) 45.2% 45.9%, transparent 46.1%),
    linear-gradient(135deg, transparent 0 58%, rgba(23, 26, 29, 0.1) 58.2% 58.7%, transparent 58.9%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
  min-height: 462px;
  padding-bottom: 28px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--warm-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-text {
  max-width: 610px;
  margin-top: 18px;
  color: #303741;
  font-size: 1.2rem;
}

.hero-signature {
  display: inline-grid;
  gap: 4px;
  padding: 12px 16px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(209, 215, 216, 0.95);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(32, 36, 42, 0.08);
}

.hero-signature span {
  color: var(--warm-dark);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-signature strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  color: #38414a;
  font-size: 0.92rem;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.trust-row .icon {
  color: var(--green);
}

.hero-card {
  width: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 224, 228, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card-kicker {
  margin-bottom: 10px;
  color: var(--warm-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.18;
}

.hero-visual {
  position: relative;
  min-height: 370px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  top: -22px;
  right: 34px;
  bottom: 34px;
  left: -22px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(153, 113, 61, 0.26);
  border-radius: 8px;
}

.hero-image {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: 67% center;
  border: 1px solid rgba(216, 224, 228, 0.9);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(23, 26, 29, 0.22);
}

.visual-tag,
.finish-score {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
}

.visual-tag {
  top: 24px;
  left: -18px;
  padding: 9px 13px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--charcoal);
  box-shadow: 0 14px 26px rgba(23, 26, 29, 0.18);
}

.finish-score {
  right: -18px;
  bottom: 28px;
  width: min(260px, 70%);
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(23, 26, 29, 0.96), rgba(36, 42, 47, 0.96));
  box-shadow: 0 18px 38px rgba(23, 26, 29, 0.28);
}

.finish-score span {
  display: block;
  margin-bottom: 5px;
  color: #d9b47d;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.finish-score strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.1;
}

.finish-score small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.proof-strip {
  color: #fff;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.proof-strip span {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 18px 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip span:first-child {
  padding-left: 0;
}

.proof-strip span:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip strong {
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.finish-lab {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f7 100%);
}

.finish-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.finish-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
}

.finish-copy p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}

.finish-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.finish-points span {
  padding: 9px 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  background: #eef2f0;
  border: 1px solid #dce4df;
  border-radius: 8px;
}

.before-after {
  --compare: 56%;
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(23, 26, 29, 0.18);
}

.compare-image,
.compare-after,
.compare-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-image,
.compare-after img {
  object-fit: cover;
  object-position: center;
}

.compare-before {
  filter: grayscale(0.72) contrast(0.88) brightness(0.56) blur(0.3px);
}

.compare-after {
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare)) 0 0);
}

.compare-after::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(100deg, transparent 0 46%, rgba(255, 255, 255, 0.26) 49%, transparent 54%);
  mix-blend-mode: screen;
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 7px 10px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(23, 26, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.compare-label-before {
  left: 18px;
}

.compare-label-after {
  right: 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.84);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare);
  z-index: 4;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(23, 26, 29, 0.16), 0 0 30px rgba(255, 255, 255, 0.66);
}

.compare-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--charcoal);
  content: "↔";
  background: #fff;
  border: 1px solid #dfe3e6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.service-card,
.price-card,
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 238px;
  padding: 24px 18px;
  text-align: center;
}

.service-icon,
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  color: var(--ink);
  background: #e9dfd3;
  border-radius: 50%;
}

.service-icon .icon,
.step-icon .icon {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0ede8 0%, #fbfaf7 46%, #f6efe6 100%);
}

.pricing-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 27%;
  background: linear-gradient(90deg, rgba(23, 26, 29, 0.45), rgba(255, 255, 255, 0.1)), url("assets/hero-car.jpg");
  background-position: 70% center;
  background-size: cover;
  opacity: 0.72;
}

.pricing-inner {
  position: relative;
  z-index: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(47, 42, 35, 0.06);
}

.price-card.featured {
  border-color: #cda879;
  box-shadow: 0 16px 40px rgba(153, 113, 61, 0.16);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 5px 13px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
  background: #c49a63;
  border-radius: 8px;
  transform: translateX(-50%);
}

.price-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.18rem;
}

.price-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.price {
  margin: 18px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px;
  color: #39414a;
  font-size: 0.86rem;
  list-style: none;
  text-align: left;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--warm-dark);
  content: "✓";
  font-weight: 800;
}

.price-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.process {
  padding: 0;
  border-top: 1px solid #ebe7df;
  border-bottom: 1px solid #ebe7df;
}

.process-layout {
  display: grid;
  grid-template-columns: 210px 1fr 310px;
  gap: 34px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.why-copy h2 {
  max-width: 210px;
  margin-bottom: 22px;
}

.why-copy h2::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 20px;
  content: "";
  background: var(--warm);
}

.why-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.step {
  position: relative;
  min-height: 210px;
  padding: 26px 18px 20px;
  text-align: center;
  border-color: transparent;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--charcoal);
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonial {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
}

.testimonial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.testimonial::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 26, 29, 0.05), rgba(23, 26, 29, 0.88));
}

.testimonial-content {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  text-align: center;
}

.stars {
  color: #d6aa62;
  font-size: 1rem;
}

.testimonial p {
  margin: 5px 0 13px;
  color: #fff;
  font-weight: 750;
  line-height: 1.35;
}

.testimonial strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  opacity: 0.86;
}

.contact {
  background: #fbfbfa;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: end;
}

.contact-copy .section-heading {
  margin: 0;
  text-align: left;
}

.contact-copy h2 {
  margin-bottom: 32px;
}

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

.contact-list a,
.contact-list div {
  display: flex;
  gap: 13px;
  min-width: 0;
  padding-right: 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.contact-list a:last-child,
.contact-list div:last-child {
  border-right: 0;
}

.contact-list .icon {
  width: 30px;
  height: 30px;
  color: var(--ink);
}

.contact-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.9rem;
}

.contact-list span {
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.map-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 49%, rgba(210, 217, 216, 0.7) 50%, rgba(255, 255, 255, 0.2) 51%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2) 49%, rgba(210, 217, 216, 0.7) 50%, rgba(255, 255, 255, 0.2) 51%),
    #e8eceb;
  background-size: 86px 86px, 72px 72px, auto;
  border-radius: 8px;
}

.map-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(28deg, transparent 39%, rgba(122, 151, 108, 0.62) 40%, rgba(122, 151, 108, 0.62) 52%, transparent 53%),
    linear-gradient(-18deg, transparent 38%, rgba(255, 255, 255, 0.78) 39%, rgba(255, 255, 255, 0.78) 45%, transparent 46%);
}

.map-lines {
  position: absolute;
  inset: -30px;
  background:
    linear-gradient(112deg, transparent 43%, rgba(190, 197, 199, 0.9) 44%, rgba(190, 197, 199, 0.9) 47%, transparent 48%),
    linear-gradient(158deg, transparent 52%, rgba(190, 197, 199, 0.82) 53%, rgba(190, 197, 199, 0.82) 56%, transparent 57%);
}

.map-marker {
  position: absolute;
  top: 55px;
  left: 54%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: #2a3036;
  border-radius: 50%;
  box-shadow: 0 15px 28px rgba(23, 26, 29, 0.22);
}

.map-marker .icon {
  width: 27px;
  height: 27px;
}

.map-card .button {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  width: auto;
  max-width: calc(100% - 48px);
  min-height: 46px;
}

.site-footer {
  padding: 24px 0;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 24px;
  }

  .site-nav {
    gap: 24px;
  }

  .header-phone {
    display: none;
  }

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

  .hero-inner,
  .finish-layout {
    gap: 36px;
  }

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

  .why-copy {
    max-width: 620px;
  }

  .why-copy h2 {
    max-width: 100%;
  }

  .testimonial {
    min-height: 280px;
  }

  .contact-layout,
  .contact-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 184px;
    min-width: 184px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid #eef0f1;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  body.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle .icon-menu-open {
    display: none;
  }

  body.nav-open .nav-toggle .icon-menu-close {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
  }

  .hero::after {
    display: none;
  }

  .hero-signature {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 34px;
  }

  .hero-visual::before {
    top: -12px;
    right: 12px;
    bottom: 18px;
    left: -12px;
  }

  .hero-image {
    height: 330px;
    margin-top: 0;
    object-position: 72% center;
  }

  .visual-tag {
    top: 14px;
    left: 14px;
  }

  .finish-score {
    right: 14px;
    bottom: 14px;
    width: min(260px, calc(100% - 28px));
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding-bottom: 34px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .hero-buttons {
    display: grid;
    gap: 12px;
  }

  .hero-buttons .button {
    justify-content: flex-start;
  }

  .trust-row {
    gap: 14px;
  }

  .hero-card {
    margin-top: 24px;
  }

  .proof-strip-inner,
  .finish-layout {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 64px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .before-after {
    min-height: 330px;
  }

  .section {
    padding: 56px 0;
  }

  .service-grid,
  .price-grid,
  .steps,
  .contact-layout,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .pricing-image {
    display: none;
  }

  .price-grid {
    max-width: 460px;
  }

  .process-layout {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-list a,
  .contact-list div {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-list div:last-child {
    border-bottom: 0;
  }

  .map-card {
    min-height: 240px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.14rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.74rem;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 166px;
    min-width: 166px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .trust-row {
    display: none;
  }

  .hero-visual {
    margin-top: 22px;
  }

  .hero-image {
    height: 260px;
  }

  .finish-score {
    padding: 14px;
  }

  .finish-score strong {
    font-size: 1.05rem;
  }

  .service-card {
    min-height: 0;
  }

  .price-card {
    min-height: 0;
  }

  .before-after {
    min-height: 260px;
  }

  .compare-divider::after {
    width: 38px;
    height: 38px;
  }

  .footer-inner {
    display: grid;
  }
}

/* Premium studio direction inspired by the reference page */
:root {
  --ink: #f7fbff;
  --muted: #b6c2cf;
  --line: rgba(255, 255, 255, 0.12);
  --paper: rgba(10, 18, 29, 0.86);
  --soft: #07111d;
  --warm: #d6ad6d;
  --warm-dark: #f0d59f;
  --charcoal: #060b12;
  --charcoal-2: #101b29;
  --mist: #132437;
  --green: #34d399;
  --blue: #1679ff;
  --blue-soft: rgba(22, 121, 255, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(22, 121, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #03070d 0%, #07111d 45%, #03070d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 78%, transparent);
}

h1,
h2,
h3 {
  color: var(--ink);
}

.site-header {
  min-height: 92px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(3, 7, 13, 0.9), rgba(3, 7, 13, 0.72));
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 13, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.32);
}

.brand {
  filter: drop-shadow(0 10px 24px rgba(22, 121, 255, 0.16));
}

.site-nav {
  color: rgba(247, 251, 255, 0.86);
}

.site-nav a::after {
  background: var(--blue);
  box-shadow: 0 0 20px rgba(22, 121, 255, 0.52);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: #75b4ff;
}

.header-phone {
  color: rgba(247, 251, 255, 0.92);
}

.nav-toggle {
  color: var(--ink);
  background: rgba(10, 18, 29, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
}

.button {
  border-radius: 8px;
}

.button-dark {
  color: #fff;
  background: linear-gradient(135deg, #1b84ff 0%, #005ce5 100%);
  box-shadow: 0 18px 44px rgba(0, 98, 255, 0.28);
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 0 22px 60px rgba(0, 98, 255, 0.42);
}

.button-warm {
  color: var(--ink);
  background: rgba(12, 22, 34, 0.84);
  border-color: rgba(214, 173, 109, 0.44);
}

.button-light,
.button-outline {
  color: var(--ink);
  background: rgba(8, 17, 27, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-outline {
  color: #75b4ff;
  border-color: rgba(22, 121, 255, 0.42);
}

.hero {
  min-height: 735px;
  padding-top: 112px;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.98) 0%, rgba(5, 13, 23, 0.94) 44%, rgba(5, 14, 25, 0.78) 100%),
    linear-gradient(135deg, transparent 0 48%, rgba(22, 121, 255, 0.16) 48.2% 48.6%, transparent 48.8% 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
}

.hero::after {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(214, 173, 109, 0.12) 42.2% 42.6%, transparent 42.8%),
    linear-gradient(135deg, transparent 0 60%, rgba(22, 121, 255, 0.18) 60.2% 60.7%, transparent 60.9%);
}

.hero-inner {
  min-height: 570px;
}

.eyebrow {
  color: #4ea0ff;
}

h1 {
  max-width: 690px;
  font-size: 3.72rem;
}

.hero-text {
  color: rgba(226, 235, 247, 0.82);
}

.hero-signature {
  color: var(--ink);
  background: rgba(10, 18, 29, 0.72);
  border-color: rgba(255, 255, 255, 0.13);
  border-left-color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 54px rgba(0, 0, 0, 0.24);
}

.hero-signature span {
  color: var(--warm);
}

.hero-signature strong {
  color: var(--ink);
}

.trust-row {
  color: rgba(247, 251, 255, 0.86);
}

.trust-row .icon {
  color: #75b4ff;
}

.hero-visual::before {
  border-color: rgba(22, 121, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(214, 173, 109, 0.08);
}

.hero-image {
  filter: saturate(1.05) contrast(1.08) brightness(0.86);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 36px 86px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(22, 121, 255, 0.08);
}

.visual-tag {
  background: rgba(4, 10, 18, 0.92);
  border: 1px solid rgba(22, 121, 255, 0.36);
  box-shadow: 0 16px 42px rgba(0, 98, 255, 0.2);
}

.finish-score {
  background: linear-gradient(180deg, rgba(7, 15, 25, 0.94), rgba(3, 7, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.finish-score span {
  color: var(--blue);
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -20px;
  background: transparent;
  border: 0;
}

.proof-strip-inner {
  gap: 14px;
}

.proof-strip span {
  min-height: 92px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(12, 24, 37, 0.88), rgba(7, 15, 25, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.proof-strip span:first-child,
.proof-strip span:last-child {
  padding-right: 22px;
  padding-left: 22px;
}

.proof-strip strong {
  color: var(--blue);
}

.section {
  background: transparent;
}

.section-heading h2,
.finish-copy h2,
.why-copy h2,
.contact-copy h2 {
  color: var(--ink);
}

.section-heading,
.finish-copy p:not(.eyebrow),
.why-copy p:not(.eyebrow),
.contact-list span,
.service-card p,
.step p,
.price-subtitle,
.price-note {
  color: rgba(214, 226, 241, 0.72);
}

.finish-lab {
  background: transparent;
}

.finish-points span {
  color: #dbeafe;
  background: rgba(22, 121, 255, 0.1);
  border-color: rgba(22, 121, 255, 0.28);
}

.before-after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.compare-divider,
.compare-divider::after {
  box-shadow: 0 0 34px rgba(22, 121, 255, 0.42);
}

.services {
  background: linear-gradient(180deg, rgba(3, 7, 13, 0), rgba(7, 17, 29, 0.62));
}

.service-card,
.price-card,
.step {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(14, 29, 45, 0.86), rgba(7, 16, 26, 0.95));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 56px rgba(0, 0, 0, 0.24);
}

.service-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 121, 255, 0.48);
  box-shadow: 0 26px 68px rgba(0, 98, 255, 0.14);
}

.service-card h3,
.price-card h3,
.step h3,
.contact-list strong {
  color: var(--ink);
}

.service-icon,
.step-icon {
  color: #75b4ff;
  background: rgba(22, 121, 255, 0.1);
  border: 1px solid rgba(22, 121, 255, 0.3);
}

.pricing {
  background:
    linear-gradient(90deg, rgba(4, 10, 18, 0.92) 0%, rgba(7, 17, 29, 0.88) 52%, rgba(4, 10, 18, 0.96) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-image {
  opacity: 0.28;
  filter: saturate(0.85) contrast(1.14) brightness(0.64);
}

.price-card.featured {
  border-color: rgba(22, 121, 255, 0.88);
  box-shadow: 0 0 0 1px rgba(22, 121, 255, 0.24), 0 30px 80px rgba(0, 98, 255, 0.2);
}

.badge {
  background: var(--blue);
}

.price {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.price-card ul {
  color: rgba(226, 235, 247, 0.82);
}

.price-card li::before {
  color: #75b4ff;
}

.process {
  background: rgba(3, 7, 13, 0.66);
  border-color: rgba(255, 255, 255, 0.08);
}

.why-copy h2::after {
  background: var(--blue);
  box-shadow: 0 0 20px rgba(22, 121, 255, 0.42);
}

.step-number {
  background: var(--blue);
  box-shadow: 0 0 28px rgba(22, 121, 255, 0.34);
}

.testimonial {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact {
  background: linear-gradient(180deg, rgba(3, 7, 13, 0), rgba(0, 44, 84, 0.18));
}

.contact-list a,
.contact-list div {
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-list .icon {
  color: #75b4ff;
}

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

.contact-list a,
.contact-list div {
  padding: 16px;
  background: rgba(7, 16, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.contact-list span {
  overflow-wrap: anywhere;
}

.map-card {
  background:
    linear-gradient(35deg, transparent 0 28%, rgba(255, 255, 255, 0.08) 28.2% 28.8%, transparent 29% 100%),
    linear-gradient(-38deg, transparent 0 58%, rgba(255, 255, 255, 0.07) 58.2% 58.8%, transparent 59% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0a1524;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.map-card::before {
  background:
    linear-gradient(28deg, transparent 39%, rgba(22, 121, 255, 0.22) 40%, rgba(22, 121, 255, 0.22) 52%, transparent 53%),
    linear-gradient(-18deg, transparent 38%, rgba(255, 255, 255, 0.1) 39%, rgba(255, 255, 255, 0.1) 45%, transparent 46%);
}

.map-marker {
  background: var(--blue);
  box-shadow: 0 0 44px rgba(0, 98, 255, 0.54);
}

.site-footer {
  color: rgba(214, 226, 241, 0.66);
  background: #03070d;
  border-color: rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #1ed760;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(30, 215, 96, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 62px rgba(30, 215, 96, 0.48);
}

.whatsapp-float .icon {
  width: 27px;
  height: 27px;
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 78px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.05rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
    background: rgba(3, 7, 13, 0.94);
  }

  .site-nav {
    background: rgba(7, 15, 25, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .site-nav a {
    border-bottom-color: rgba(255, 255, 255, 0.09);
  }

  .hero {
    padding-top: 98px;
  }

  .hero-image {
    filter: saturate(1.05) contrast(1.08) brightness(0.78);
  }

  .proof-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .proof-strip-inner {
    gap: 10px;
  }

  .proof-strip span {
    min-height: 68px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.28rem;
  }

  .brand {
    width: 176px;
    min-width: 176px;
  }

  .hero-signature {
    background: rgba(10, 18, 29, 0.9);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Final content overrides for AMC service request cards */
.price-card .price {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 1.45vw, 1.45rem);
  font-weight: 850;
  line-height: 1.18;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

.contact-list a,
.contact-list div {
  padding: 16px;
  background: rgba(7, 16, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.contact-list span {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .contact-list {
    grid-template-columns: 1fr;
  }
}
