:root {
  --sv-sand: #ffc179;
  --sv-orange: #ff8800;
  --sv-orange-dark: #e97800;
  --sv-grey: #f6f5f4;
  --sv-ink: #223144;
  --sv-blue: #0068b8;
  --sv-blue-dark: #004f8d;
  --sv-white: #ffffff;
  --sv-muted: #718096;
  --sv-line: #dde3ea;
  --sv-radius-xs: 6px;
  --sv-radius-sm: 10px;
  --sv-radius-md: 14px;
  --sv-radius-lg: 20px;
  --sv-shadow: 0 16px 38px rgba(34, 49, 68, 0.1);
  --sv-shadow-soft: 0 8px 24px rgba(34, 49, 68, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--sv-white);
  color: var(--sv-ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", system-ui, sans-serif;
}

::selection {
  color: var(--sv-ink);
  background: var(--sv-sand);
}

.sv-page {
  min-height: 100vh;
  overflow: clip;
  background: var(--sv-white);
}

.sv-container {
  width: calc(100% - 48px);
  max-width: 1400px;
  margin-inline: auto;
}

.sv-section {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-section--grey {
  background: var(--sv-grey);
}

.sv-section--compact {
  padding: 64px 0;
}

.sv-heading,
.sv-card-title,
.sv-nav-wordmark {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
}

.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--sv-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sv-eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  border-radius: 2px;
  background: currentColor;
}

.sv-heading {
  margin: 0;
  color: var(--sv-ink);
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.sv-heading--white {
  color: var(--sv-white);
}

.sv-lead {
  max-width: 680px;
  margin: 16px 0 0;
  color: #657284;
  font-size: 16px;
  line-height: 1.75;
}

.sv-lead--white {
  color: rgba(255, 255, 255, 0.72);
}

.sv-highlight {
  color: var(--sv-orange);
}

.sv-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--sv-radius-xs);
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.sv-button:hover {
  transform: translateY(-2px);
}

.sv-button--orange {
  background: var(--sv-orange);
  color: var(--sv-white);
  box-shadow: 0 9px 22px rgba(255, 136, 0, 0.22);
}

.sv-button--orange:hover {
  background: var(--sv-orange-dark);
}

.sv-button--blue {
  background: var(--sv-blue);
  color: var(--sv-white);
  box-shadow: 0 9px 22px rgba(0, 104, 184, 0.2);
}

.sv-button--blue:hover {
  background: var(--sv-blue-dark);
}

.sv-button--ink {
  background: var(--sv-ink);
  color: var(--sv-white);
}

.sv-button--light {
  border: 1px solid var(--sv-line);
  color: var(--sv-ink);
  background: var(--sv-white);
}

.sv-field,
.sv-select,
.sv-textarea {
  width: 100%;
  border: 1px solid #d8dee6;
  border-radius: var(--sv-radius-xs);
  outline: none;
  background: var(--sv-white);
  color: var(--sv-ink);
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sv-field,
.sv-select {
  height: 46px;
  padding: 0 14px;
}

.sv-select {
  appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.sv-textarea {
  min-height: 104px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}

.sv-field:focus,
.sv-select:focus,
.sv-textarea:focus {
  border-color: var(--sv-blue);
  box-shadow: 0 0 0 3px rgba(0, 104, 184, 0.1);
}

.sv-select-wrap {
  position: relative;
}

.sv-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  content: "";
  pointer-events: none;
  border-right: 2px solid var(--sv-muted);
  border-bottom: 2px solid var(--sv-muted);
  transform: translateY(-70%) rotate(45deg);
}

.sv-nav-stage {
  position: relative;
  z-index: 80;
  padding: 18px 0;
}

.sv-nav-stage--overlay {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
}

.sv-nav-shell {
  display: grid;
  min-height: 68px;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(34, 49, 68, 0.08);
  border-radius: var(--sv-radius-md);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-nav-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--sv-ink);
  text-decoration: none;
}

.sv-nav-logo {
  display: block;
  width: 156px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.sv-nav-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--sv-radius-xs);
  color: var(--sv-white);
  background: var(--sv-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.sv-nav-wordmark {
  overflow: hidden;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.sv-nav-link {
  position: relative;
  padding: 12px 13px;
  color: var(--sv-ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 3px;
  content: "";
  border-radius: 2px;
  background: transparent;
}

.sv-nav-link:hover,
.sv-nav-link.is-active {
  color: var(--sv-orange);
}

.sv-nav-link.is-active::after {
  background: var(--sv-orange);
}

.sv-nav-cta {
  justify-self: end;
}

.sv-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--sv-radius-xs);
  cursor: pointer;
  color: var(--sv-white);
  background: var(--sv-blue);
}

.sv-nav-drawer {
  display: none;
  padding: 10px 4px 16px;
}

.sv-hero {
  position: relative;
  padding: 54px 0 92px;
  background: var(--sv-white);
}

.sv-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34px;
  content: "";
  border-radius: var(--sv-radius-lg) var(--sv-radius-lg) 0 0;
  background: var(--sv-white);
}

.sv-hero-grid {
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 28px;
}

.sv-hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 70px;
}

.sv-hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(54px, 6.5vw, 84px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.84;
  text-transform: uppercase;
}

.sv-hero-title .sv-highlight {
  white-space: nowrap;
}

.sv-hero-subtitle {
  max-width: 450px;
  margin: 22px 0 28px;
  color: #617083;
  font-size: 16px;
  line-height: 1.7;
}

.sv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sv-hero-price {
  margin-top: 36px;
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.sv-hero-price small {
  color: var(--sv-muted);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.sv-hero-review {
  position: relative;
  z-index: 3;
  margin-top: 36px;
}

.sv-page-hero-review {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 24px auto 0;
}

.sv-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: visible;
}

.sv-hero-stripe {
  position: absolute;
  z-index: 0;
  top: -210px;
  bottom: -110px;
  left: 18%;
  width: 48%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 193, 121, 0.92) 0%, rgba(255, 193, 121, 0.58) 68%, rgba(255, 193, 121, 0) 100%);
}

.sv-hero-car {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10%;
  width: auto;
  max-width: none;
  height: 100%;
  filter: drop-shadow(0 28px 24px rgba(34, 49, 68, 0.19));
}

.sv-search-panel {
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: -74px auto 0;
  padding: 24px 26px 26px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-ink);
  box-shadow: 0 20px 44px rgba(34, 49, 68, 0.2);
}

.sv-search-title {
  margin: 0 0 16px;
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

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

.sv-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.sv-step {
  position: relative;
  min-height: 205px;
  padding: 42px 22px 24px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-step-icon {
  position: absolute;
  top: -24px;
  left: 22px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 5px solid var(--sv-white);
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-blue);
  box-shadow: 0 8px 18px rgba(0, 104, 184, 0.2);
}

.sv-step:nth-child(even) .sv-step-icon {
  background: var(--sv-orange);
  box-shadow: 0 8px 18px rgba(255, 136, 0, 0.22);
}

.sv-step-number {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--sv-sand);
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.sv-step h3 {
  margin: 14px 0 8px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.sv-step p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.65;
}

.sv-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

.sv-mosaic {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-rows: 180px 280px;
  gap: 12px;
}

.sv-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: var(--sv-radius-sm);
  object-fit: cover;
}

.sv-mosaic img:nth-child(1) {
  grid-row: 1 / 3;
}

.sv-about-list,
.sv-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 26px;
}

.sv-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--sv-ink);
  font-size: 13px;
  font-weight: 650;
}

.sv-check-dot {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
  font-size: 11px;
}

.sv-category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.75fr);
  grid-template-areas:
    "heading ."
    "grid cta";
  align-items: stretch;
  column-gap: 24px;
  row-gap: 38px;
}

.sv-category-heading {
  grid-area: heading;
  text-align: center;
}

.sv-category-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sv-category-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 10px 16px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--sv-shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.sv-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--sv-orange);
}

.sv-category-image-wrap {
  display: flex;
  width: 100%;
  height: 102px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: calc(var(--sv-radius-sm) - 4px);
  background: var(--sv-white);
}

.sv-category-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sv-category-card strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}

.sv-category-card > span:last-child {
  color: var(--sv-muted);
  font-size: 11px;
}

.sv-dark-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--sv-radius-md);
  color: var(--sv-white);
  background:
    radial-gradient(circle at 0 100%, rgba(0, 104, 184, 0.34), transparent 38%),
    var(--sv-ink);
}

.sv-dark-panel::after {
  position: absolute;
  top: -90px;
  right: -120px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.025),
    0 0 0 84px rgba(255, 255, 255, 0.018);
}

.sv-why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 38px;
  padding: clamp(42px, 6vw, 70px);
}

.sv-why-visual {
  position: relative;
  min-width: 0;
  min-height: 390px;
}

.sv-why-car {
  position: absolute;
  bottom: clamp(-70px, -6vw, -42px);
  left: 50%;
  display: block;
  width: min(122%, 680px);
  max-width: none;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 26px 22px rgba(0, 0, 0, 0.28));
  transform: translateX(-50%);
}

.sv-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.sv-vehicle-card {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  text-decoration: none;
  box-shadow: var(--sv-shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sv-vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sv-shadow);
}

.sv-vehicle-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sv-grey);
}

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

.sv-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: var(--sv-radius-xs);
  color: var(--sv-white);
  background: var(--sv-orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-vehicle-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.sv-card-title {
  margin: 0;
  color: var(--sv-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.sv-card-variant {
  min-height: 34px;
  margin-top: 6px;
  color: var(--sv-muted);
  font-size: 12px;
  line-height: 1.45;
}

.sv-spec-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 16px 0;
}

.sv-spec-pill {
  padding: 8px 5px;
  border-radius: 4px;
  color: #617083;
  background: var(--sv-grey);
  text-align: center;
  font-size: 10px;
  line-height: 1.25;
}

.sv-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--sv-line);
}

.sv-card-price {
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.sv-card-more {
  color: var(--sv-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.sv-category-cta {
  grid-area: cta;
  height: 100%;
  min-height: 0;
  padding: 28px;
}

.sv-category-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--sv-ink) 0%,
    rgba(34, 49, 68, 0.98) 36%,
    rgba(34, 49, 68, 0.44) 57%,
    rgba(34, 49, 68, 0.06) 100%
  );
}

.sv-category-cta h3 {
  z-index: 2;
  max-width: 360px;
  font-size: clamp(27px, 2.1vw, 34px);
}

.sv-category-cta p {
  z-index: 2;
  max-width: 330px;
}

.sv-category-cta .sv-button {
  position: relative;
  z-index: 2;
}

.sv-category-cta .sv-cta-car {
  right: -14%;
  bottom: -8%;
  width: 145%;
  max-width: none;
  height: auto;
  opacity: 0.96;
}

.sv-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 34px;
  border-radius: var(--sv-radius-sm);
}

.sv-cta-card--orange {
  color: var(--sv-white);
  background: var(--sv-orange);
}

.sv-cta-card--blue {
  color: var(--sv-white);
  background: var(--sv-ink);
}

.sv-cta-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 34px;
  line-height: 0.95;
  text-transform: uppercase;
}

.sv-cta-card p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.sv-cta-car {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 46%;
  height: 92%;
  object-fit: contain;
  opacity: 0.9;
}

.sv-profile-section {
  background: var(--sv-grey);
}

.sv-profile-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: 48px;
}

