:root {
  --ink: #171a20;
  --muted: #5e626b;
  --line: #e8e4dd;
  --gold: #a17b37;
  --gold-dark: #806125;
  --soft: #f7f5f1;
  --dark: #14181d;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(23, 26, 32, 0.13);
  --radius: 8px;
  --container: 1200px;
  --hero-image: url("assets/hero-volvo-yellow.webp");
  --bmw-card-image: url("assets/car-bmw-x3.png");
  --audi-card-image: url("assets/car-audi-a4.png");
  --showroom-image: url("assets/showroom-audi.png");
  --review-avatar-image: url("assets/design-reference.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(232, 228, 221, 0.7);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(222, 219, 214, 0.95);
  box-shadow: 0 12px 34px rgba(23, 26, 32, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 70px;
  height: 56px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 50px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-bottom: 8px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 27px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #b89149);
  box-shadow: 0 14px 30px rgba(161, 123, 55, 0.24);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #b58c44, var(--gold-dark));
  box-shadow: 0 18px 36px rgba(161, 123, 55, 0.3);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 21px;
  font-size: 11px;
}

.language-switcher {
  position: relative;
  justify-self: end;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(232, 228, 221, 0.9);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(23, 26, 32, 0.08);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: rgba(161, 123, 55, 0.34);
  box-shadow: 0 18px 38px rgba(23, 26, 32, 0.12);
  transform: translateY(-1px);
}

.language-flag {
  font-size: 18px;
  line-height: 1;
}

.language-chevron {
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 25;
  min-width: 204px;
  overflow: hidden;
  border: 1px solid rgba(232, 228, 221, 0.96);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 58px rgba(23, 26, 32, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu::before {
  position: absolute;
  top: -8px;
  right: 40px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.98);
  content: "";
  transform: rotate(45deg);
}

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

.language-menu button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 62px;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(232, 228, 221, 0.84);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 760;
  text-align: left;
}

.language-menu button:last-child {
  border-bottom: 0;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: #fbfaf8;
}

.language-check {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
}

.language-menu button[aria-checked="true"] .language-check {
  opacity: 1;
}

.detailing-header-button {
  min-height: 42px;
  padding: 0 21px;
  font-size: 11px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 150px max(48px, calc((100vw - var(--container)) / 2)) 56px;
  background: linear-gradient(90deg, #fff 0%, #fff 39%, #f3f1ed 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: min(54vw, 760px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.58) 28%, rgba(255, 255, 255, 0.04) 66%),
    var(--hero-image) center center / contain no-repeat;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.13;
}

.hero h1 span {
  color: var(--gold);
  font-weight: 760;
}

.hero p {
  max-width: 420px;
  margin: 28px 0 28px;
  color: #242932;
  font-size: 16px;
  line-height: 1.72;
}

.trust-list {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(20px, 2.1vw, 30px);
  width: min(760px, calc(100vw - 96px));
  padding: 42px 0 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.trust-list li,
.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-list li {
  white-space: nowrap;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-list svg {
  color: var(--gold);
  font-size: 22px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px 44px 32px;
  border-bottom: 1px solid var(--line);
}

.benefits article {
  display: grid;
  justify-items: center;
  min-height: 132px;
  padding: 0 36px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits svg,
.process svg {
  color: var(--gold);
  font-size: 48px;
}

.benefits h2,
.benefits p,
.process h3,
.process p {
  margin: 0;
}

.benefits h2 {
  margin-top: 10px;
  font-size: 18px;
}

.benefits p {
  max-width: 220px;
  color: #23262d;
  font-size: 13px;
}

.section-block,
.process {
  padding: 34px max(40px, calc((100vw - var(--container)) / 2));
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading h2,
.search-section h2 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 32px);
  line-height: 1.15;
}

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

.car-card {
  display: grid;
  grid-template-columns: 43% 1fr;
  min-height: 0;
  height: 224px;
  overflow: hidden;
  border: 1px solid #dedbd6;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(23, 26, 32, 0.06);
}

.car-photo {
  min-height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.car-photo-x3 {
  background-image: url("assets/comparison-q5-pair1.jpg");
  background-size: 205% auto;
  background-position: left center;
}

.car-photo-a4 {
  background-image: url("assets/comparison-q5-pair1.jpg");
  background-size: 205% auto;
  background-position: right center;
}

.car-info {
  padding: 24px 26px;
}

.car-info h3 {
  margin: 0 0 20px;
  font-size: 19px;
}

.market-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.market-columns div {
  display: grid;
  gap: 9px;
  align-content: start;
}

.market-columns strong {
  color: var(--gold);
  font-size: 14px;
}

.market-columns b {
  font-size: 20px;
}

.market-columns span {
  font-size: 11px;
  white-space: nowrap;
}

mark {
  color: var(--gold);
  background: transparent;
}

.button-center {
  display: flex;
  width: min(250px, 100%);
  margin: 22px auto 0;
}

.comparison {
  overflow: visible;
}

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

.comparison-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comparison-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
}

.comparison-heading p {
  margin: 14px 0 0;
  color: #677187;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
}

.comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  align-items: stretch;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid rgba(222, 219, 214, 0.84);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(23, 26, 32, 0.08);
}

.comparison-card header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 90px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.88);
}

.comparison-card h3,
.comparison-card p {
  margin: 0;
}

.comparison-card h3 {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
}

.comparison-card header p {
  margin-top: 5px;
  color: #667189;
  font-size: 15px;
  line-height: 1.35;
}

.comparison-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.comparison-icon.is-positive {
  background: linear-gradient(135deg, #d9b25d, var(--gold));
}

.comparison-icon.is-negative {
  background: #bfc4cc;
}

.comparison-photo {
  position: relative;
  min-height: 310px;
  background-color: #f6f5f2;
  background-repeat: no-repeat;
  background-size: min(92%, 760px) auto;
  background-position: center;
}

.comparison-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(23, 26, 32, 0.08));
  content: "";
  pointer-events: none;
}

.comparison-photo-germany {
  background-image:
    linear-gradient(180deg, rgba(22, 24, 28, 0.08), rgba(22, 24, 28, 0.16)),
    url("assets/comparison-q5-pair1.jpg");
  background-size: cover, 205% auto;
  background-position: center, left center;
}

.comparison-photo-portugal {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    url("assets/comparison-q5-pair1.jpg");
  background-size: cover, 205% auto;
  background-position: center, right center;
}

.comparison-photo span {
  display: none;
}

.comparison-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 0 24px 18px;
  margin: 0;
  list-style: none;
}

