:root {
  --ink: #161616;
  --muted: #66666b;
  --line: #e4e4e7;
  --paper: #fafafa;
  --panel: #ffffff;
  --red: #ef1b1b;
  --black: #161616;
  --soft-red: #fff2f2;
  --steel: #eeeeee;
  --shadow: 0 24px 70px rgba(22, 22, 22, 0.14);
  --shadow-soft: 0 16px 42px rgba(22, 22, 22, 0.08);
  --cream: #fff8f8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 27, 27, 0.08), transparent 34vw),
    linear-gradient(180deg, #fff, var(--paper) 38%, #fff);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(250, 250, 250, 0.92);
  border-bottom: 1px solid rgba(228, 228, 231, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.contact-links a:hover {
  color: var(--red);
}

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

.lang-switch {
  display: inline-flex;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-button {
  min-width: 40px;
  min-height: 34px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.lang-button.active {
  color: #fff;
  background: var(--red);
}

.header-cta,
.button,
.message-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
}

.header-cta,
.button.primary,
.message-card button {
  color: #fff;
  background: var(--red);
}

.header-cta:hover,
.button.primary:hover,
.message-card button:hover {
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(48px, 7vw, 94px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 27, 27, 0.18), transparent 22vw),
    radial-gradient(circle at 14% 78%, rgba(22, 22, 22, 0.08), transparent 24vw),
    linear-gradient(115deg, rgba(239, 27, 27, 0.1), rgba(22, 22, 22, 0.05) 44%, rgba(250, 250, 250, 0) 72%),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: rgba(239, 27, 27, 0.08);
  border: 1px solid rgba(239, 27, 27, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 7px 10px;
  color: var(--red);
  background: var(--soft-red);
  border: 1px solid rgba(239, 27, 27, 0.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(29px, 3.1vw, 40px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.brand-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: center;
  max-width: 470px;
  margin: 0 0 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 228, 231, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.brand-card img {
  display: block;
  grid-row: span 2;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand-card strong {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-card span {
  width: fit-content;
  padding: 5px 8px;
  color: var(--black);
  background: var(--soft-red);
  border: 1px solid rgba(239, 27, 27, 0.16);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.founder-note {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 720px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.founder-photo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  object-position: 50% 30%;
  border: 2px solid rgba(239, 27, 27, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(19, 19, 19, 0.16);
}

.founder-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.founder-note span {
  color: var(--muted);
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--social-color, var(--red));
  font-weight: 800;
}

.founder-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.founder-link:hover {
  color: var(--social-hover, var(--ink));
}

.social-facebook {
  --social-color: #1877f2;
  --social-hover: #0f5ec7;
}

.social-whatsapp {
  --social-color: #25d366;
  --social-hover: #1da851;
}

.social-viber {
  --social-color: #7360f2;
  --social-hover: #5d4bd0;
}

.social-telegram {
  --social-color: #229ed9;
  --social-hover: #1687bd;
}

.social-maps {
  --social-color: #4285f4;
  --social-hover: #2b6fd6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 16px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 0 0 16px;
}

.hero-proof figure {
  position: relative;
  min-height: 112px;
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-proof img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  opacity: 0.9;
}

.hero-proof figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(22, 22, 22, 0.74);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.button.secondary {
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 30px;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(239, 27, 27, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.08);
  font-weight: 800;
}

.rating-badge:hover {
  border-color: var(--red);
}

.stars {
  color: #fbbc04;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.car-card {
  width: min(100%, 520px);
  padding: 26px;
  background:
    linear-gradient(180deg, #fff, #fff8f8 160%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.summary-card {
  position: relative;
  overflow: hidden;
}

.summary-card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.summary-text {
  color: var(--muted);
  font-size: 17px;
}

.decision-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 6px;
}

.decision-list div {
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(22, 22, 22, 0.05);
}

.decision-list strong,
.decision-list span {
  display: block;
}

.decision-list strong {
  margin-bottom: 2px;
  font-size: 18px;
}

.decision-list span {
  color: var(--muted);
  font-size: 14px;
}

.compact-list {
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.summary-logo {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 82px;
  height: 82px;
  object-fit: contain;
  opacity: 0.12;
}

.summary-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--red);
  background: #fff2f2;
  border: 1px solid rgba(239, 27, 27, 0.18);
  border-radius: 8px;
}

.summary-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.card-top strong {
  color: var(--green);
}

.logo-stage {
  display: grid;
  min-height: 250px;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(239, 27, 27, 0.13), transparent 38%),
    linear-gradient(145deg, #ffffff, #f3f3f3);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-stage img {
  width: min(72%, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(18, 32, 35, 0.12));
}

.car-visual {
  position: relative;
  height: 210px;
  margin-bottom: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(215, 243, 107, 0.55), transparent 38%),
    linear-gradient(145deg, #ecf3f2, #cfdcda);
  border-radius: 8px;
}

.car-body {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 54px;
  height: 76px;
  background: var(--green-dark);
  border-radius: 50px 68px 20px 20px;
}

.car-body::before {
  position: absolute;
  content: "";
  left: 22%;
  top: -48px;
  width: 43%;
  height: 64px;
  background: var(--green);
  border-radius: 58px 58px 0 0;
  transform: skewX(-16deg);
}

.car-body::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 18px;
  width: 54px;
  height: 10px;
  background: var(--lime);
  border-radius: 99px;
}

.wheel {
  position: absolute;
  bottom: 38px;
  width: 54px;
  height: 54px;
  background: #17282b;
  border: 10px solid #f7faf9;
  border-radius: 50%;
}

.wheel-left {
  left: 22%;
}

.wheel-right {
  right: 22%;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.35;
}

.check-list li > span:first-child {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--red);
  border-radius: 50%;
}

.check-list li > span:last-child {
  min-width: 0;
}

.section,
.gallery-section,
.process,
.contact-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, #fff, #fff 60%, #fff8f8 150%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(22, 22, 22, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card::after {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 108px;
  height: 108px;
  content: "";
  background: rgba(239, 27, 27, 0.06);
  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 27, 27, 0.28);
  box-shadow: 0 20px 50px rgba(22, 22, 22, 0.1);
}

.service-card p,
.contact-section p,
.timeline span {
  color: var(--muted);
}

.gallery-section {
  background:
    linear-gradient(180deg, #fff, #fff8f8);
}

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

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(22, 22, 22, 0.12);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 10px;
  color: #fff;
  background: rgba(22, 22, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--red);
  background: var(--soft-red);
  border: 1px solid rgba(239, 27, 27, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process {
  background: #fff;
}

.positioning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(239, 27, 27, 0.12), transparent 26vw),
    linear-gradient(135deg, #fff, #fff8f8);
  border-block: 1px solid var(--line);
}

.positioning-section h2 {
  margin-bottom: 0;
  max-width: 620px;
}

.positioning-section .eyebrow {
  color: var(--red);
  background: #fff;
  border-color: rgba(239, 27, 27, 0.22);
}

.positioning-card {
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 1px solid rgba(239, 27, 27, 0.18);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.positioning-card p {
  margin: 0;
  color: #343438;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.positioning-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.positioning-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  color: var(--ink);
  background: var(--soft-red);
  border: 1px solid rgba(239, 27, 27, 0.14);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.25;
}

.positioning-list li::before {
  position: absolute;
  left: 13px;
  top: 1.02em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.contact-section .eyebrow {
  color: #fff;
  background: rgba(239, 27, 27, 0.34);
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(239, 27, 27, 0.14), transparent 30vw),
    linear-gradient(135deg, rgba(239, 27, 27, 0.09), rgba(22, 22, 22, 0.04)),
    #fff;
}

.pricing-heading {
  margin-bottom: 28px;
}

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

.price-card,
.savings-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: rgba(239, 27, 27, 0.35);
  box-shadow: 0 18px 50px rgba(239, 27, 27, 0.12);
}

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

.price-card span {
  display: block;
  min-height: 44px;
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--black);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
}

.receive-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: start;
  margin-top: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border: 1px solid rgba(239, 27, 27, 0.2);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.receive-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

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

.receive-list li {
  position: relative;
  min-height: 48px;
  padding: 12px 12px 12px 36px;
  color: var(--ink);
  background: var(--soft-red);
  border: 1px solid rgba(239, 27, 27, 0.14);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.25;
}

.receive-list li::before {
  position: absolute;
  left: 13px;
  top: 1.12em;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.savings-card {
  margin-top: 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(239, 27, 27, 0.35), transparent 22vw),
    var(--black);
  color: #fff;
}

.savings-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.savings-card p {
  margin: 0;
  color: #dff2ed;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding: 28px;
  min-height: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  counter-increment: step;
}

.timeline li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-weight: 800;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background:
    radial-gradient(circle at 14% 22%, rgba(239, 27, 27, 0.28), transparent 25vw),
    #161616;
  color: #fff;
}

.contact-section::after {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section p {
  color: #dff2ed;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.contact-links .icon-link {
  width: 48px;
  padding: 0;
  color: var(--social-color, #fff);
  background: #fff;
}

.icon-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-links .icon-link:hover {
  color: #fff;
  background: var(--social-hover, var(--red));
  border-color: transparent;
}

.message-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-section .message-card p {
  color: var(--muted);
}

.message-card h3 {
  margin: 0;
  font-size: 28px;
}

.message-card .eyebrow {
  margin-bottom: 0;
  color: var(--red);
}

.contact-section .message-card .eyebrow {
  color: var(--red);
  background: var(--soft-red);
  border-color: rgba(239, 27, 27, 0.18);
}

.message-list {
  display: grid;
  gap: 10px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.message-list li {
  position: relative;
  padding-left: 22px;
  color: #3d3d42;
}

.message-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.message-card .form-note {
  color: #3d3d42;
  font-size: 15px;
}

.contact-section .message-card .form-note {
  color: #3d3d42;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .contact-section,
  .positioning-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(36px, 6.4vw, 52px);
  }

  h2 {
    font-size: clamp(29px, 5vw, 38px);
  }

  .service-grid,
  .gallery-grid,
  .price-grid,
  .timeline,
  .receive-card {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 15px;
  }

  .lang-button {
    min-width: 36px;
    min-height: 32px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 32px;
    line-height: 1.06;
  }

  h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .eyebrow {
    margin-bottom: 12px;
    padding: 6px 8px;
    font-size: 11px;
    letter-spacing: 0.01em;
  }

  .hero {
    padding-top: 40px;
  }

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

  .brand-card {
    padding: 12px;
  }

  .brand-card img {
    width: 56px;
    height: 56px;
  }

  .brand-card strong {
    font-size: 30px;
  }

  .founder-note {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .founder-photo {
    width: 92px;
    height: 92px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof figure,
  .hero-proof img {
    min-height: 112px;
  }

  .hero-proof figcaption {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 4px 6px;
    font-size: 11px;
    text-align: center;
  }

  .car-card,
  .message-card,
  .price-card,
  .savings-card,
  .service-card {
    padding: 20px;
  }

  .hero-stats,
  .service-grid,
  .gallery-grid,
  .price-grid,
  .timeline,
  .receive-card {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .gallery-grid figure {
    aspect-ratio: 4 / 3;
  }

  .contact-links .icon-link {
    width: 46px;
  }
}