.sv-profile-title {
  max-width: 690px;
  margin: 10px 0 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.sv-profile-head > p {
  max-width: 610px;
  margin: 0 0 4px;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sv-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: clamp(30px, 5vw, 72px);
}

.sv-profile-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.sv-profile-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 30px;
}

.sv-principle-card {
  position: relative;
  display: flex;
  min-height: 228px;
  overflow: visible;
  align-items: flex-end;
  justify-content: center;
  padding: 92px 26px 30px;
  border: 1px solid #cfd5dc;
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  text-align: center;
  box-shadow: var(--sv-shadow-soft);
}

.sv-principle-band {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 66px;
  overflow: hidden;
  border-radius: var(--sv-radius-sm) var(--sv-radius-sm) 0 0;
  background: #eef1f5;
}

.sv-principle-icon {
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 6px solid var(--sv-white);
  border-radius: 50%;
  color: var(--sv-white);
  transform: translateX(-50%);
}

.sv-principle-icon--blue {
  background: var(--sv-ink);
}

.sv-principle-icon--orange {
  background: var(--sv-orange);
}

.sv-principle-card h3 {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.sv-principle-card p {
  max-width: 210px;
  margin: 14px auto 0;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.55;
}

.sv-profile-copy {
  margin: 30px 0 0;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.75;
}

.sv-profile-bottom {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 24px;
  margin-top: auto;
  padding-top: 30px;
}

.sv-profile-stat {
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  padding: 22px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-ink);
  text-align: center;
}

.sv-profile-stat strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 0.9;
}

.sv-profile-stat strong .sc-interp {
  font: inherit;
  line-height: inherit;
}

.sv-profile-stat span {
  max-width: 135px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.sv-profile-points {
  display: grid;
  align-content: center;
  gap: 15px;
}

.sv-profile-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sv-ink);
  font-size: 13px;
  line-height: 1.4;
}

.sv-profile-points i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.sv-profile-photo {
  height: 620px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--sv-radius-sm);
  background: var(--sv-grey);
}

.sv-profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.sv-review-section {
  padding-bottom: 176px;
}

.sv-testimonial-head {
  max-width: 760px;
}

.sv-testimonial-intro {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.7;
}

.sv-review-section > .sv-container > .review-widget {
  margin-top: 48px;
}

.sv-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(22px, 3vw, 38px);
  margin-top: 48px;
}

.sv-quote {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: center;
  padding: 38px 38px 68px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-lg);
  color: #5f6c7d;
  background: var(--sv-white);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  font-style: italic;
  line-height: 1.65;
  box-shadow: var(--sv-shadow-soft);
}

.sv-quote--featured {
  min-height: 310px;
  padding-inline: clamp(36px, 4vw, 58px);
  border-color: var(--sv-ink);
  color: rgba(255, 255, 255, 0.8);
  background: var(--sv-ink);
  box-shadow: 0 18px 36px rgba(34, 49, 68, 0.18);
}

.sv-quote-text {
  margin: 0;
}

.sv-review-person {
  position: absolute;
  top: calc(100% - 38px);
  left: 50%;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  font-style: normal;
}

.sv-review-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 6px solid var(--sv-grey);
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(34, 49, 68, 0.14);
}

.sv-quote:nth-child(2) .sv-review-avatar {
  background: var(--sv-orange);
}

.sv-quote:nth-child(3) .sv-review-avatar {
  background: var(--sv-ink);
}

.sv-review-person strong {
  margin-top: 12px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.sv-review-person > span:last-child {
  margin-top: 5px;
  color: var(--sv-muted);
  font-size: 12px;
}

.sv-contact-section {
  background: var(--sv-grey);
}

.sv-contact-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 6vw, 88px);
  margin-bottom: 44px;
}

.sv-contact-intro {
  max-width: 590px;
  margin: 0;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.sv-contact-method {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(34, 49, 68, 0.1);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  text-decoration: none;
  box-shadow: var(--sv-shadow-soft);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.sv-contact-method:hover {
  border-color: rgba(255, 136, 0, 0.6);
  box-shadow: 0 16px 30px rgba(34, 49, 68, 0.12);
  transform: translateY(-2px);
}

.sv-contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.sv-contact-icon--blue {
  background: var(--sv-blue);
}

.sv-contact-method small,
.sv-contact-method strong {
  display: block;
}

.sv-contact-method small {
  margin-bottom: 4px;
  color: var(--sv-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-contact-method strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.sv-contact-hours {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--sv-line);
}

.sv-hours-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.sv-hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  color: var(--sv-muted);
  font-size: 13px;
}

.sv-hours-row strong {
  color: var(--sv-ink);
  text-align: right;
}

.sv-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 24px;
}

.sv-contact-info-card,
.sv-contact-form-card {
  min-width: 0;
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--sv-radius-lg);
  box-shadow: var(--sv-shadow);
}

.sv-contact-info-card {
  position: relative;
  overflow: hidden;
  color: var(--sv-white);
  background:
    radial-gradient(circle at 108% -8%, rgba(0, 104, 184, 0.72), transparent 38%),
    linear-gradient(145deg, #17283e 0%, var(--sv-ink) 58%, #162b42 100%);
}

.sv-contact-info-card::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255, 255, 255, 0.018),
    0 0 0 88px rgba(255, 255, 255, 0.012);
}

.sv-contact-card-head,
.sv-contact-info-card .sv-contact-methods,
.sv-contact-info-card .sv-contact-hours {
  position: relative;
  z-index: 1;
}

.sv-contact-card-head .sv-eyebrow,
.sv-contact-info-card .sv-contact-hours .sv-eyebrow {
  color: var(--sv-sand);
}

.sv-contact-card-head h3,
.sv-contact-form-head h3 {
  margin: 10px 0 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(31px, 3.4vw, 43px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.sv-contact-card-head > p:not(.sv-eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.sv-contact-info-card .sv-contact-methods {
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 30px;
}

.sv-contact-info-card .sv-contact-method {
  padding: 15px 16px;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--sv-white);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}

.sv-contact-info-card .sv-contact-method:hover {
  border-color: rgba(255, 136, 0, 0.72);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.sv-contact-info-card .sv-contact-method small {
  color: rgba(255, 255, 255, 0.54);
}

.sv-contact-info-card .sv-contact-method strong {
  color: var(--sv-white);
  font-size: 14px;
}

.sv-contact-icon--sand {
  color: var(--sv-ink);
  background: var(--sv-sand);
}

.sv-contact-info-card .sv-contact-hours {
  margin-top: 30px;
  padding-top: 26px;
  border-color: rgba(255, 255, 255, 0.14);
}

.sv-contact-hours-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sv-contact-hours-head > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-align: right;
}

.sv-contact-info-card .sv-hours-list {
  gap: 0;
  margin-top: 16px;
}

.sv-contact-info-card .sv-hours-row {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.64);
}

.sv-contact-info-card .sv-hours-row strong {
  color: var(--sv-white);
}

.sv-contact-form-card {
  border: 1px solid var(--sv-line);
  background: var(--sv-white);
}

.sv-contact-form-head .sv-eyebrow {
  color: var(--sv-orange-dark);
}

.sv-contact-form-head h3 {
  color: var(--sv-ink);
}

.sv-contact-form-head > p:not(.sv-eyebrow) {
  max-width: 600px;
  margin: 0;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sv-contact-form-card .sv-contact-form {
  gap: 16px;
  margin-top: 28px;
}

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

.sv-contact-form-card .sv-field,
.sv-contact-form-card .sv-textarea {
  border-color: #d8dee6;
  background: #fbfcfd;
}

.sv-contact-form-card .sv-textarea {
  min-height: 132px;
}

.sv-contact-form-card .sv-form-note {
  margin-top: 2px;
}

.sv-contact-form-card .sv-form-note a {
  color: var(--sv-blue);
  font-weight: 700;
}

.sv-form-error {
  padding: 11px 13px;
  border: 1px solid #f0b3b3;
  border-radius: var(--sv-radius-xs);
  color: #9b2020;
  background: #fff2f2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.sv-contact-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
}

.sv-contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.sv-contact-success {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  padding: 24px;
  text-align: center;
}

.sv-contact-success-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-blue);
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 104, 184, 0.22);
}

.sv-contact-success h4 {
  margin: 22px 0 8px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}

.sv-contact-success p {
  max-width: 440px;
  margin: 0;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sv-contact-reset {
  margin-top: 22px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 2px solid var(--sv-orange);
  cursor: pointer;
  color: var(--sv-blue);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-page-hero {
  position: relative;
  min-height: 320px;
  padding: 156px 0 70px;
  overflow: hidden;
  color: var(--sv-white);
  background:
    linear-gradient(rgba(15, 42, 73, 0.88), rgba(15, 42, 73, 0.88)),
    var(--sv-page-hero-image, linear-gradient(135deg, var(--sv-blue), var(--sv-ink)));
  background-position: center;
  background-size: cover;
  border-radius: 0 0 var(--sv-radius-lg) var(--sv-radius-lg);
}

.sv-page-hero::after {
  position: absolute;
  inset: auto -80px -230px auto;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(255, 255, 255, 0.025),
    0 0 0 92px rgba(255, 255, 255, 0.018);
}

.sv-page-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.sv-breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 12px;
}

.sv-breadcrumb a {
  color: var(--sv-sand);
  text-decoration: none;
}

.sv-filter-toolbar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  margin: -40px auto 0;
  padding: 18px;
  border-radius: var(--sv-radius-sm);
  background: var(--sv-ink);
  box-shadow: var(--sv-shadow);
}

.sv-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.sv-results-count {
  color: var(--sv-muted);
  font-size: 14px;
}

.sv-results-count strong {
  color: var(--sv-ink);
}

.sv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.sv-chip {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-xs);
  cursor: pointer;
  color: var(--sv-ink);
  background: var(--sv-white);
  font-size: 12px;
  font-weight: 700;
}

.sv-chip.is-active {
  border-color: var(--sv-blue);
  color: var(--sv-white);
  background: var(--sv-blue);
}

.sv-empty {
  padding: 64px 24px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-grey);
  text-align: center;
}

.sv-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.75fr);
  align-items: start;
  gap: 38px;
}

.sv-detail-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--sv-radius-sm);
  object-fit: cover;
  background: var(--sv-grey);
}

.sv-thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.sv-thumb {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--sv-radius-xs);
  cursor: pointer;
  background: transparent;
}

.sv-thumb.is-active {
  border-color: var(--sv-orange);
}