.comparison-features li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 45px;
  border-bottom: 1px solid rgba(222, 219, 214, 0.72);
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.comparison-features mark,
.comparison-features span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: transparent;
  font-size: 18px;
  font-weight: 900;
}

.comparison-features.is-muted span {
  color: #fff;
  background: #c4c9d1;
  font-size: 15px;
}

.comparison-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(23, 26, 32, 0.12);
  font-size: 26px;
  font-weight: 950;
  transform: translate(-50%, -22%);
}

.comparison-button {
  display: flex;
  width: min(390px, 100%);
  min-height: 60px;
  margin: 34px auto 0;
}

.process {
  background: var(--soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -30px;
  color: #a9a39a;
  content: "→";
  font-size: 38px;
  font-weight: 300;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #eee9e0;
}

.process h3 {
  font-size: 14px;
}

.process p {
  max-width: 180px;
  font-size: 12px;
}

.search-section {
  background: #fff;
}

.form-panel {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: 42px 0;
}

.vehicle-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 16px;
  margin-top: 22px;
  border-radius: 8px;
  transition: box-shadow 220ms ease, background 220ms ease;
}

.vehicle-form.is-highlighted {
  background: rgba(161, 123, 55, 0.035);
  box-shadow: 0 0 0 8px rgba(161, 123, 55, 0.08), 0 18px 48px rgba(161, 123, 55, 0.13);
}