.sv-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sv-detail-card {
  overflow: hidden;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-detail-card-body {
  padding: 24px;
}

.sv-detail-title {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.sv-detail-variant {
  margin-top: 8px;
  color: var(--sv-muted);
  font-size: 14px;
}

.sv-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin-top: 24px;
}

.sv-detail-spec {
  padding: 13px 0;
  border-bottom: 1px solid var(--sv-line);
}

.sv-detail-spec-label {
  display: block;
  color: var(--sv-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sv-detail-spec-value {
  display: block;
  margin-top: 4px;
  color: var(--sv-ink);
  font-size: 13px;
  font-weight: 400;
}

.sv-detail-page-section {
  --sv-detail-display-size: clamp(36px, 4.2vw, 48px);
  padding: 96px 0 118px;
}

.sv-vehicle-detail-shell {
  max-width: 1180px;
}

.sv-detail-page-section .sv-detail-layout {
  grid-template-columns: minmax(0, 1fr) 338px;
  gap: clamp(34px, 5vw, 58px);
}

.sv-detail-content {
  min-width: 0;
}

.sv-detail-page-section .sv-detail-main-image {
  aspect-ratio: 5 / 4;
  padding: 0;
  border-radius: var(--sv-radius-md);
  object-fit: contain;
  object-position: center;
  background: #f2f4f7;
}

.sv-detail-gallery {
  padding: 16px 0 2px;
}

.sv-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.sv-gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #cbd3dd;
  transition: width 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.sv-gallery-dot:hover {
  background: var(--sv-blue);
  transform: scale(1.12);
}

.sv-gallery-dot.is-active {
  width: 28px;
  background: var(--sv-orange);
}

.sv-detail-heading-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 24px;
  border-bottom: 1px solid var(--sv-line);
}

.sv-detail-heading-block .sv-detail-title {
  font-size: var(--sv-detail-display-size);
}

.sv-detail-heading-block .sv-detail-variant {
  margin-top: 7px;
}

.sv-detail-overview {
  padding: 6px 0 24px;
  border-bottom: 1px solid var(--sv-line);
}

.sv-detail-overview .sv-detail-specs {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 20px;
  margin-top: 0;
}

.sv-detail-overview .sv-detail-spec {
  min-width: 0;
  padding: 18px 0 15px;
}

.sv-detail-overview .sv-detail-spec-value {
  overflow-wrap: anywhere;
}

.sv-detail-overview .sv-detail-spec-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--sv-ink);
  font-weight: 800;
}

.sv-detail-overview .sv-detail-spec-label svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--sv-orange);
}

.sv-detail-editorial {
  padding: 26px 0;
  border-bottom: 1px solid var(--sv-line);
}

.sv-detail-editorial h2,
.sv-detail-list-box h2,
.sv-detail-card-title {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.sv-detail-editorial > p {
  margin: 11px 0 0;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.75;
}

.sv-detail-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.sv-detail-list-box {
  padding: 28px;
  border-radius: var(--sv-radius-md);
  background: #f2f4f7;
}

.sv-detail-list-box h2 {
  padding-bottom: 16px;
  border-bottom: 1px solid #cfd7e1;
}

.sv-detail-check-list {
  display: grid;
  gap: 12px;
  margin-top: 17px;
}

.sv-detail-check-list > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5f6d7d;
  font-size: 13px;
  line-height: 1.5;
}

.sv-detail-check-list i {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.sv-detail-consumption {
  margin: 18px 0 0;
  padding-top: 17px;
  border-top: 1px solid #cfd7e1;
  color: var(--sv-muted);
  font-size: 12px;
  line-height: 1.65;
}

.sv-detail-aside {
  position: sticky;
  top: 122px;
}

.sv-detail-page-section .sv-detail-price-card {
  display: grid;
  min-height: 142px;
  place-items: center;
  align-content: center;
  border-radius: var(--sv-radius-md);
  color: var(--sv-white);
  background: var(--sv-orange);
  box-shadow: 0 14px 28px rgba(255, 136, 0, 0.18);
}

.sv-detail-page-section .sv-detail-price-card strong {
  font-family: "Rajdhani", sans-serif;
  font-size: var(--sv-detail-display-size);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.sv-detail-page-section .sv-detail-price-card strong span {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.sv-detail-page-section .sv-detail-price-card > span {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-detail-page-section .sv-detail-card {
  margin-top: 18px;
  border-radius: var(--sv-radius-md);
  box-shadow: none;
}

.sv-detail-card-title {
  padding: 18px 22px;
  background: #f2f4f7;
}

.sv-detail-page-section .sv-detail-card-body {
  padding: 22px;
}

.sv-detail-page-section .sv-detail-card-body .sv-detail-inquiry {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.sv-detail-page-section .sv-detail-specs {
  gap: 0 16px;
  margin-top: 0;
}

.sv-detail-page-section .sv-detail-spec {
  min-width: 0;
  padding: 14px 0;
}

.sv-detail-page-section .sv-detail-spec-value {
  overflow-wrap: anywhere;
}

.sv-detail-inquiry {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sv-line);
}

.sv-detail-inquiry h3 {
  margin: 0 0 4px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.sv-detail-inquiry .sv-button {
  width: 100%;
}

.sv-contact-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.sv-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--sv-muted);
  font-size: 11px;
  line-height: 1.5;
}

.sv-form-note input {
  margin-top: 2px;
  accent-color: var(--sv-orange);
}

.sv-success {
  padding: 24px;
  border-radius: var(--sv-radius-sm);
  color: #174b36;
  background: #e8f7ef;
  text-align: center;
}

.sv-error {
  color: #a42323;
  font-size: 12px;
  font-weight: 700;
}

.sv-footer {
  position: relative;
  overflow: hidden;
  padding: 68px 0 26px;
  border-radius: var(--sv-radius-lg) var(--sv-radius-lg) 0 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--sv-ink);
}

.sv-footer::after {
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.022),
    0 0 0 96px rgba(255, 255, 255, 0.016);
}

.sv-footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.sv-footer-title {
  margin: 0 0 12px;
  color: var(--sv-white);
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.sv-footer h3 {
  margin: 0 0 17px;
  color: var(--sv-white);
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  text-transform: uppercase;
}

.sv-footer p,
.sv-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.8;
}

.sv-footer a:hover {
  color: var(--sv-sand);
}

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

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

.sv-footer-hour-row {
  display: grid;
  grid-template-columns: minmax(112px, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
  line-height: 1.45;
}

.sv-footer-hour-row strong {
  color: var(--sv-white);
  font-weight: 700;
}

.sv-footer-hour-row span {
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
  white-space: nowrap;
}

.sv-footer-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.sv-footer a.sv-footer-profile {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sv-footer a.sv-footer-profile:hover {
  border-color: rgba(255, 136, 0, 0.68);
  background: rgba(255, 136, 0, 0.11);
  color: var(--sv-white);
  transform: translateY(-1px);
}

.sv-platform-logo {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
  color: var(--sv-white);
  background: var(--sv-blue);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
}

.sv-platform-logo--mobile_de {
  color: #0f4c81;
  background: #fff;
  font-size: 7px;
}

.sv-platform-logo--autoscout24 {
  background: #f26a21;
  font-size: 8px;
}

.sv-platform-logo--kleinanzeigen {
  color: #183153;
  background: #ffd400;
  font-size: 16px;
}

.sv-platform-logo--facebook {
  background: #1877f2;
  font-size: 18px;
}

.sv-platform-logo--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  font-size: 17px;
}

.sv-platform-logo--youtube {
  background: #f00;
  font-size: 13px;
}

.sv-platform-logo--tiktok {
  background: #111;
  font-size: 16px;
}

.sv-platform-logo--linkedin {
  background: #0a66c2;
  font-size: 12px;
}

.sv-footer-profile-arrow {
  color: var(--sv-orange);
  font-size: 12px;
}

.sv-footer-profile-empty {
  max-width: 240px;
  padding-left: 12px;
  border-left: 2px solid var(--sv-orange);
}

.sv-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

/* Shared editorial subpages */
.sv-subpage {
  min-height: 100vh;
  background: var(--sv-white);
}

.sv-inner-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 86px;
  background: var(--sv-grey);
}

.sv-inner-hero::before {
  position: absolute;
  top: 0;
  right: clamp(40px, 13vw, 220px);
  width: clamp(170px, 23vw, 350px);
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--sv-sand), rgba(255, 193, 121, 0.18));
}

.sv-inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 116px);
}

.sv-inner-title {
  max-width: 720px;
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.91;
  text-transform: uppercase;
}

.sv-inner-intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: #59697c;
  font-size: 17px;
  line-height: 1.75;
}

.sv-benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sv-benefit {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-xs);
  color: var(--sv-ink);
  background: var(--sv-white);
  font-size: 12px;
  font-weight: 700;
}

.sv-benefit::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.sv-inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sv-inner-visual {
  position: relative;
  min-height: 440px;
  margin: 0;
}

.sv-inner-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--sv-radius-lg);
  object-fit: cover;
  box-shadow: var(--sv-shadow);
}

.sv-inner-visual--contain img {
  object-fit: contain;
  background: linear-gradient(145deg, #fff 0%, #eef2f6 100%);
}

.sv-subsection {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-subsection--soft {
  background: #faf9f7;
}

.sv-process-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.sv-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(30px, 5vw, 68px);
}

.sv-form-aside {
  position: sticky;
  top: 130px;
}

.sv-form-aside h2 {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
}

.sv-form-aside p {
  margin: 18px 0 0;
  color: var(--sv-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sv-form-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-md);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow);
}

.sv-search-hero-form {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.sv-search-wizard-card {
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
  border-top: 4px solid var(--sv-orange);
  box-shadow: 0 24px 55px rgba(34, 49, 68, 0.2);
}

.sv-search-wizard-head {
  display: flex;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sv-line);
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.sv-search-wizard-head .sv-eyebrow {
  margin-bottom: 7px;
}

.sv-search-wizard-head h2 {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.sv-search-wizard-head > span {
  max-width: 190px;
  color: var(--sv-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.sv-search-wizard-actions {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sv-search-wizard-actions--end {
  justify-content: flex-end;
}

.sv-search-wizard-actions .sv-button {
  min-width: 132px;
}

.sv-search-wizard-success {
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.sv-search-process-wrap {
  max-width: 1180px;
}

.sv-search-process-wrap .sv-form-aside {
  position: static;
}

.sv-search-process-wrap .sv-form-aside > h2 {
  max-width: 690px;
}

.sv-search-process-wrap .sv-side-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sv-search-process-wrap .sv-side-step {
  padding: 22px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-search-process-wrap .sv-phone-note {
  max-width: 420px;
}

.sv-form-title {
  margin: 0 0 22px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

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

.sv-form-field {
  display: grid;
  gap: 7px;
}

.sv-form-field--wide {
  grid-column: 1 / -1;
}

.sv-form-field > label,
.sv-form-field > span {
  color: var(--sv-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sv-form-divider {
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: var(--sv-line);
}

.sv-upload {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  border: 2px dashed #c9d2dd;
  border-radius: var(--sv-radius-sm);
  cursor: pointer;
  background: var(--sv-grey);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease;
}

.sv-upload:hover {
  border-color: var(--sv-blue);
  background: #eef6fc;
}

.sv-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.sv-upload strong {
  display: block;
  color: var(--sv-ink);
  font-size: 14px;
}

.sv-upload span {
  display: block;
  margin-top: 7px;
  color: var(--sv-muted);
  font-size: 12px;
  line-height: 1.55;
}

.sv-upload-status {
  margin: 9px 0 0;
  color: var(--sv-muted);
  font-size: 12px;
}

.sv-attachment-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sv-attachment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-xs);
  background: var(--sv-white);
}

.sv-attachment strong {
  display: block;
  overflow: hidden;
  color: var(--sv-ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-attachment small {
  color: var(--sv-muted);
  font-size: 11px;
}

.sv-remove-file {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--sv-ink);
  background: var(--sv-grey);
  font-size: 19px;
}

.sv-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: var(--sv-muted);
  font-size: 12px;
  line-height: 1.55;
}

.sv-form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--sv-orange);
}

.sv-form-consent a {
  color: var(--sv-blue);
  font-weight: 700;
}

.sv-submit-wide {
  width: 100%;
  margin-top: 22px;
}

.sv-success-panel {
  padding: clamp(38px, 6vw, 64px);
  border: 1px solid #b9dfca;
  border-radius: var(--sv-radius-md);
  color: #174b36;
  background: #eaf8f0;
  text-align: center;
}

.sv-success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: #20915d;
  font-size: 30px;
  font-weight: 900;
}

.sv-success-panel h2 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  text-transform: uppercase;
}

.sv-success-panel p {
  max-width: 540px;
  margin: 12px auto 24px;
  line-height: 1.7;
}

.sv-faq-wrap {
  max-width: 920px;
  margin-inline: auto;
}

.sv-faq-list {
  display: grid;
  gap: 12px;
}

.sv-faq-item {
  overflow: hidden;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
}

.sv-faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  cursor: pointer;
  color: var(--sv-ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.sv-faq-toggle > span:last-child {
  color: var(--sv-orange);
  font-size: 24px;
  line-height: 1;
}

.sv-faq-answer {
  padding: 0 22px 21px;
  color: var(--sv-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sv-side-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.sv-side-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
}

.sv-side-step > strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 19px;
}

.sv-side-step h3 {
  margin: 1px 0 4px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.sv-side-step p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.55;
}

.sv-phone-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--sv-orange);
  border-radius: 0 var(--sv-radius-xs) var(--sv-radius-xs) 0;
  background: var(--sv-grey);
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.6;
}

.sv-phone-note a {
  color: var(--sv-ink);
  font-weight: 800;
  text-decoration: none;
}

/* About page */
.sv-about-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 88px;
  background: var(--sv-white);
}

.sv-about-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(39vw, 650px);
  height: 100%;
  content: "";
  background: var(--sv-ink);
}

.sv-about-hero::after {
  position: absolute;
  top: 0;
  right: min(39vw, 650px);
  width: 4px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--sv-orange) 0%, var(--sv-sand) 100%);
}

.sv-about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(46px, 6vw, 92px);
}

.sv-about-hero-copy {
  padding: 30px 0;
}

.sv-about-hero-title {
  max-width: 640px;
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.91;
  text-transform: uppercase;
}

.sv-about-hero-intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: #59697c;
  font-size: 17px;
  line-height: 1.75;
}

.sv-about-hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.sv-about-hero-points span {
  position: relative;
  padding-left: 29px;
  color: var(--sv-ink);
  font-size: 13px;
  font-weight: 750;
}

.sv-about-hero-points span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--sv-orange);
  content: "";
  transform: translateY(-50%);
}

.sv-about-hero-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
}

.sv-about-hero-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--sv-radius-lg);
  object-fit: cover;
  box-shadow: var(--sv-shadow);
}

.sv-about-hero-visual figcaption {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: min(330px, 74%);
  padding: 23px 25px;
  border-top: 4px solid var(--sv-orange);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-blue);
  box-shadow: var(--sv-shadow);
}

.sv-about-hero-visual figcaption span,
.sv-about-hero-visual figcaption strong {
  display: block;
}

.sv-about-hero-visual figcaption span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sv-about-hero-visual figcaption strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  line-height: 1.2;
  text-transform: uppercase;
}

.sv-about-facts {
  padding: 0;
  color: var(--sv-white);
  background: var(--sv-ink);
}

.sv-about-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sv-about-fact {
  min-height: 146px;
  padding: 29px clamp(18px, 3vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sv-about-fact:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sv-about-fact strong,
.sv-about-fact span {
  display: block;
}

.sv-about-fact strong {
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 1;
}

.sv-about-fact span {
  max-width: 180px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

/* About story — editorial asymmetric layout */
.sv-about-story {
  padding: 84px 0;
  background: var(--sv-grey);
}

.sv-about-story-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(46px, 7vw, 100px);
}

.sv-about-story-media {
  position: relative;
  min-height: 650px;
  margin: 0;
}

.sv-about-story-media::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 58%;
  height: 58%;
  border-radius: var(--sv-radius-md);
  background: var(--sv-sand);
  content: "";
}

.sv-about-story-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--sv-radius-lg);
  object-fit: cover;
  box-shadow: var(--sv-shadow);
}

.sv-about-story-media figcaption {
  position: absolute;
  right: -24px;
  bottom: 34px;
  max-width: 280px;
  padding: 20px 22px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.sv-about-story-copy {
  align-self: center;
}

.sv-about-story-title {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.sv-about-story-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #657284;
  font-size: 16px;
  line-height: 1.75;
}

.sv-about-story-list {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--sv-line);
}

.sv-about-story-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--sv-line);
}

.sv-about-story-list article > span {
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.sv-about-story-list h3 {
  margin: 0 0 5px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}

.sv-about-story-list p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* About quote — large editorial pull-quote */
.sv-about-quote {
  padding: 72px 0;
  color: var(--sv-white);
  background: var(--sv-blue);
}

.sv-about-quote blockquote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sv-about-quote blockquote p {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-transform: uppercase;
}

.sv-about-quote blockquote p::before {
  content: "„";
  color: var(--sv-sand);
}

.sv-about-quote blockquote p::after {
  content: "“";
  color: var(--sv-sand);
}

.sv-about-quote cite {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* About method — dark panel with numbered columns */
.sv-about-method {
  padding: 84px 0;
  color: var(--sv-white);
  background: var(--sv-ink);
}

.sv-about-method .sv-eyebrow {
  color: var(--sv-sand);
}

.sv-about-method .sv-heading {
  color: var(--sv-white);
}

.sv-about-method .sv-highlight {
  color: var(--sv-sand);
}

.sv-about-method-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: 60px;
}

.sv-about-method-head .sv-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.sv-about-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-about-method-grid article {
  min-height: 245px;
  padding: 34px clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-about-method-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-about-method-grid span {
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.sv-about-method-grid h3 {
  margin: 38px 0 9px;
  color: var(--sv-white);
  font-family: "Rajdhani", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

.sv-about-method-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.7;
}

/* About owner — split photo / dark copy panel */
.sv-about-owner {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-about-owner-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.sv-about-owner-photo {
  min-height: 550px;
  margin: 0;
}

.sv-about-owner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--sv-radius-lg) 0 0 var(--sv-radius-lg);
  object-fit: cover;
}

.sv-about-owner-copy {
  display: flex;
  min-height: 550px;
  justify-content: center;
  flex-direction: column;
  padding: clamp(42px, 6vw, 82px);
  border-radius: 0 var(--sv-radius-lg) var(--sv-radius-lg) 0;
  color: var(--sv-white);
  background: var(--sv-ink);
}

.sv-about-owner-copy .sv-eyebrow {
  color: var(--sv-sand);
}

.sv-about-owner-copy .sv-heading {
  color: var(--sv-white);
}

.sv-about-owner-copy blockquote {
  margin: 34px 0;
  padding-left: 24px;
  border-left: 4px solid var(--sv-orange);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2vw, 25px);
  font-style: italic;
  line-height: 1.55;
}

.sv-about-owner-meta strong,
.sv-about-owner-meta span {
  display: block;
}

.sv-about-owner-meta strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.sv-about-owner-meta span {
  margin-top: 4px;
  color: var(--sv-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-about-owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
}

.sv-about-owner-actions a {
  color: var(--sv-white);
  font-size: 12px;
  font-weight: 750;
  text-underline-offset: 5px;
}

/* Sell page */
.sv-sell-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 76px;
  color: var(--sv-white);
  background: var(--sv-ink);
}

.sv-sell-hero::before {
  position: absolute;
  top: auto;
  right: -7vw;
  bottom: -36%;
  width: min(52vw, 800px);
  height: 118%;
  border-radius: 50%;
  background: var(--sv-sand);
  opacity: 0.92;
  content: "";
}

.sv-sell-hero::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--sv-orange) 0%, var(--sv-sand) 50%, transparent 100%);
}

.sv-sell-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.sv-sell-hero .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-sell-hero-title {
  max-width: 640px;
  margin: 0;
  color: var(--sv-white);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.91;
  text-transform: uppercase;
}

.sv-sell-hero-intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.sv-sell-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.16);
}

.sv-sell-hero-points div {
  min-height: 82px;
  padding: 16px 14px;
  background: var(--sv-ink);
}

.sv-sell-hero-points strong,
.sv-sell-hero-points span {
  display: block;
}

.sv-sell-hero-points strong {
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
}

.sv-sell-hero-points span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.35;
}

.sv-sell-phone-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-decoration: none;
}

.sv-sell-phone-link strong {
  margin-left: 5px;
  color: var(--sv-white);
}

.sv-sell-hero-visual {
  position: relative;
  min-height: 540px;
}

.sv-sell-hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 49, 68, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sv-sell-hero-orbit::before,
.sv-sell-hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(34, 49, 68, 0.18);
  border-radius: 50%;
  content: "";
}

.sv-sell-hero-orbit::before {
  inset: 11%;
}

.sv-sell-hero-orbit::after {
  inset: 24%;
}

.sv-sell-hero-visual > img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: 123%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 28px 28px rgba(24, 34, 48, 0.26));
  transform: translate(-52%, -49%);
}

.sv-sell-hero-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 12px;
  width: min(280px, 62%);
  padding: 20px 22px;
  border-left: 4px solid var(--sv-orange);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow);
}

.sv-sell-hero-note span,
.sv-sell-hero-note strong {
  display: block;
}