.quote-panel > label {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(222, 219, 214, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #22262e;
  font-size: 11px;
  font-weight: 820;
  box-shadow: 0 10px 28px rgba(23, 26, 32, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.quote-panel > label:focus-within {
  border-color: rgba(161, 123, 55, 0.42);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 26, 32, 0.08);
  transform: translateY(-1px);
}

.field-title {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 15px;
  color: inherit;
}

.field-title small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: lowercase;
}

.quote-panel > label:nth-of-type(1) {
  grid-column: 1 / span 3;
}

.quote-panel > label:nth-of-type(2) {
  grid-column: 4 / span 3;
}

.quote-panel > label:nth-of-type(3) {
  grid-column: 1 / span 2;
}

.quote-panel > label:nth-of-type(4) {
  grid-column: 3 / span 2;
}

.example-link-field {
  grid-column: 1 / -1;
}

.vehicle-form label span {
  color: var(--muted);
  font-weight: 650;
}

.quote-panel > label .field-title {
  color: #22262e;
  font-weight: 820;
}

.quote-panel > label:focus-within .field-title {
  color: var(--gold-dark);
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="month"],
select {
  width: 100%;
  height: 50px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid #dedbd4;
  border-radius: 8px;
  outline: 0;
  background: linear-gradient(180deg, #fff, #fdfcf9);
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

input::placeholder {
  color: #7b7e85;
  font-weight: 650;
}

input:focus-visible {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(161, 123, 55, 0.14), 0 12px 30px rgba(23, 26, 32, 0.08);
}

input.is-invalid {
  border-color: #b94a48;
  background: #fffafa;
}

.calculator-panel {
  display: grid;
  gap: 20px;
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px solid #dedbd6;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 246, 241, 0.94)),
    #fbfaf7;
  box-shadow: 0 22px 70px rgba(23, 26, 32, 0.08);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.calculator-inputs,
.calculator-summary,
.quote-panel {
  border: 1px solid rgba(222, 219, 214, 0.86);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(23, 26, 32, 0.055);
}

.calculator-inputs {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.step-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.step-heading > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #c7a255);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(161, 123, 55, 0.22);
}

.step-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.15;
}

.step-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.calculator-intro {
  display: grid;
  gap: 7px;
}

.calculator-intro span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.calculator-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.calculator-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.calculator-grid label {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(222, 219, 214, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #22262e;
  font-size: 11px;
  font-weight: 820;
  box-shadow: 0 10px 28px rgba(23, 26, 32, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.quote-panel > label:focus-within,
.calculator-grid label:focus-within {
  color: var(--gold-dark);
}

.calculator-grid label:focus-within {
  border-color: rgba(161, 123, 55, 0.42);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 26, 32, 0.08);
  transform: translateY(-1px);
}

.calculator-grid input,
.calculator-grid select {
  height: 46px;
  border-color: transparent;
  background: #f7f5f1;
}

.quote-panel > label > input {
  height: 46px;
  border-color: transparent;
  background: #f7f5f1;
}

.calculator-grid label:focus-within input,
.calculator-grid label:focus-within select {
  background: #fff;
}

.quote-panel > label:focus-within input {
  background: #fff;
}

.calculator-summary {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(161, 123, 55, 0.09), transparent 30%),
    #fff;
  box-shadow: 0 18px 42px rgba(23, 26, 32, 0.07);
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
}

.summary-header > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(82, 190, 128, 0.2);
  border-radius: 999px;
  color: #6dd48b;
  background: rgba(82, 190, 128, 0.12);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.calculator-result {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.total-display {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 10px 0 18px;
}

.calculator-result span,
.calculator-result dt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6a6f79;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.calculator-result strong {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  white-space: nowrap;
}

.total-display p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.breakdown-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 43%, transparent 44%),
    conic-gradient(#d9aa3f 0 58%, #111723 58% 69%, #969ba4 69% 86%, #e8e8ea 86% 100%);
  box-shadow: 0 18px 40px rgba(217, 170, 63, 0.18);
}

.breakdown-ring::after {
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(222, 219, 214, 0.74);
  border-radius: 50%;
  content: "";
}

.breakdown-ring span {
  z-index: 1;
  color: #828690;
  font-size: 10px;
  text-transform: none;
}

.calculator-result h4 {
  margin: 6px 0 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(222, 219, 214, 0.78);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.calculator-result dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.calculator-result dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(222, 219, 214, 0.64);
  border-radius: 0;
  background: transparent;
}

.calculator-result dl div:last-child {
  border-bottom: 0;
}

.info-tooltip {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(226, 193, 120, 0.5);
  border-radius: 50%;
  color: #e2c178;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
  cursor: help;
}

.info-tooltip::after {
  position: absolute;
  right: 50%;
  bottom: calc(100% + 9px);
  z-index: 4;
  width: max-content;
  max-width: 230px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--white);
  background: #0f1217;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  content: attr(aria-label);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translate(50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.info-tooltip:hover::after,
.info-tooltip:focus-visible::after {
  opacity: 1;
  transform: translate(50%, 0);
}

.calculator-result dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

.breakdown-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.dot-gold {
  background: #d9aa3f;
}

.dot-ink {
  background: #111723;
}

.dot-soft {
  background: #e8e1d3;
}

.final-cost-box {
  display: grid;
  gap: 0;
  margin-top: 8px;
  border: 1px solid rgba(222, 219, 214, 0.78);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfaf7);
  overflow: hidden;
}

.final-cost-box > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.final-cost-box > div + div {
  border-top: 1px solid rgba(222, 219, 214, 0.72);
}

.final-cost-box span {
  color: #343941;
  font-size: 14px;
  font-weight: 750;
  text-transform: none;
}

.final-cost-box strong {
  color: var(--gold-dark);
  font-size: clamp(22px, 2vw, 30px);
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
}

.calculator-summary .form-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: none;
  margin: 8px 0 0;
  padding: 18px;
  border: 1px solid rgba(161, 123, 55, 0.18);
  background: linear-gradient(135deg, rgba(161, 123, 55, 0.1), rgba(255, 255, 255, 0.86));
  box-shadow: 0 16px 42px rgba(161, 123, 55, 0.08);
}

.calculator-summary .form-offer .promo-kicker {
  white-space: nowrap;
}

.calculator-summary .form-offer h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.12;
}

.calculator-summary .form-offer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.quote-step-button {
  min-width: 220px;
}

.quote-panel {
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
  padding: 22px;
  background: #fff;
}

.calculator-panel.is-quote-step .calculator-intro,
.calculator-panel.is-quote-step .calculator-layout {
  display: none;
}

.calculator-panel.is-quote-step .quote-panel {
  display: grid;
}

.quote-heading {
  grid-column: 1 / -1;
}

.quote-panel > .privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: flex-start;
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid rgba(222, 219, 214, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #4a4f58;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(23, 26, 32, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.privacy-consent p {
  margin: 0;
}

.privacy-consent label {
  cursor: pointer;
}

.quote-panel > .privacy-consent:has(input:focus-visible) {
  border-color: rgba(161, 123, 55, 0.42);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 26, 32, 0.08);
  transform: translateY(-1px);
}