.sv-sell-hero-note span {
  color: var(--sv-blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-sell-hero-note strong {
  margin-top: 5px;
  font-family: "Rajdhani", sans-serif;
  font-size: 19px;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Sell process — timeline */
.sv-sell-process {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-sell-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.sv-sell-section-head .sv-lead {
  margin: 0;
}

.sv-sell-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.sv-sell-timeline::before {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--sv-line);
  content: "";
}

.sv-sell-timeline-item {
  position: relative;
  padding-right: clamp(20px, 3vw, 42px);
}

.sv-sell-timeline-item .sv-process-number {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  border: 6px solid var(--sv-white);
}

.sv-sell-timeline-item:nth-child(even) .sv-process-number {
  background: var(--sv-orange);
}

.sv-sell-timeline-item h3 {
  margin: 0 0 8px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}

.sv-sell-timeline-item p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Sell form section */
.sv-sell-form-section {
  padding: 84px 0;
  background: #faf9f7;
}

.sv-sell-form-layout {
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
}

.sv-sell-form-aside {
  padding: 34px 30px;
  border-radius: var(--sv-radius-md);
  color: var(--sv-white);
  background: var(--sv-ink);
  box-shadow: var(--sv-shadow-soft);
}

.sv-sell-form-aside .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-sell-form-aside h2 {
  color: var(--sv-white);
  font-size: clamp(34px, 3.6vw, 48px);
}

.sv-sell-form-aside > p {
  color: rgba(255, 255, 255, 0.68);
}

.sv-sell-checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.sv-sell-checklist li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

.sv-sell-checklist li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--sv-orange);
  content: "✓";
  font-weight: 900;
}

.sv-sell-form-aside .sv-phone-note {
  border-left-color: var(--sv-sand);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.sv-sell-form-aside .sv-phone-note a {
  color: var(--sv-white);
}

.sv-sell-form-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  margin-bottom: 23px;
}

.sv-sell-form-heading > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.sv-sell-form-heading p {
  margin: 0 0 3px;
  color: var(--sv-orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-sell-form-heading .sv-form-title {
  margin: 0;
}

.sv-sell-value-section {
  background: var(--sv-white);
}

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

.sv-sell-value-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--sv-line);
  border-top: 4px solid var(--sv-blue);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-sell-value-grid article:nth-child(2) {
  border-top-color: var(--sv-orange);
}

.sv-sell-value-grid article:nth-child(3) {
  border-top-color: var(--sv-sand);
}

.sv-sell-value-grid span {
  color: var(--sv-orange);
  font-family: "Rajdhani", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.sv-sell-value-grid h3 {
  margin: 54px 0 10px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 23px;
  text-transform: uppercase;
}

.sv-sell-value-grid p {
  margin: 0;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.7;
}

.sv-sell-faq-section {
  background: var(--sv-grey);
}

.sv-sell-faq-wrap {
  display: grid;
  max-width: 1400px;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(38px, 7vw, 100px);
}

.sv-sell-faq-head {
  position: sticky;
  top: 130px;
}

.sv-sell-faq-head .sv-lead {
  margin-top: 20px;
}

.sv-legal-shell {
  max-width: 920px;
  margin-inline: auto;
}

.sv-legal-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-md);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-legal-notice {
  margin-bottom: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--sv-orange);
  border-radius: 0 var(--sv-radius-xs) var(--sv-radius-xs) 0;
  color: var(--sv-muted);
  background: var(--sv-grey);
  font-size: 13px;
  line-height: 1.6;
}

.sv-legal-text {
  color: #536174;
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.sv-legal-more {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--sv-line);
}

.sv-legal-more h2 {
  margin: 0 0 12px;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .sv-nav-shell {
    grid-template-columns: 1fr auto;
  }

  .sv-nav-links,
  .sv-nav-cta {
    display: none;
  }

  .sv-nav-toggle {
    display: flex;
    justify-self: end;
  }

  .sv-nav-drawer.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
  }

  .sv-nav-drawer .sv-nav-link {
    border-top: 1px solid var(--sv-line);
  }

  .sv-hero-grid,
  .sv-about-grid,
  .sv-why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .sv-inner-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 42px;
  }

  .sv-about-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 42px;
  }

  .sv-about-story-grid {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
  }

  .sv-about-owner-grid {
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
  }

  .sv-sell-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  }

  .sv-sell-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .sv-sell-timeline::before {
    display: none;
  }

  .sv-sell-form-layout {
    grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .sv-section {
    padding: 64px 0;
  }

  .sv-hero {
    padding-top: 24px;
    background: linear-gradient(180deg, var(--sv-white) 0 48%, rgba(255, 193, 121, 0.74) 48% 83%, var(--sv-grey) 83%);
  }

  .sv-hero-grid,
  .sv-about-grid,
  .sv-why-grid,
  .sv-category-layout,
  .sv-detail-layout {
    grid-template-columns: 1fr;
  }

  .sv-detail-overview .sv-detail-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-category-layout {
    grid-template-areas:
      "heading"
      "grid"
      "cta";
    row-gap: 28px;
  }

  .sv-profile-head,
  .sv-profile-layout {
    grid-template-columns: 1fr;
  }

  .sv-profile-head {
    gap: 20px;
    margin-bottom: 44px;
  }

  .sv-profile-photo {
    height: 520px;
  }

  .sv-category-cta {
    min-height: 320px;
  }

  .sv-category-cta .sv-cta-car {
    right: -7%;
    bottom: -12%;
    width: 78%;
  }

  .sv-hero-copy {
    padding-bottom: 6px;
  }

  .sv-hero-visual {
    min-height: 390px;
  }

  .sv-hero-stripe {
    display: none;
  }

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

  .sv-search-grid .sv-button {
    grid-column: span 2;
  }

  .sv-steps,
  .sv-feature-grid,
  .sv-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-testimonial-head {
    text-align: center;
  }

  .sv-testimonial-intro {
    margin-inline: auto;
  }

  .sv-testimonials {
    grid-template-columns: 1fr;
    gap: 118px;
  }

  .sv-review-section {
    padding-bottom: 160px;
  }

  .sv-contact-head,
  .sv-contact-grid {
    grid-template-columns: 1fr;
  }

  .sv-contact-head {
    justify-items: center;
    text-align: center;
  }

  .sv-contact-intro {
    margin-inline: auto;
  }

  .sv-filter-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-filter-toolbar .sv-button {
    grid-column: span 2;
  }

  .sv-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sv-inner-hero {
    padding: 132px 0 70px;
  }

  .sv-inner-hero::before {
    right: 24px;
    width: 42%;
  }

  .sv-inner-hero-grid,
  .sv-form-layout {
    grid-template-columns: 1fr;
  }

  .sv-inner-visual {
    min-height: 420px;
  }

  .sv-form-aside {
    position: static;
  }

  .sv-about-hero {
    padding-top: 132px;
  }

  .sv-about-hero::before {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 37%;
  }

  .sv-about-hero-grid,
  .sv-about-story-grid,
  .sv-about-method-head,
  .sv-about-owner-grid,
  .sv-sell-hero-grid,
  .sv-sell-section-head,
  .sv-sell-faq-wrap {
    grid-template-columns: 1fr;
  }

  .sv-about-hero::after {
    display: none;
  }

  .sv-about-hero-visual {
    min-height: 480px;
  }

  .sv-about-hero-visual figcaption {
    right: 20px;
  }

  .sv-about-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-about-story-media {
    min-height: 540px;
  }

  .sv-about-story-media figcaption {
    right: 20px;
  }

  .sv-about-method-head {
    gap: 24px;
  }

  .sv-about-method-grid {
    grid-template-columns: 1fr;
  }

  .sv-about-method-grid article {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sv-about-method-grid article:last-child {
    border-bottom: 0;
  }

  .sv-about-method-grid h3 {
    margin-top: 20px;
  }

  .sv-about-owner-photo {
    min-height: 480px;
  }

  .sv-about-owner-photo img {
    border-radius: var(--sv-radius-lg) var(--sv-radius-lg) 0 0;
  }

  .sv-about-owner-copy {
    min-height: 0;
    border-radius: 0 0 var(--sv-radius-lg) var(--sv-radius-lg);
  }

  .sv-sell-hero {
    padding-bottom: 52px;
  }

  .sv-sell-hero::before {
    bottom: -12%;
    width: 82vw;
    height: 58%;
  }

  .sv-sell-hero-grid {
    gap: 20px;
  }

  .sv-sell-hero-copy {
    padding-top: 12px;
  }

  .sv-sell-hero-visual {
    min-height: 470px;
  }

  .sv-sell-section-head {
    gap: 22px;
  }

  .sv-sell-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-sell-form-layout {
    grid-template-columns: 1fr;
  }

  .sv-sell-form-aside,
  .sv-sell-faq-head {
    position: static;
  }

  .sv-sell-value-grid {
    grid-template-columns: 1fr;
  }

  .sv-sell-value-grid article {
    min-height: 0;
  }

  .sv-sell-value-grid h3 {
    margin-top: 28px;
  }

  .sv-sell-faq-wrap {
    gap: 34px;
  }

  .sv-detail-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .sv-container {
    width: calc(100% - 28px);
  }

  .sv-nav-stage {
    padding: 10px 0;
  }

  .sv-nav-shell {
    min-height: 60px;
    padding: 0 12px;
    border-radius: var(--sv-radius-sm);
  }

  .sv-nav-wordmark {
    font-size: 19px;
  }

  .sv-nav-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .sv-hero {
    padding-bottom: 80px;
  }

  .sv-hero-title {
    font-size: clamp(52px, 17vw, 72px);
  }

  .sv-hero-visual {
    min-height: 310px;
  }

  .sv-hero-car {
    top: 0;
    left: -18%;
    width: auto;
    height: 100%;
  }

  .sv-search-panel {
    width: calc(100% - 28px);
    padding: 20px 16px;
  }

  .sv-search-grid,
  .sv-steps,
  .sv-feature-grid,
  .sv-category-grid,
  .sv-cta-grid,
  .sv-testimonials,
  .sv-filter-toolbar,
  .sv-footer-top {
    grid-template-columns: 1fr;
  }

  .sv-footer-profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-search-grid .sv-button,
  .sv-filter-toolbar .sv-button {
    grid-column: auto;
  }

  .sv-category-cta {
    min-height: 340px;
  }

  .sv-category-cta::before {
    background: linear-gradient(
      180deg,
      var(--sv-ink) 0%,
      rgba(34, 49, 68, 0.98) 42%,
      rgba(34, 49, 68, 0.48) 62%,
      rgba(34, 49, 68, 0.05) 100%
    );
  }

  .sv-category-cta .sv-cta-car {
    right: -18%;
    bottom: -8%;
    width: 128%;
  }

  .sv-profile-title {
    font-size: clamp(38px, 12vw, 50px);
  }

  .sv-profile-principles,
  .sv-profile-bottom {
    grid-template-columns: 1fr;
  }

  .sv-profile-principles {
    gap: 50px;
  }

  .sv-profile-stat {
    min-height: 150px;
  }

  .sv-profile-photo {
    height: 420px;
  }

  .sv-step {
    min-height: 170px;
  }

  .sv-mosaic {
    grid-template-rows: 130px 210px;
  }

  .sv-about-list,
  .sv-feature-list {
    grid-template-columns: 1fr;
  }

  .sv-why-grid {
    padding: 34px 24px;
  }

  .sv-why-car {
    bottom: -34px;
    width: 122%;
  }

  .sv-contact-methods {
    grid-template-columns: 1fr;
  }

  .sv-contact-info-card,
  .sv-contact-form-card {
    padding: 30px 22px;
  }

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

  .sv-contact-hours-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .sv-contact-hours-head > span {
    text-align: left;
  }

  .sv-spec-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-page-hero {
    min-height: 270px;
    padding: 126px 0 54px;
  }

  .sv-results-head,
  .sv-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .sv-detail-specs {
    grid-template-columns: 1fr;
  }

  .sv-detail-overview .sv-detail-specs {
    grid-template-columns: 1fr;
  }

  .sv-thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sv-inner-hero {
    padding: 118px 0 56px;
  }

  .sv-inner-title {
    font-size: clamp(42px, 15vw, 58px);
  }

  .sv-inner-visual {
    min-height: 320px;
  }

  .sv-subsection {
    padding: 64px 0;
  }

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

  .sv-form-card {
    padding: 24px 20px;
  }

  .sv-search-wizard-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sv-search-wizard-head > span {
    max-width: none;
    text-align: left;
  }

  .sv-search-wizard-actions .sv-button {
    min-width: 0;
    flex: 1;
  }

  .sv-search-process-wrap .sv-side-steps {
    grid-template-columns: 1fr;
  }

  .sv-about-hero {
    padding: 116px 0 60px;
  }

  .sv-about-hero-copy {
    padding: 0;
  }

  .sv-about-hero-title {
    font-size: clamp(42px, 15vw, 58px);
  }

  .sv-about-hero-points {
    gap: 8px;
  }

  .sv-about-hero-visual {
    min-height: 340px;
  }

  .sv-about-hero-visual figcaption {
    right: 12px;
    bottom: -20px;
    width: calc(100% - 24px);
  }

  .sv-about-fact {
    min-height: 124px;
    padding: 22px 16px;
  }

  .sv-about-fact strong {
    font-size: 32px;
  }

  .sv-about-story-media {
    min-height: 390px;
  }

  .sv-about-story-media::before {
    top: -10px;
    right: -10px;
  }

  .sv-about-story-media figcaption {
    right: 12px;
    bottom: 18px;
    max-width: calc(100% - 24px);
  }

  .sv-about-story-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .sv-about-quote {
    padding: 52px 0;
  }

  .sv-about-quote blockquote p {
    font-size: clamp(24px, 8vw, 32px);
  }

  .sv-about-method-grid article {
    padding: 28px 22px;
  }

  .sv-about-owner-photo {
    min-height: 350px;
  }

  .sv-about-owner-copy {
    padding: 34px 24px;
  }

  .sv-sell-hero {
    padding: 116px 0 42px;
  }

  .sv-sell-hero-title {
    font-size: clamp(42px, 15vw, 58px);
  }

  .sv-sell-hero-points {
    grid-template-columns: 1fr;
  }

  .sv-sell-hero-points div {
    min-height: 0;
    padding: 12px 14px;
  }

  .sv-sell-hero-visual {
    min-height: 330px;
  }

  .sv-sell-hero-visual > img {
    width: 142%;
  }

  .sv-sell-hero-note {
    right: 6px;
    bottom: 2px;
    width: min(260px, 82%);
  }

  .sv-sell-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sv-sell-timeline-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding-right: 0;
  }

  .sv-sell-timeline-item .sv-process-number {
    margin: 0;
  }

  .sv-sell-form-aside {
    padding: 28px 22px;
  }

  .sv-sell-form-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
  }

  .sv-sell-form-heading > span {
    width: 40px;
    height: 40px;
  }

  .sv-detail-page-section {
    padding: 64px 0 82px;
  }

  .sv-detail-list-grid {
    grid-template-columns: 1fr;
  }

  .sv-detail-heading-block {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Search order: Home hero plus compact centered wizard bar */
.sv-search-page .sv-search-order-wizard {
  scroll-margin-top: 110px;
}

.sv-search-page .sv-search-wizard-card {
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--sv-white);
  background: transparent;
  box-shadow: none;
}