.quote-panel > .privacy-consent a {
  display: inline;
  color: var(--gold-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-back-button {
  justify-self: center;
  grid-column: 1 / -1;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.step-progress {
  display: grid;
  grid-template-columns: 1fr minmax(40px, 130px) 1fr;
  gap: 18px;
  align-items: center;
  justify-self: center;
  width: min(100%, 520px);
  margin: 4px auto 0;
}

.step-progress i {
  height: 1px;
  background: rgba(181, 184, 190, 0.42);
}

.step-progress-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #8c9099;
  text-align: left;
  cursor: pointer;
}

.step-progress-item span {
  display: inline-grid;
  place-items: center;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9e9ea;
  color: #6c7079;
  font-size: 13px;
  font-weight: 900;
}

.step-progress-item strong {
  color: #5a5f68;
  font-size: 12px;
  line-height: 1.1;
}

.step-progress-item small {
  color: #8c9099;
  font-size: 11px;
  line-height: 1.2;
}

.step-progress-item.is-active span {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), #c7a255);
}

.step-progress-item.is-active strong {
  color: var(--ink);
}

.promo-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 26px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: rgba(18, 22, 27, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(161, 123, 55, 0.44);
  border-radius: 999px;
  color: #e2c178;
  background: rgba(161, 123, 55, 0.16);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-banner h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}

.promo-banner p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.review {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 26px;
  align-items: start;
}

.avatar {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: var(--review-avatar-image);
  background-size: 863px auto;
  background-position: -52px -1585px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.stars {
  color: #c49c4c;
  font-size: 20px;
  letter-spacing: 0.12em;
}

blockquote {
  max-width: 430px;
  margin: 14px 0 18px;
  color: #f4f3ef;
  font-size: 13px;
  line-height: 1.75;
}

cite {
  font-style: normal;
  font-weight: 800;
}

.company-location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 54px max(42px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 26% 20%, rgba(161, 123, 55, 0.12), transparent 30%),
    linear-gradient(180deg, #15191f, #11151a);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-details h2 {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.1;
}

.company-details dl {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  gap: 16px;
  margin: 0;
}

.company-details div {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.company-details div:nth-child(2) {
  grid-column: 1 / -1;
}

.company-details dt,
.company-details dd {
  margin: 0;
}

.company-details dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-details dd {
  color: var(--white);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
}

.company-details a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(161, 123, 55, 0.9);
  text-underline-offset: 5px;
}

.company-details a:hover,
.company-details a:focus-visible {
  color: #e2c178;
}

.map-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0d1116;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.map-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 24, 29, 0.08), rgba(20, 24, 29, 0.02) 42%, rgba(20, 24, 29, 0.18)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  content: "";
}

.map-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 54% 46%, rgba(161, 123, 55, 0.26), transparent 0 5px, rgba(161, 123, 55, 0.1) 6px 34px, transparent 35px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 40%),
    #0d1116;
}

.map-road {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transform-origin: center;
}

.map-road-a {
  top: 38%;
  left: -12%;
  width: 128%;
  transform: rotate(-18deg);
}

.map-road-b {
  top: 67%;
  left: 3%;
  width: 92%;
  transform: rotate(28deg);
}

.map-road-c {
  top: 18%;
  left: 42%;
  width: 74%;
  transform: rotate(74deg);
}

.map-pin {
  position: absolute;
  top: 48%;
  left: 54%;
  width: 24px;
  height: 24px;
  border: 3px solid #d7ad59;
  border-radius: 50% 50% 50% 0;
  background: rgba(161, 123, 55, 0.28);
  box-shadow: 0 0 0 10px rgba(161, 123, 55, 0.12), 0 18px 34px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7ad59;
  content: "";
  transform: translate(-50%, -50%);
}

.map-label {
  position: absolute;
  top: 22px;
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  background: rgba(13, 17, 22, 0.82);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.map-panel iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
  opacity: 0.72;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.65) contrast(0.9) brightness(0.78);
}

.map-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(215, 173, 89, 0.42);
  border-radius: 6px;
  color: var(--white);
  background: rgba(161, 123, 55, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.map-action:hover,
.map-action:focus-visible {
  background: var(--gold);
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-height: 118px;
  padding: 18px max(42px, calc((100vw - var(--container)) / 2)) 22px;
  color: var(--white);
  background: #14181d;
  border-top: 0;
}

.footer::before {
  position: absolute;
  top: 0;
  right: max(42px, calc((100vw - var(--container)) / 2));
  left: max(42px, calc((100vw - var(--container)) / 2));
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(161, 123, 55, 0.45) 22%, rgba(255, 255, 255, 0.09) 52%, rgba(255, 255, 255, 0.04));
  content: "";
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-brand {
  width: 96px;
  height: 76px;
}

.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.social-links svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.9;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(161, 123, 55, 0.58);
  color: var(--white);
  background: rgba(161, 123, 55, 0.18);
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

.flag-pt {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 19px;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(90deg, #046a38 0 40%, #da291c 40% 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.flag-pt::after {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 8px;
  height: 8px;
  border: 1px solid #f7d44a;
  border-radius: 50%;
  background: rgba(247, 212, 74, 0.26);
  content: "";
  transform: translate(-50%, -50%);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 48px));
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--white);
  background: #171a20;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.privacy-page {
  min-height: 100vh;
  background: #f7f5f1;
}