.sv-search-page .sv-search-wizard-page {
  min-height: 0;
}

.sv-search-page .sv-search-wizard-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.sv-search-page .sv-search-wizard-head .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-search-page .sv-search-wizard-head h2 {
  color: var(--sv-white);
  font-size: clamp(24px, 3vw, 32px);
}

.sv-search-page .sv-search-wizard-head > span {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.58);
}

.sv-search-page .sv-search-order-wizard .sv-form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.sv-search-page .sv-search-order-wizard .sv-form-field--wide {
  grid-column: span 2;
}

.sv-search-page .sv-search-order-wizard .sv-search-wishes {
  grid-column: 1 / -1;
}

.sv-search-page .sv-search-order-wizard .sv-form-field > label,
.sv-search-page .sv-search-order-wizard .sv-form-field > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-search-page .sv-search-order-wizard .sv-form-field > label small {
  color: rgba(255, 255, 255, 0.48);
}

.sv-search-page .sv-search-order-wizard .sv-field,
.sv-search-page .sv-search-order-wizard .sv-select,
.sv-search-page .sv-search-order-wizard .sv-textarea {
  height: 44px;
  border-color: transparent;
  background: var(--sv-white);
}

.sv-search-page .sv-search-order-wizard .sv-textarea {
  min-height: 72px;
  resize: vertical;
}

.sv-search-page .sv-search-order-wizard .sv-field:focus,
.sv-search-page .sv-search-order-wizard .sv-select:focus,
.sv-search-page .sv-search-order-wizard .sv-textarea:focus {
  border-color: var(--sv-orange);
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.18);
}

.sv-search-page .sv-search-order-wizard .sv-form-consent {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.sv-search-page .sv-search-order-wizard .sv-form-consent a {
  color: var(--sv-sand);
}

.sv-search-page .sv-search-wizard-actions {
  margin-top: 18px;
  padding-top: 0;
}

@media (max-width: 820px) {
  .sv-search-page .sv-search-order-wizard .sv-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-search-page .sv-search-order-wizard .sv-form-field--wide,
  .sv-search-page .sv-search-order-wizard .sv-search-wishes {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .sv-search-page .sv-search-order-wizard {
    width: calc(100% - 24px);
    margin-top: -48px;
    padding: 22px 18px;
  }

  .sv-search-page .sv-search-wizard-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sv-search-page .sv-search-wizard-head > span {
    max-width: none;
    text-align: left;
  }

  .sv-search-page .sv-search-order-wizard .sv-form-grid {
    grid-template-columns: 1fr;
  }

  .sv-search-page .sv-search-order-wizard .sv-form-field--wide,
  .sv-search-page .sv-search-order-wizard .sv-search-wishes {
    grid-column: 1;
  }

  .sv-search-page .sv-search-wizard-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .sv-search-page .sv-search-wizard-actions--end {
    flex-direction: column;
  }

  .sv-search-page .sv-search-wizard-actions .sv-button {
    width: 100%;
  }
}

/* About hero: preserve the wider delivery-van cutout without covering the copy */
.sv-about-page .sv-hero-car--delivery-van {
  top: 12%;
  left: -2%;
  width: 112%;
  height: auto;
}

@media (max-width: 820px) {
  .sv-about-page .sv-hero-car--delivery-van {
    top: 14%;
    left: -4%;
    width: 108%;
    height: auto;
  }
}

@media (max-width: 560px) {
  .sv-about-page .sv-hero-car--delivery-van {
    top: 16%;
    left: -6%;
    width: 112%;
    height: auto;
  }
}

/* Search hero: center the wider transparent CLA curtain cutout */
.sv-search-page .sv-hero-car--cla-curtain {
  top: 0;
  left: -3%;
  width: auto;
  height: 100%;
}

@media (max-width: 820px) {
  .sv-search-page .sv-hero-car--cla-curtain {
    top: 8%;
    left: 50%;
    width: 112%;
    height: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .sv-search-page .sv-hero-car--cla-curtain {
    top: 10%;
    width: 118%;
  }
}

/* Home-consistent rebuild: About and Sell */
.sv-about-page,
.sv-sell-page {
  color: var(--sv-ink);
  background: var(--sv-white);
  font-family: "Inter", system-ui, sans-serif;
}

.sv-about-page main > .sv-section,
.sv-sell-page main > .sv-section {
  padding: 84px 0;
}

.sv-about-page main > .sv-section--compact,
.sv-sell-page main > .sv-section--compact {
  padding: 64px 0;
}

.sv-about-page main > .sv-section--grey,
.sv-sell-page main > .sv-section--grey {
  background: var(--sv-grey);
}

.sv-about-page main > .sv-about-hero,
.sv-sell-page main > .sv-sell-hero {
  padding: 54px 0 92px;
}

.sv-about-page h1,
.sv-about-page h2,
.sv-about-page h3,
.sv-sell-page h1,
.sv-sell-page h2,
.sv-sell-page h3 {
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
}

/* About: home-style white hero */
.sv-about-page .sv-about-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 92px;
  color: var(--sv-ink);
  background: var(--sv-white);
}

.sv-about-page .sv-about-hero::before,
.sv-about-page .sv-about-hero::after {
  display: none;
}

.sv-about-page .sv-about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.sv-about-page .sv-about-hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 70px;
}

.sv-about-page .sv-about-hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--sv-ink);
  font-size: clamp(54px, 6.5vw, 84px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.84;
  text-transform: uppercase;
}

.sv-about-page .sv-about-hero-intro {
  max-width: 500px;
  margin: 22px 0 26px;
  color: #617083;
  font-size: 16px;
  line-height: 1.7;
}

.sv-about-page .sv-about-hero-points {
  display: grid;
  margin: 0 0 28px;
  gap: 9px;
}

.sv-about-page .sv-about-hero-points span {
  position: relative;
  padding-left: 28px;
  color: var(--sv-ink);
  font-size: 13px;
  font-weight: 700;
}

.sv-about-page .sv-about-hero-points span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(255, 136, 0, 0.18);
  border-radius: 50%;
  content: "";
  background: var(--sv-orange);
  transform: translateY(-50%);
}

.sv-about-page .sv-about-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: visible;
  margin: 0;
}

.sv-about-page .sv-about-hero-visual::before {
  position: absolute;
  z-index: 0;
  top: -210px;
  bottom: -110px;
  left: 18%;
  width: 48%;
  border-radius: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 193, 121, 0.92) 0%, rgba(255, 193, 121, 0.58) 68%, rgba(255, 193, 121, 0) 100%);
}

.sv-about-page .sv-about-hero-visual img {
  position: absolute;
  z-index: 1;
  inset: 28px 0 18px 8%;
  display: block;
  width: 92%;
  height: calc(100% - 46px);
  border-radius: var(--sv-radius-sm);
  object-fit: cover;
  box-shadow: var(--sv-shadow);
}

.sv-about-page .sv-about-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(330px, 70%);
  padding: 20px 22px;
  border: 1px solid var(--sv-line);
  border-left: 4px solid var(--sv-orange);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-about-page .sv-about-hero-visual figcaption span,
.sv-about-page .sv-about-hero-visual figcaption strong {
  display: block;
}