.privacy-document {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.privacy-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.privacy-logo {
  margin-bottom: 0;
}

.privacy-topbar .language-switcher {
  flex: 0 0 auto;
}

.privacy-topbar .language-menu {
  right: 0;
  left: auto;
}

.privacy-topbar .language-menu::before {
  right: 32px;
  left: auto;
}

.privacy-document h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
}

.privacy-updated {
  margin: 10px 0 30px;
  color: var(--muted);
  font-weight: 700;
}

.privacy-document section {
  padding: 24px 0;
  border-top: 1px solid #dedbd6;
}

.privacy-document h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.privacy-document p {
  margin: 0;
  color: #333842;
  font-size: 16px;
  line-height: 1.75;
}

.controller-details {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid #dedbd6;
  border-radius: 8px;
  background: #fff;
}

.controller-details div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
}

.controller-details dt,
.controller-details dd {
  margin: 0;
}

.controller-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.controller-details dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.privacy-document a:not(.button) {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-back {
  margin-top: 12px;
}

@media (max-width: 620px) {
  .privacy-topbar {
    align-items: center;
  }

  .privacy-topbar .language-toggle {
    min-height: 48px;
    padding: 10px 14px;
  }
}

.reviews-page {
  background: #11151a;
}

.reviews-main {
  min-height: 100vh;
  padding-top: 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(161, 123, 55, 0.16), transparent 30%),
    linear-gradient(180deg, #15191f, #101419 58%, #14181d);
}

.reviews-hero {
  width: min(var(--container), calc(100% - 84px));
  margin: 0 auto;
  padding: 74px 0 34px;
}

.reviews-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
}

.reviews-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.reviews-list {
  display: grid;
  gap: 18px;
  width: min(var(--container), calc(100% - 84px));
  margin: 0 auto;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
  min-height: 290px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.review-card > div:last-child {
  display: grid;
  align-content: center;
  padding: 26px 24px 26px 0;
}

.review-car-photo {
  min-height: 250px;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.review-card h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.18;
}

.review-card blockquote {
  max-width: none;
  font-size: 16px;
}

.review-card cite {
  color: var(--white);
}

.reviews-cta {
  width: min(var(--container), calc(100% - 84px));
  margin: 22px auto 0;
  padding: 34px 0 76px;
  text-align: center;
}

.reviews-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.reviews-cta p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.74);
}

.sprite {
  display: none;
}

.detailing-page {
  background: #fbfaf8;
}

.detailing-hero,
.detailing-section,
.detailing-contact {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

.detailing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 132px 0 44px;
}

.detailing-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 850;
  line-height: 1.13;
  text-transform: uppercase;
}

.detailing-hero-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 24px 0 28px;
  color: #4e5561;
  font-size: 18px;
  line-height: 1.75;
}

.detailing-hero-media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 219, 214, 0.88);
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 28px 70px rgba(23, 26, 32, 0.16);
}

.detailing-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 24, 29, 0.2));
  content: "";
  pointer-events: none;
}

.detailing-hero-media img,
.detailing-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.detailing-hero-media img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.detailing-section {
  padding: 44px 0;
}

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

.detailing-section .section-heading p:not(.section-kicker) {
  margin: 12px 0 0;
  color: #5f6671;
  font-size: 17px;
  line-height: 1.65;
}

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

.detailing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(222, 219, 214, 0.94);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(23, 26, 32, 0.07);
}

.detailing-card img {
  aspect-ratio: 1.45 / 1;
  height: auto;
}

.detailing-card div {
  display: grid;
  align-content: start;
  padding: 26px 28px 30px;
  min-height: 190px;
}

.detailing-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.2;
}

.detailing-card p {
  margin: 0;
  color: #5e6570;
  font-size: 16px;
  line-height: 1.65;
}

.detailing-work-section {
  padding-top: 28px;
}

.detailing-gallery {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.detailing-gallery-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #20242a;
  box-shadow: 0 18px 45px rgba(23, 26, 32, 0.09);
}