.sv-about-page .sv-about-hero-visual figcaption span {
  margin-bottom: 5px;
  color: var(--sv-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sv-about-page .sv-about-hero-visual figcaption strong {
  color: var(--sv-ink);
  font-size: 19px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* About: facts reuse the home card language */
.sv-about-page .sv-about-facts {
  padding: 84px 0;
  color: var(--sv-ink);
  background: var(--sv-grey);
}

.sv-about-page .sv-about-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sv-about-page .sv-about-fact {
  min-height: 168px;
  padding: 28px 26px;
  border: 1px solid var(--sv-line);
  border-top: 4px solid var(--sv-blue);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-about-page .sv-about-fact:nth-child(even) {
  border-top-color: var(--sv-orange);
}

.sv-about-page .sv-about-fact:last-child {
  border-right: 1px solid var(--sv-line);
}

.sv-about-page .sv-about-fact strong,
.sv-about-page .sv-about-fact span {
  display: block;
}

.sv-about-page .sv-about-fact strong {
  color: var(--sv-ink);
  font-size: 38px;
  line-height: 1;
}

.sv-about-page .sv-about-fact:nth-child(even) strong {
  color: var(--sv-orange);
}

.sv-about-page .sv-about-fact > span {
  max-width: 190px;
  margin-top: 14px;
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.55;
}

.sv-about-page .sv-about-fact strong span {
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

/* About: white image-text story */
.sv-about-page .sv-about-story {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-about-page .sv-about-story-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.sv-about-page .sv-about-story-media {
  position: relative;
  min-height: 610px;
  margin: 0;
}

.sv-about-page .sv-about-story-media::before {
  top: -14px;
  right: -14px;
  width: 48%;
  height: 48%;
  border-radius: var(--sv-radius-sm);
  background: var(--sv-sand);
}

.sv-about-page .sv-about-story-media img {
  border-radius: var(--sv-radius-sm);
  box-shadow: var(--sv-shadow-soft);
}

.sv-about-page .sv-about-story-media figcaption {
  right: -16px;
  bottom: 28px;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-ink);
  font-size: 18px;
}

.sv-about-page .sv-about-story-title {
  font-size: clamp(34px, 4.8vw, 54px);
}

.sv-about-page .sv-about-story-list {
  margin-top: 30px;
}

.sv-about-page .sv-about-story-list article {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
}

.sv-about-page .sv-about-story-list article > span {
  color: var(--sv-orange);
}

.sv-about-page .sv-about-story-list h3 {
  font-size: 20px;
}

/* About: editorial quote instead of a full blue band */
.sv-about-page .sv-about-quote {
  padding: 64px 0;
  color: var(--sv-ink);
  background: var(--sv-white);
}

.sv-about-page .sv-about-quote blockquote {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px clamp(26px, 6vw, 76px);
  border-top: 1px solid var(--sv-line);
  border-bottom: 1px solid var(--sv-line);
  text-align: center;
}

.sv-about-page .sv-about-quote blockquote::before {
  display: block;
  margin-bottom: 12px;
  color: var(--sv-orange);
  content: "“";
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.7;
}

.sv-about-page .sv-about-quote blockquote p {
  margin: 0;
  color: var(--sv-ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-transform: uppercase;
}

.sv-about-page .sv-about-quote blockquote p::before,
.sv-about-page .sv-about-quote blockquote p::after {
  content: none;
}

.sv-about-page .sv-about-quote cite {
  margin-top: 20px;
  color: var(--sv-muted);
}

/* About: process cards identical to Home */
.sv-about-page .sv-about-method {
  padding: 84px 0;
  color: var(--sv-ink);
  background: var(--sv-grey);
}

.sv-about-page .sv-about-method .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-about-page .sv-about-method .sv-heading {
  color: var(--sv-ink);
}

.sv-about-page .sv-about-method .sv-highlight {
  color: var(--sv-orange);
}

.sv-about-page .sv-about-method-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 60px;
  align-items: end;
}

.sv-about-page .sv-about-method-head .sv-lead {
  margin: 0;
  color: #657284;
}

.sv-about-page .sv-about-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
  border: 0;
}

.sv-about-page .sv-about-method-grid article {
  position: relative;
  min-height: 230px;
  padding: 58px 26px 28px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-about-page .sv-about-method-grid article:last-child {
  border-right: 1px solid var(--sv-line);
}

.sv-about-page .sv-about-method-grid article > span {
  position: absolute;
  top: -22px;
  left: 26px;
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  place-items: center;
  color: var(--sv-white);
  background: var(--sv-blue);
  box-shadow: 0 0 0 6px rgba(0, 104, 184, 0.12);
}

.sv-about-page .sv-about-method-grid article:nth-child(even) > span {
  background: var(--sv-orange);
  box-shadow: 0 0 0 6px rgba(255, 136, 0, 0.12);
}

.sv-about-page .sv-about-method-grid h3 {
  margin: 18px 0 8px;
  color: var(--sv-ink);
  font-size: 22px;
}

.sv-about-page .sv-about-method-grid p {
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* About: owner uses the same white image-text composition */
.sv-about-page .sv-about-owner {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-about-page .sv-about-owner-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.sv-about-page .sv-about-owner-photo {
  min-height: 520px;
  margin: 0;
}

.sv-about-page .sv-about-owner-photo img {
  display: block;
  width: 100%;
  height: 520px;
  border-radius: var(--sv-radius-sm);
  object-fit: cover;
  box-shadow: var(--sv-shadow-soft);
}

.sv-about-page .sv-about-owner-copy {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: var(--sv-ink);
  background: transparent;
}

.sv-about-page .sv-about-owner-copy .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-about-page .sv-about-owner-copy .sv-heading {
  color: var(--sv-ink);
}

.sv-about-page .sv-about-owner-copy blockquote {
  margin: 30px 0;
  padding: 20px 0 20px 24px;
  border-left: 4px solid var(--sv-orange);
  color: #59697c;
  background: var(--sv-grey);
  font-size: clamp(18px, 2vw, 23px);
}

.sv-about-page .sv-about-owner-meta strong {
  color: var(--sv-ink);
}

.sv-about-page .sv-about-owner-meta span {
  color: var(--sv-orange);
}

.sv-about-page .sv-about-owner-actions {
  gap: 12px;
  margin-top: 28px;
}

.sv-about-page .sv-about-owner-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-xs);
  color: var(--sv-ink);
  background: var(--sv-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.sv-about-page .sv-about-owner-actions a:first-child {
  border-color: var(--sv-orange);
  color: var(--sv-white);
  background: var(--sv-orange);
}

.sv-about-page .sv-contact-section {
  background: var(--sv-grey);
}

/* About: compact team row directly above contact */
.sv-about-team-strip {
  padding: 54px 0 68px;
  background: var(--sv-white);
}

.sv-about-team-strip-inner {
  display: grid;
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--sv-line);
}

.sv-about-team-strip-copy .sv-eyebrow {
  margin-bottom: 6px;
}

.sv-about-team-strip-copy h2 {
  margin: 0;
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.sv-about-team-avatars {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.sv-about-team-avatar {
  display: grid;
  min-width: 0;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-about-team-avatar img,
.sv-about-team-initials {
  display: block;
  width: 112px;
  height: 112px;
  border: 4px solid var(--sv-white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--sv-orange), var(--sv-shadow-soft);
}

.sv-about-team-initials {
  display: grid;
  place-items: center;
  color: var(--sv-white);
  background: var(--sv-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.sv-about-team-avatar strong,
.sv-about-team-avatar small {
  display: block;
}

.sv-about-team-avatar strong {
  color: var(--sv-ink);
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}

.sv-about-team-avatar small {
  margin-top: 5px;
  color: var(--sv-muted);
  font-size: 12px;
  line-height: 1.35;
}

.sv-about-team-contact {
  display: grid;
  gap: 7px;
  margin-top: 15px;
}

.sv-about-team-contact a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--sv-ink);
  font-size: 11px;
  line-height: 1.3;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.sv-about-team-contact a:hover {
  color: var(--sv-orange-dark);
}

.sv-about-team-contact svg {
  flex: 0 0 auto;
  color: var(--sv-orange);
}

.sv-contact-section .sv-contact-map,
.sv-contact-section .sv-contact-text-list,
.sv-contact-section .sv-contact-card-head {
  position: relative;
  z-index: 1;
}

.sv-contact-section .sv-contact-map {
  overflow: hidden;
  height: 270px;
  margin-bottom: 30px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--sv-radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.sv-contact-section .sv-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.sv-contact-section .sv-contact-text-list {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.sv-contact-section .sv-contact-text-list > a {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--sv-white);
  text-decoration: none;
}

.sv-contact-section .sv-contact-text-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--sv-white);
  background: var(--sv-orange);
}

.sv-contact-section .sv-contact-text-list small,
.sv-contact-section .sv-contact-text-list strong {
  display: block;
}

.sv-contact-section .sv-contact-text-list small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sv-contact-section .sv-contact-text-list strong {
  color: var(--sv-white);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* Sell: home-style white hero with cutout vehicle and sand stripe */
.sv-sell-page .sv-sell-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 92px;
  color: var(--sv-ink);
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-hero::before,
.sv-sell-page .sv-sell-hero::after {
  display: none;
}

.sv-sell-page .sv-sell-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.sv-sell-page .sv-sell-hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 70px;
}

.sv-sell-page .sv-sell-hero .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-sell-page .sv-sell-hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--sv-ink);
  font-size: clamp(54px, 6.5vw, 84px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.84;
  text-transform: uppercase;
}

.sv-sell-page .sv-sell-hero-intro {
  max-width: 500px;
  margin: 22px 0 26px;
  color: #617083;
  font-size: 16px;
  line-height: 1.7;
}

.sv-sell-page .sv-sell-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
  background: transparent;
}

.sv-sell-page .sv-sell-hero-points > div {
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-xs);
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-hero-points strong {
  color: var(--sv-orange);
}

.sv-sell-page .sv-sell-hero-points span {
  color: #617083;
}

.sv-sell-page .sv-sell-phone-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--sv-muted);
  font-size: 12px;
  text-decoration: none;
}

.sv-sell-page .sv-sell-phone-link strong {
  margin-left: 5px;
  color: var(--sv-ink);
}

.sv-sell-page .sv-sell-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: visible;
}

.sv-sell-page .sv-sell-hero-orbit {
  position: absolute;
  z-index: 0;
  top: -210px;
  right: auto;
  bottom: -110px;
  left: 18%;
  width: 48%;
  height: auto;
  border: 0;
  border-radius: 0;
  aspect-ratio: auto;
  background: linear-gradient(180deg, rgba(255, 193, 121, 0.92) 0%, rgba(255, 193, 121, 0.58) 68%, rgba(255, 193, 121, 0) 100%);
  transform: none;
}

.sv-sell-page .sv-sell-hero-orbit::before,
.sv-sell-page .sv-sell-hero-orbit::after {
  display: none;
}

.sv-sell-page .sv-sell-hero-visual > img {
  position: absolute;
  z-index: 1;
  top: 4%;
  left: -7%;
  display: block;
  width: 118%;
  max-width: none;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(34, 49, 68, 0.19));
  transform: none;
}

.sv-sell-page .sv-sell-hero-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 8px;
  width: min(280px, 58%);
  padding: 18px 20px;
  border: 1px solid var(--sv-line);
  border-left: 4px solid var(--sv-orange);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-sell-page .sv-sell-hero-note span {
  color: var(--sv-blue);
}

.sv-sell-page .sv-sell-hero-note strong {
  color: var(--sv-ink);
}

/* Sell: the Home process card system */
.sv-sell-page .sv-sell-process {
  padding: 84px 0;
  background: var(--sv-grey);
}

.sv-sell-page .sv-sell-section-head {
  display: block;
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.sv-sell-page .sv-sell-section-head .sv-lead {
  margin: 16px auto 0;
}

.sv-sell-page .sv-sell-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sv-sell-page .sv-sell-timeline::before {
  display: none;
}

.sv-sell-page .sv-sell-timeline-item {
  position: relative;
  min-height: 230px;
  padding: 58px 24px 26px;
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-sell-page .sv-sell-timeline-item .sv-process-number {
  position: absolute;
  z-index: 1;
  top: -22px;
  left: 26px;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: var(--sv-white);
  background: var(--sv-blue);
  box-shadow: 0 0 0 6px rgba(0, 104, 184, 0.12);
}

.sv-sell-page .sv-sell-timeline-item:nth-child(even) .sv-process-number {
  background: var(--sv-orange);
  box-shadow: 0 0 0 6px rgba(255, 136, 0, 0.12);
}

.sv-sell-page .sv-sell-timeline-item h3 {
  margin: 18px 0 8px;
  color: var(--sv-ink);
  font-size: 21px;
}

.sv-sell-page .sv-sell-timeline-item p {
  color: var(--sv-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Sell: compact navy stage modeled on the Home search panel */
.sv-sell-page .sv-sell-form-section {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-form-layout {
  display: grid;
  width: calc(100% - 48px);
  max-width: 1180px;
  padding: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(30px, 5vw, 64px);
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-ink);
  box-shadow: 0 20px 44px rgba(34, 49, 68, 0.2);
}

.sv-sell-page .sv-sell-form-aside {
  padding: 16px 0;
  border-radius: 0;
  color: var(--sv-white);
  background: transparent;
  box-shadow: none;
}

.sv-sell-page .sv-sell-form-aside .sv-eyebrow {
  color: var(--sv-orange);
}

.sv-sell-page .sv-sell-form-aside h2 {
  margin: 0;
  color: var(--sv-white);
  font-size: clamp(34px, 3.8vw, 50px);
}

.sv-sell-page .sv-sell-form-aside > p {
  color: rgba(255, 255, 255, 0.68);
}

.sv-sell-page .sv-sell-checklist {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.sv-sell-page .sv-sell-checklist li {
  color: rgba(255, 255, 255, 0.82);
}

.sv-sell-page .sv-sell-form-aside .sv-phone-note {
  border-left-color: var(--sv-sand);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.sv-sell-page .sv-sell-form-aside .sv-phone-note a {
  color: var(--sv-white);
}

.sv-sell-page .sv-form-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-lg);
  color: var(--sv-ink);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow);
}

.sv-sell-page .sv-sell-form-heading {
  grid-template-columns: 48px minmax(0, 1fr);
}

.sv-sell-page .sv-sell-form-heading > span {
  background: var(--sv-blue);
}

.sv-sell-page .sv-sell-form-heading:nth-of-type(2) > span {
  background: var(--sv-orange);
}

.sv-sell-page .sv-form-title {
  color: var(--sv-ink);
}

.sv-sell-page .sv-field,
.sv-sell-page .sv-select,
.sv-sell-page .sv-textarea {
  border-radius: var(--sv-radius-xs);
  background: var(--sv-white);
}

.sv-sell-page .sv-upload {
  border-color: #d8dee6;
  border-radius: var(--sv-radius-sm);
  background: var(--sv-grey);
}

.sv-sell-page .sv-submit-wide {
  border-radius: var(--sv-radius-xs);
}

/* Sell: value cards and FAQ alternate like Home sections */
.sv-sell-page .sv-sell-value-section {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-value-section .sv-sell-section-head {
  margin-bottom: 48px;
}

.sv-sell-page .sv-sell-value-grid {
  gap: 18px;
}

.sv-sell-page .sv-sell-value-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--sv-line);
  border-top: 4px solid var(--sv-blue);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: var(--sv-shadow-soft);
}

.sv-sell-page .sv-sell-value-grid article:nth-child(2) {
  border-top-color: var(--sv-orange);
}

.sv-sell-page .sv-sell-value-grid article:nth-child(3) {
  border-top-color: var(--sv-sand);
}

.sv-sell-page .sv-sell-value-grid h3 {
  margin-top: 42px;
}

.sv-sell-page .sv-sell-faq-section {
  padding: 84px 0;
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-faq-wrap {
  display: grid;
  max-width: 1400px;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
}

.sv-sell-page .sv-sell-faq-head {
  position: sticky;
  top: 130px;
}

.sv-sell-page .sv-faq-list {
  gap: 12px;
}

.sv-sell-page .sv-faq-item {
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-white);
  box-shadow: none;
}

.sv-sell-page .sv-faq-toggle {
  color: var(--sv-ink);
  font-family: "Rajdhani", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .sv-about-page .sv-about-hero-grid,
  .sv-sell-page .sv-sell-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .sv-about-page .sv-about-hero-title,
  .sv-sell-page .sv-sell-hero-title {
    font-size: clamp(50px, 7vw, 70px);
  }

  .sv-about-page .sv-about-facts-grid,
  .sv-sell-page .sv-sell-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 18px;
  }

  .sv-about-page .sv-about-story-grid,
  .sv-about-page .sv-about-owner-grid {
    gap: 44px;
  }

  .sv-about-page .sv-about-method-head,
  .sv-sell-page .sv-sell-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sv-sell-page .sv-sell-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sv-about-page main > .sv-section,
  .sv-sell-page main > .sv-section {
    padding: 64px 0;
  }

  .sv-about-page main > .sv-about-hero,
  .sv-sell-page main > .sv-sell-hero {
    padding: 36px 0 64px;
  }

  .sv-about-page .sv-about-hero-grid,
  .sv-sell-page .sv-sell-hero-grid,
  .sv-about-page .sv-about-story-grid,
  .sv-about-page .sv-about-owner-grid,
  .sv-sell-page .sv-sell-faq-wrap {
    grid-template-columns: 1fr;
  }

  .sv-about-team-strip-inner {
    gap: 24px;
  }

  .sv-about-team-avatars {
    grid-template-columns: 1fr;
  }

  .sv-about-page .sv-about-hero-copy,
  .sv-sell-page .sv-sell-hero-copy {
    padding: 100px 0 18px;
  }

  .sv-about-page .sv-about-hero-title,
  .sv-sell-page .sv-sell-hero-title {
    font-size: clamp(48px, 14vw, 66px);
  }

  .sv-about-page .sv-about-hero-visual,
  .sv-sell-page .sv-sell-hero-visual {
    min-height: 400px;
  }

  .sv-about-page .sv-about-story-media {
    min-height: 470px;
  }

  .sv-about-page .sv-about-method-grid,
  .sv-sell-page .sv-sell-value-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sv-about-page .sv-about-owner-photo,
  .sv-about-page .sv-about-owner-photo img {
    min-height: 420px;
    height: 420px;
  }

  .sv-sell-page .sv-sell-form-layout {
    width: calc(100% - 32px);
    padding: 24px;
  }

  .sv-sell-page .sv-form-grid {
    grid-template-columns: 1fr;
  }

  .sv-sell-page .sv-sell-faq-head {
    position: static;
  }
}

@media (max-width: 520px) {
  .sv-about-page .sv-about-facts-grid,
  .sv-sell-page .sv-sell-timeline {
    grid-template-columns: 1fr;
  }

  .sv-about-page .sv-about-hero-title,
  .sv-sell-page .sv-sell-hero-title {
    font-size: 48px;
  }

  .sv-about-page .sv-about-hero-visual,
  .sv-sell-page .sv-sell-hero-visual {
    min-height: 320px;
  }

  .sv-about-page .sv-about-hero-visual img {
    inset: 18px 0 12px;
    width: 100%;
    height: calc(100% - 30px);
  }

  .sv-about-page .sv-about-hero-visual figcaption,
  .sv-sell-page .sv-sell-hero-note {
    right: 0;
    bottom: -8px;
    width: calc(100% - 24px);
  }

  .sv-sell-page .sv-sell-hero-points {
    grid-template-columns: 1fr;
  }

  .sv-sell-page .sv-sell-hero-visual > img {
    top: 8%;
    left: -4%;
    width: 112%;
    height: 82%;
  }

  .sv-about-page .sv-about-story-media {
    min-height: 390px;
  }

  .sv-about-page .sv-about-story-media figcaption {
    right: 0;
    bottom: 20px;
  }

  .sv-about-page .sv-about-quote blockquote {
    padding: 38px 10px;
  }

  .sv-about-page .sv-about-owner-photo,
  .sv-about-page .sv-about-owner-photo img {
    min-height: 340px;
    height: 340px;
  }

  .sv-about-page .sv-about-owner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sv-about-team-strip {
    padding: 22px 0 42px;
  }

  .sv-about-team-avatars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sv-about-team-avatar {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .sv-about-team-avatar img,
  .sv-about-team-initials {
    width: 88px;
    height: 88px;
  }

  .sv-sell-page .sv-sell-form-layout,
  .sv-sell-page .sv-form-card {
    padding: 22px;
  }
}

/* Sell wizard: exact Home search-panel shell */
.sv-sell-page .sv-sell-wizard {
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  max-width: 1180px;
  margin: -74px auto 0;
  padding: 24px 26px 26px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-white);
  background: var(--sv-ink);
  box-shadow: 0 20px 44px rgba(34, 49, 68, 0.2);
}

.sv-sell-page .sv-sell-wizard-page {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sv-sell-page .sv-sell-wizard-page-head {
  display: flex;
  margin-bottom: 18px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.sv-sell-page .sv-sell-wizard-page-head p {
  margin: 0 0 3px;
  color: var(--sv-orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sv-sell-page .sv-sell-wizard-page-head h3 {
  margin: 0;
  color: var(--sv-white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.sv-sell-page .sv-sell-wizard-page-head > span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.sv-sell-page .sv-sell-wizard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sv-sell-page .sv-sell-wizard-grid--details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.sv-sell-page .sv-sell-wizard .sv-form-field {
  gap: 7px;
}

.sv-sell-page .sv-sell-wizard .sv-form-field > label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-sell-page .sv-sell-wizard .sv-form-field > label small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.sv-sell-page .sv-sell-wizard .sv-field,
.sv-sell-page .sv-sell-wizard .sv-select,
.sv-sell-page .sv-sell-wizard .sv-textarea {
  height: 46px;
  border-color: transparent;
  border-radius: var(--sv-radius-xs);
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-wizard .sv-field:focus,
.sv-sell-page .sv-sell-wizard .sv-select:focus,
.sv-sell-page .sv-sell-wizard .sv-textarea:focus {
  border-color: var(--sv-orange);
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.18);
}

.sv-sell-page .sv-sell-wizard .sv-textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.sv-sell-page .sv-sell-wizard-upload {
  grid-column: 1 / -1;
}

.sv-sell-page .sv-sell-wizard-grid--details .sv-sell-wizard-upload {
  grid-column: auto;
}

.sv-sell-page .sv-sell-wizard .sv-upload {
  min-height: 132px;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: var(--sv-radius-xs);
  background: rgba(255, 255, 255, 0.08);
}

.sv-sell-page .sv-sell-wizard .sv-upload strong {
  color: var(--sv-white);
}

.sv-sell-page .sv-sell-wizard .sv-upload span,
.sv-sell-page .sv-sell-wizard .sv-upload-status {
  color: rgba(255, 255, 255, 0.56);
}

.sv-sell-page .sv-sell-wizard .sv-attachment {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--sv-white);
  background: rgba(255, 255, 255, 0.08);
}

.sv-sell-page .sv-sell-wizard-summary {
  display: grid;
  margin-bottom: 18px;
  padding: 14px 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-radius: var(--sv-radius-xs);
  background: rgba(255, 255, 255, 0.08);
}

.sv-sell-page .sv-sell-wizard-summary > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sv-sell-page .sv-sell-wizard-summary > strong {
  overflow: hidden;
  color: var(--sv-white);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sv-sell-page .sv-sell-wizard-summary > button {
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--sv-orange);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-sell-page .sv-sell-wizard-consent {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.sv-sell-page .sv-sell-wizard-consent a {
  color: var(--sv-sand);
}

.sv-sell-page .sv-sell-wizard-error {
  margin: 16px 0 0;
  border-radius: var(--sv-radius-xs);
}

.sv-sell-page .sv-sell-wizard-actions {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sv-sell-page .sv-sell-wizard-actions--end {
  justify-content: flex-end;
}

.sv-sell-page .sv-sell-wizard-actions .sv-button--light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--sv-white);
  background: transparent;
}

.sv-sell-page .sv-sell-wizard-success {
  padding: 34px;
  border-radius: var(--sv-radius-sm);
  color: var(--sv-ink);
  background: var(--sv-white);
}

.sv-sell-page .sv-sell-wizard-success .sv-button--light {
  border-color: var(--sv-line);
  color: var(--sv-ink);
}

@media (max-width: 820px) {
  .sv-sell-page .sv-sell-wizard-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sv-sell-page .sv-sell-wizard-page-head > span {
    text-align: left;
  }

  .sv-sell-page .sv-sell-wizard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sv-sell-page .sv-sell-wizard-grid--contact .sv-form-field:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .sv-sell-page .sv-sell-wizard {
    width: calc(100% - 24px);
    margin-top: -48px;
    padding: 22px 18px;
  }

  .sv-sell-page .sv-sell-wizard-grid {
    grid-template-columns: 1fr;
  }

  .sv-sell-page .sv-sell-wizard-grid--details .sv-sell-wizard-upload {
    grid-column: 1;
  }

  .sv-sell-page .sv-sell-wizard-grid--contact .sv-form-field:last-child {
    grid-column: auto;
  }

  .sv-sell-page .sv-sell-wizard-summary {
    grid-template-columns: 1fr auto;
  }

  .sv-sell-page .sv-sell-wizard-summary > span {
    grid-column: 1 / -1;
  }

  .sv-sell-page .sv-sell-wizard-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .sv-sell-page .sv-sell-wizard-actions--end {
    flex-direction: column;
  }

  .sv-sell-page .sv-sell-wizard-actions .sv-button {
    width: 100%;
  }
}