.detailing-gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detailing-gallery-main figcaption {
  display: none;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(20, 24, 29, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(161, 123, 55, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow svg {
  width: 22px;
  height: 22px;
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.detailing-gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
}

.detailing-gallery-thumbs button {
  position: relative;
  flex: 0 0 74px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #20242a;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 22px rgba(23, 26, 32, 0.08);
  transition: border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.detailing-gallery-thumbs button:hover,
.detailing-gallery-thumbs button:focus-visible,
.detailing-gallery-thumbs button.is-active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.detailing-gallery-thumbs button:not(.is-active) {
  opacity: 0.74;
}

.detailing-gallery-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detailing-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
  margin-bottom: 70px;
  padding: 34px;
  border: 1px solid rgba(222, 219, 214, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(23, 26, 32, 0.1);
}

.detailing-contact-copy h2 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}

.detailing-contact-copy p:not(.section-kicker) {
  max-width: 460px;
  margin: 18px 0 0;
  color: #5e6570;
  font-size: 17px;
  line-height: 1.7;
}

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

.detailing-form label {
  display: grid;
  gap: 10px;
  color: #242932;
  font-size: 13px;
  font-weight: 850;
}

.detailing-form input,
.detailing-form select,
.detailing-form textarea {
  width: 100%;
  border: 1px solid rgba(222, 219, 214, 0.94);
  border-radius: 8px;
  background: #f6f4f1;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.detailing-form input,
.detailing-form select {
  height: 58px;
  padding: 0 18px;
}

.detailing-form textarea {
  min-height: 126px;
  padding: 17px 18px;
  resize: vertical;
}

.detailing-form input:focus,
.detailing-form select:focus,
.detailing-form textarea:focus {
  border-color: rgba(161, 123, 55, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(161, 123, 55, 0.12);
}

.detailing-message,
.detailing-form .privacy-consent,
.detailing-submit,
.detailing-form .form-note {
  grid-column: 1 / -1;
}

.detailing-form .privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(222, 219, 214, 0.94);
  border-radius: 8px;
  color: #4a4f58;
  background: #fbfaf8;
  line-height: 1.5;
}

.detailing-form .privacy-consent input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
}

.detailing-form .privacy-consent a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detailing-submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.detailing-submit:disabled {
  cursor: wait;
  opacity: 0.74;
}

.detailing-form .is-invalid input,
.detailing-form .is-invalid select,
.detailing-form .is-invalid textarea,
.detailing-form .privacy-consent.is-invalid {
  border-color: #c84b4b;
  box-shadow: 0 0 0 4px rgba(200, 75, 75, 0.1);
}

@media (max-width: 1060px) {
  .nav {
    grid-template-columns: auto auto auto;
    width: min(100% - 42px, 980px);
    padding: 22px 0;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
  }

  .language-switcher {
    justify-self: end;
  }

  .language-toggle {
    min-height: 42px;
    padding: 0 13px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .nav-links,
  .nav > .button {
    display: none;
  }

  .nav-links.open {
    position: absolute;
    top: 92px;
    right: 21px;
    left: 21px;
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: 640px;
    padding: 136px 32px 58px;
    background: linear-gradient(180deg, #fff 0%, #fff 56%, #f3f1ed 100%);
  }

  .hero::before {
    top: 72px;
    right: 0;
    width: 100%;
    opacity: 0.82;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48) 56%, rgba(255, 255, 255, 0.18)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.12)),
      var(--hero-image) 58% center / contain no-repeat;
  }

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

  .trust-list {
    width: min(760px, calc(100vw - 64px));
  }

  .example-grid,
  .comparison-grid,
  .search-section,
  .company-location,
  .detailing-hero,
  .detailing-contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .detailing-hero {
    padding-top: 124px;
  }

  .detailing-hero-media {
    min-height: 0;
  }

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

  .comparison-grid {
    gap: 28px;
  }

  .comparison-vs {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
    margin: -8px 0;
    transform: none;
  }

  .company-location {
    gap: 28px;
  }

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

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

  .total-display {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .promo-banner {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .social-links {
    justify-content: flex-start;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card > div:last-child {
    padding: 8px;
  }
}

@media (max-width: 760px) {
  .brand {
    width: 76px;
    height: 60px;
  }

  .hero {
    min-height: 640px;
    padding: 118px 22px 42px;
  }

  .hero::before {
    top: 76px;
    right: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62) 55%, rgba(255, 255, 255, 0.24)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66) 50%, rgba(255, 255, 255, 0.2)),
      var(--hero-image) 62% center / contain no-repeat;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero p {
    font-size: 16px;
  }

  .trust-list {
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
  }

  .trust-list li {
    white-space: normal;
  }

  .benefits {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .benefits article {
    min-height: auto;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .section-block,
  .process,
  .company-location,
  .detailing-contact,
  .footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .detailing-hero,
  .detailing-section,
  .detailing-contact {
    width: min(100% - 44px, var(--container));
  }

  .detailing-hero {
    gap: 28px;
    padding-top: 112px;
    padding-bottom: 34px;
  }

  .detailing-hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .detailing-hero-copy p:not(.section-kicker),
  .detailing-section .section-heading p:not(.section-kicker),
  .detailing-contact-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .detailing-hero-media {
    min-height: 0;
  }

  .detailing-services-grid,
  .detailing-form {
    grid-template-columns: 1fr;
  }

  .detailing-card div {
    padding: 22px;
  }

  .detailing-gallery {
    gap: 12px;
  }

  .detailing-gallery-main img {
    aspect-ratio: 4 / 3;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .detailing-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 2px 0 8px;
    scroll-snap-type: x mandatory;
  }

  .detailing-gallery-thumbs button {
    flex: 0 0 64px;
    scroll-snap-align: start;
  }

  .detailing-contact {
    gap: 24px;
    margin-bottom: 44px;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .form-panel {
    width: min(100% - 44px, 1180px);
  }

  .car-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .car-photo {
    min-height: 220px;
    background-size: cover;
    background-position: center;
  }

  .market-columns {
    gap: 16px;
  }

  .market-columns span {
    white-space: normal;
  }

  .comparison-heading {
    margin-bottom: 24px;
  }

  .comparison-card header {
    min-height: auto;
    padding: 18px;
  }

  .comparison-card h3 {
    font-size: 22px;
  }

  .comparison-photo {
    min-height: 230px;
  }

  .comparison-features {
    grid-template-columns: 1fr;
    padding: 0 18px 16px;
  }

  .comparison-vs {
    width: 66px;
    height: 66px;
    font-size: 20px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-list li:not(:last-child)::after {
    display: none;
  }

  .vehicle-form {
    grid-template-columns: 1fr;
  }

  .quote-panel > label:nth-of-type(1),
  .quote-panel > label:nth-of-type(2),
  .quote-panel > label:nth-of-type(3),
  .quote-panel > label:nth-of-type(4),
  .example-link-field {
    grid-column: 1 / -1;
  }

  .calculator-grid,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .calculator-summary .form-offer {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .total-display {
    grid-template-columns: 1fr;
  }

  .breakdown-ring {
    justify-self: start;
    width: 112px;
  }

  .calculator-summary .form-offer .button,
  .quote-step-button {
    width: 100%;
    min-width: 0;
  }

  .step-progress {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: stretch;
  }

  .step-progress i {
    display: none;
  }

  .promo-banner {
    width: 100%;
    margin: 0;
    padding: 22px;
  }

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

  .reviews-hero,
  .reviews-list,
  .reviews-cta {
    width: min(100% - 44px, var(--container));
  }

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

  .review-car-photo {
    min-height: 220px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 260px;
    height: 260px;
  }

  .footer {
    gap: 24px;
  }

.controller-details div {
  grid-template-columns: 1fr;
  gap: 4px;
}
}

/* Stock Cars */
.stock-page {
  background: #fff;
}

.stock-page main {
  padding-top: 104px;
}

.stock-list-view,
.stock-detail-view,
.stock-service-band {
  width: min(100% - 56px, 1320px);
  margin: 0 auto;
}

.stock-heading {
  padding: 44px 0 28px;
  text-align: center;
}

.stock-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.stock-heading span {
  display: block;
  width: 46px;
  height: 2px;
  margin: 22px auto 0;
  background: var(--gold);
}

.stock-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.stock-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.stock-filters select,
.stock-filters button,
.stock-interest-form input,
.stock-interest-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.stock-filters select,
.stock-filters button {
  min-height: 54px;
  padding: 0 18px;
  font-weight: 800;
}

.stock-filters button {
  color: var(--gold);
  border-color: var(--gold);
  cursor: pointer;
}

.stock-count {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.stock-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 22px 42px rgba(19, 22, 29, 0.06);
}

.stock-card-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f4f2ef;
}

.stock-card-image img,
.stock-main-photo img,
.stock-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stock-card-body {
  display: grid;
  gap: 12px;
  padding: 20px 18px 22px;
}

.stock-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.stock-card strong {
  color: var(--gold);
  font-size: 22px;
}

.stock-card-meta,
.stock-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
}

.stock-card-tags span + span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.stock-card p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.stock-card-button,
.stock-load-more {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
}

.stock-load-wrap {
  display: flex;
  justify-content: center;
  margin: 46px 0 60px;
}

.stock-load-more {
  min-width: 290px;
  cursor: pointer;
}

.stock-detail-view {
  padding: 34px 0 56px;
}

.stock-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.stock-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.stock-gallery {
  display: grid;
  gap: 16px;
}

.stock-main-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #20242a;
  box-shadow: 0 18px 45px rgba(23, 26, 32, 0.09);
}

.stock-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(20, 24, 29, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
}

.stock-gallery-arrow:hover,
.stock-gallery-arrow:focus-visible {
  background: rgba(161, 123, 55, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.stock-gallery-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stock-gallery-arrow.is-prev {
  left: 18px;
}

.stock-gallery-arrow.is-next {
  right: 18px;
}

.stock-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
}

.stock-thumbs button {
  position: relative;
  flex: 0 0 74px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #20242a;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 22px rgba(23, 26, 32, 0.08);
  transition: border-color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.stock-thumbs button:hover,
.stock-thumbs button:focus-visible,
.stock-thumbs button.is-active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stock-thumbs button:not(.is-active) {
  opacity: 0.74;
}

.stock-about {
  padding-top: 24px;
}

.stock-about h2,
.stock-interest-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  text-transform: uppercase;
}

.stock-about p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
}

.stock-about h3 {
  margin: 28px 0 12px;
}

.stock-about ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

.stock-summary-card,
.stock-interest-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(19, 22, 29, 0.06);
}

.stock-sidebar {
  display: grid;
  gap: 26px;
}

.stock-summary-card h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.stock-summary-card > strong {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 28px;
}

.stock-summary-card dl {
  display: grid;
  margin: 0 0 28px;
}

.stock-summary-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.stock-summary-card dt,
.stock-summary-card dd {
  margin: 0;
  font-size: 14px;
}

.stock-summary-card dd {
  text-align: right;
  font-weight: 850;
}

.stock-interest-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.stock-interest-form {
  display: grid;
  gap: 12px;
}

.stock-interest-form input,
.stock-interest-form textarea {
  padding: 16px;
}

.stock-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.stock-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.stock-interest-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.stock-service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.stock-service-band span {
  color: var(--gold);
  font-size: 34px;
}

.stock-service-band h2 {
  margin: 12px 0 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.stock-service-band p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: end center;
  padding: 24px;
  background: rgba(12, 15, 19, 0.3);
  backdrop-filter: blur(6px);
}

.cookie-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  width: min(100%, 880px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 10%, rgba(177, 141, 73, 0.2), transparent 34%),
    linear-gradient(145deg, #10151a, #080c10);
  box-shadow: 0 28px 80px rgba(4, 6, 8, 0.38);
  color: #fff;
}

.cookie-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.cookie-icon {
  align-self: start;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}

.cookie-icon span {
  position: relative;
  width: 58px;
  height: 58px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.cookie-icon span::before,
.cookie-icon span::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.cookie-icon span::before {
  width: 8px;
  height: 8px;
  left: 14px;
  top: 18px;
  box-shadow: 20px 12px 0 #fff, 7px 28px 0 #fff;
}

.cookie-icon span::after {
  right: -7px;
  bottom: -7px;
  width: 24px;
  height: 24px;
  border: 3px solid #10151a;
  background: var(--gold);
}

.cookie-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.cookie-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.55;
}

.cookie-content a {
  color: #f2d393;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: #fff;
  font-size: 16px;
}

.cookie-option small,
.cookie-option em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.cookie-option input {
  width: 48px;
  height: 28px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-option input::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-option input:checked {
  border-color: rgba(177, 141, 73, 0.9);
  background: var(--gold);
}

.cookie-option input:checked::before {
  transform: translateX(20px);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-button {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.cookie-button-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.cookie-button-ghost {
  border: 0;
  background: transparent;
  color: #fff;
}

.cookie-button-primary {
  margin-left: auto;
  border: 1px solid rgba(177, 141, 73, 0.9);
  background: linear-gradient(135deg, #c3994a, var(--gold));
  color: #fff;
  box-shadow: 0 18px 36px rgba(177, 141, 73, 0.28);
}

.cookie-preferences-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 500;
  padding: 10px 14px;
  border: 1px solid rgba(177, 141, 73, 0.4);
  border-radius: 999px;
  background: rgba(16, 21, 26, 0.88);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

@media (max-width: 1120px) {
  .stock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .stock-page main {
    padding-top: 92px;
  }

  .stock-list-view,
  .stock-detail-view,
  .stock-service-band {
    width: min(100% - 32px, 1320px);
  }

  .stock-filters,
  .stock-grid,
  .stock-service-band {
    grid-template-columns: 1fr;
  }

  .stock-thumbs {
    display: flex;
    overflow-x: auto;
  }

  .stock-thumbs button {
    flex: 0 0 78px;
  }

  .cookie-consent {
    place-items: end center;
    padding: 10px;
  }

  .cookie-card {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-height: calc(100dvh - 22px);
    overflow-y: auto;
    padding: 18px 16px 16px;
    border-radius: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .cookie-icon span {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }

  .cookie-icon span::before {
    width: 5px;
    height: 5px;
    left: 8px;
    top: 10px;
    box-shadow: 12px 8px 0 #fff, 5px 17px 0 #fff;
  }

  .cookie-icon span::after {
    right: -5px;
    bottom: -5px;
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .cookie-close {
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 34px;
  }

  .cookie-content h2 {
    margin-bottom: 8px;
    font-size: 26px;
  }

  .cookie-content p {
    font-size: 14px;
    line-height: 1.45;
  }

  .cookie-settings {
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .cookie-option {
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .cookie-option strong {
    font-size: 14px;
  }

  .cookie-option small,
  .cookie-option em {
    font-size: 12px;
    line-height: 1.35;
  }

  .cookie-option input {
    width: 42px;
    height: 24px;
  }

  .cookie-option input::before {
    width: 18px;
    height: 18px;
  }

  .cookie-option input:checked::before {
    transform: translateX(18px);
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .cookie-button,
  .cookie-button-primary {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .cookie-card {
    max-height: calc(100dvh - 16px);
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .cookie-content h2 {
    font-size: 24px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-option em,
  .cookie-option input {
    justify-self: start;
  }
}
