:root {
  --pda-accent: #cf4535;
  --pda-accent-hover: #b6372b;
  --pda-accent-soft: #f8ddd8;
  --pda-navy: #0f2235;
  --pda-navy-2: #17334b;
  --pda-text: #142333;
  --pda-muted: #5e6b78;
  --pda-line: #dce3e9;
  --pda-soft: #f4f6f7;
  --pda-cream: #f7f4ee;
  --pda-white: #ffffff;
  --pda-success: #1f7a55;
  --pda-radius-lg: 34px;
  --pda-radius-md: 24px;
  --pda-radius-sm: 16px;
  --pda-shadow: 0 24px 70px rgba(15, 34, 53, 0.12);
  --pda-max: 1280px;
}

.pda-section,
.pda-section * {
  box-sizing: border-box;
}

.pda-section {
  position: relative;
  width: 100%;
  padding: clamp(68px, 7vw, 112px) 24px;
  overflow: hidden;
  color: var(--pda-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.55;
}

.pda-container {
  position: relative;
  z-index: 2;
  width: min(100%, var(--pda-max));
  margin: 0 auto;
}

.pda-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--pda-accent-soft);
  color: #a72f24;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.pda-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: currentColor;
}

.pda-title {
  max-width: 940px;
  margin: 0;
  color: inherit;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.pda-title--section {
  max-width: 900px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.pda-title em {
  color: var(--pda-accent);
  font-style: normal;
}

.pda-lead {
  max-width: 790px;
  margin: 24px 0 0;
  color: var(--pda-muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

.pda-head,
.pda-process__head,
.pda-route__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 46px;
}

.pda-head--action > div:first-child {
  min-width: 0;
}

.pda-head__side {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.pda-updated {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--pda-line);
  border-radius: 999px;
  background: var(--pda-white);
  color: var(--pda-muted);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 34, 53, 0.06);
}

.pda-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pda-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border: 1px solid var(--pda-accent);
  border-radius: 999px;
  background: var(--pda-accent);
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  box-shadow: 0 13px 30px rgba(207, 69, 53, 0.24);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.pda-btn:hover,
.pda-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--pda-accent-hover);
  border-color: var(--pda-accent-hover);
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(182, 55, 43, 0.28);
}

.pda-btn span {
  font-size: 21px;
  line-height: 1;
}

.pda-btn--secondary {
  border-color: #aeb9c3;
  background: transparent;
  color: var(--pda-text) !important;
  box-shadow: none;
}

.pda-btn--secondary:hover,
.pda-btn--secondary:focus-visible {
  border-color: var(--pda-navy);
  background: var(--pda-navy);
  color: #fff !important;
}

/* Hero */
.pda-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pda-cream) 0%, #fff 56%, #f8ddd8 100%);
}

.pda-hero::before {
  content: "";
  position: absolute;
  right: -220px;
  top: -250px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(207, 69, 53, 0.11);
}

.pda-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 6vw, 90px);
}

.pda-hero__visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 40px;
  background: var(--pda-navy);
  box-shadow: var(--pda-shadow);
}

.pda-hero__image {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.pda-route-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid var(--pda-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 34, 53, 0.06);
}

.pda-route-pill span {
  color: var(--pda-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pda-route-pill strong {
  color: var(--pda-navy);
  font-size: 14px;
}

.pda-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 214px;
  flex-direction: column;
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(15, 34, 53, 0.24);
  backdrop-filter: blur(10px);
}

.pda-stat strong {
  color: var(--pda-navy);
  font-size: 27px;
  line-height: 1.05;
}

.pda-stat span {
  margin-top: 8px;
  color: var(--pda-muted);
  font-size: 13px;
  line-height: 1.35;
}

.pda-stat--time {
  left: 24px;
  top: 28px;
}

.pda-stat--advance {
  right: 24px;
  bottom: 28px;
}

.pda-car-art {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background: linear-gradient(150deg, #20374d, #0a1622);
}

.pda-car-art__sun {
  position: absolute;
  right: -30px;
  top: -70px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pda-accent), #ef836d);
}

.pda-car-art__road {
  position: absolute;
  right: -12%;
  bottom: -80px;
  left: -12%;
  height: 190px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  background: #05090d;
  transform: rotate(-8deg);
}

.pda-car-art__car {
  position: absolute;
  right: 12%;
  bottom: 120px;
  left: 12%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px 110px 26px 26px;
  background: linear-gradient(155deg, #fff, #bbc5cf);
  color: var(--pda-navy);
  font-weight: 900;
  letter-spacing: 0.25em;
  box-shadow: 0 35px 40px rgba(0, 0, 0, 0.4);
  transform: skewX(-8deg);
}

/* Trust */
.pda-trust {
  padding-top: 26px;
  padding-bottom: 26px;
  background: var(--pda-navy);
  color: #fff;
}

.pda-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
}

.pda-trust__item {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--pda-navy);
}

.pda-trust__item strong {
  color: #fff;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.12;
}

.pda-trust__item span {
  margin-top: 7px;
  color: #c5d0da;
  font-size: 14px;
}

/* Stock */
.pda-stock,
.pda-inspection,
.pda-cases,
.pda-reviews {
  background: #fff;
}

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

.pda-choice-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--pda-line);
  border-radius: var(--pda-radius-lg);
  background: var(--pda-soft);
}

.pda-choice-card--accent {
  border-color: var(--pda-accent);
  background: var(--pda-accent);
  color: #fff;
}

.pda-choice-card__num {
  position: absolute;
  right: 28px;
  top: 20px;
  color: currentColor;
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.1;
}

.pda-choice-card h3 {
  position: relative;
  margin: 54px 0 15px;
  color: inherit;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.1;
}

.pda-choice-card p {
  position: relative;
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--pda-muted);
  font-size: 17px;
  line-height: 1.62;
}

.pda-choice-card--accent p {
  color: #fff;
}

.pda-choice-card--accent .pda-btn--secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff !important;
}

.pda-choice-card--accent .pda-btn--secondary:hover {
  border-color: #fff;
  background: #fff;
  color: var(--pda-navy) !important;
}

/* Benefits */
.pda-benefits,
.pda-popular,
.pda-faq {
  background: var(--pda-soft);
}

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

.pda-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--pda-line);
  border-radius: var(--pda-radius-md);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pda-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pda-shadow);
}

.pda-card__icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--pda-accent-soft);
  color: #a72f24;
  font-size: 17px;
  font-weight: 900;
}

.pda-card h3 {
  margin: 24px 0 12px;
  color: var(--pda-navy);
  font-size: 23px;
  line-height: 1.2;
}

.pda-card p {
  margin: 0;
  color: var(--pda-muted);
  line-height: 1.58;
}

/* Process */
.pda-process {
  background: var(--pda-navy);
  color: #fff;
}

.pda-process .pda-eyebrow,
.pda-route .pda-eyebrow,
.pda-final .pda-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd3cc;
}

.pda-process .pda-title em,
.pda-route .pda-title em,
.pda-final .pda-title em {
  color: #ff9b8b;
}

.pda-process .pda-lead {
  color: #cad5de;
}

.pda-total {
  display: flex;
  min-width: 190px;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 22px 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.pda-total span {
  color: #c8d2dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pda-total strong {
  margin-top: 7px;
  color: #fff;
  font-size: 29px;
  line-height: 1.1;
}

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

.pda-step {
  display: grid;
  min-height: 220px;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.pda-step__num {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--pda-accent);
  color: #fff;
  font-weight: 900;
}

.pda-step h3 {
  margin: 4px 0 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.22;
}

.pda-step p {
  margin: 0;
  color: #cbd5df;
  line-height: 1.58;
}

/* Price */
.pda-price {
  background: var(--pda-cream);
}

.pda-price__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
  align-items: start;
}

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

.pda-price__part {
  display: grid;
  min-height: 128px;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 23px;
  border: 1px solid var(--pda-line);
  border-radius: 20px;
  background: #fff;
}

.pda-price__part > span {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--pda-accent-soft);
  color: #9f2e23;
  font-size: 13px;
  font-weight: 900;
}

.pda-price__part strong {
  display: block;
  color: var(--pda-navy);
  font-size: 18px;
  line-height: 1.25;
}

.pda-price__part small {
  display: block;
  margin-top: 8px;
  color: var(--pda-muted);
  font-size: 14px;
  line-height: 1.5;
}

.pda-price__aside {
  position: sticky;
  top: 24px;
  padding: 32px;
  border-radius: var(--pda-radius-lg);
  background: var(--pda-navy);
  color: #fff;
  box-shadow: var(--pda-shadow);
}

.pda-price__aside > span {
  color: #cbd6df;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pda-price__aside > strong {
  display: block;
  margin: 14px 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}

.pda-price__aside p {
  margin: 0 0 26px;
  color: #d0dae2;
  line-height: 1.58;
}

/* Inspection */
.pda-inspection__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  align-items: center;
  gap: clamp(42px, 6vw, 80px);
}

.pda-list-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.pda-list-columns > div {
  padding: 24px;
  border: 1px solid var(--pda-line);
  border-radius: 20px;
  background: var(--pda-soft);
}

.pda-list-columns h3 {
  margin: 0 0 16px;
  color: var(--pda-navy);
  font-size: 20px;
}

.pda-list-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pda-list-columns li {
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
  color: var(--pda-muted);
}

.pda-list-columns li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pda-success);
  font-weight: 900;
}

.pda-inspection__visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--pda-navy);
  box-shadow: var(--pda-shadow);
}

.pda-inspection__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.pda-inspection__badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(15, 34, 53, 0.93);
  color: #fff;
  font-weight: 750;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

/* Route: redesigned for contrast */
.pda-route {
  background: linear-gradient(135deg, var(--pda-navy) 0%, #17334b 100%);
  color: #fff;
}

.pda-route .pda-title {
  color: #fff;
}

.pda-total--light {
  border-color: rgba(255, 255, 255, 0.22);
  background: #fff;
}

.pda-total--light span {
  color: var(--pda-muted);
}

.pda-total--light strong {
  color: var(--pda-navy);
}

.pda-route__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pda-route__line::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 29px;
  left: 8%;
  border-top: 2px dashed rgba(255, 255, 255, 0.34);
}

.pda-route__stage {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 76px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.pda-route__dot {
  position: absolute;
  left: 24px;
  top: 0;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--pda-navy-2);
  border-radius: 50%;
  background: var(--pda-accent);
  color: #fff;
  font-weight: 900;
}

.pda-route__stage > span {
  color: #ffb6aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pda-route__stage h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.pda-route__stage small {
  color: #cbd6df;
  font-size: 14px;
  line-height: 1.5;
}

.pda-route__note {
  max-width: 900px;
  margin: 30px 0 0;
  color: #d1dbe3;
  font-size: 17px;
  line-height: 1.62;
}

/* Real car cards */
.pda-cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pda-car-card {
  overflow: hidden;
  border: 1px solid var(--pda-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 34, 53, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pda-car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pda-shadow);
}

.pda-car-card__image {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: var(--pda-soft);
}

.pda-car-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pda-car-card__image > span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pda-success);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pda-car-card__body {
  padding: 26px;
}

.pda-car-card h3 {
  margin: 0;
  color: var(--pda-navy);
  font-size: 24px;
  line-height: 1.2;
}

.pda-car-card__body > p {
  min-height: 50px;
  margin: 12px 0 20px;
  color: var(--pda-muted);
  font-size: 15px;
  line-height: 1.5;
}

.pda-car-card dl {
  margin: 0;
}

.pda-car-card dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--pda-line);
}

.pda-car-card dt {
  color: var(--pda-muted);
  font-size: 13px;
}

.pda-car-card dd {
  margin: 0;
  color: var(--pda-navy);
  font-weight: 800;
  text-align: right;
}

.pda-car-card__price dd {
  color: #a72f24;
  font-size: 22px;
}

.pda-car-card__note {
  display: block;
  margin-top: 14px;
  color: var(--pda-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pda-price-disclaimer {
  max-width: 900px;
  margin: 26px 0 0;
  color: var(--pda-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Popular models */
.pda-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pda-popular__card {
  position: relative;
  min-height: 205px;
  padding: 26px;
  border: 1px solid var(--pda-line);
  border-radius: 22px;
  background: #fff;
}

.pda-popular__card > span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pda-accent-soft);
  color: #9f2e23;
  font-size: 12px;
  font-weight: 800;
}

.pda-popular__card h3 {
  margin: 20px 0 9px;
  color: var(--pda-navy);
  font-size: 24px;
  line-height: 1.2;
}

.pda-popular__card p {
  margin: 0 0 22px;
  color: var(--pda-muted);
  line-height: 1.5;
}

.pda-popular__card a {
  color: #9f2e23;
  font-weight: 800;
  text-decoration: none;
}

.pda-popular__card a:hover {
  text-decoration: underline;
}

/* Video reviews */
.pda-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pda-review-card {
  overflow: hidden;
  border: 1px solid var(--pda-line);
  border-radius: 28px;
  background: var(--pda-soft);
  box-shadow: 0 14px 42px rgba(15, 34, 53, 0.08);
}

.pda-review-card__media {
  display: flex;
  min-height: 480px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #07121c;
}

.pda-review-card__media video {
  display: block;
  width: 100%;
  height: 560px;
  background: #07121c;
  object-fit: contain;
}

.pda-review-card__empty {
  padding: 30px;
  color: #fff;
  text-align: center;
}

.pda-review-card__body {
  padding: 24px 26px 28px;
}

.pda-review-card__body h3 {
  margin: 0 0 10px;
  color: var(--pda-navy);
  font-size: 23px;
}

.pda-review-card__body p {
  margin: 0;
  color: var(--pda-muted);
  line-height: 1.58;
}

/* FAQ */
.pda-faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.pda-faq__items details {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--pda-line);
  border-radius: 18px;
  background: #fff;
}

.pda-faq__items summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 22px;
  color: var(--pda-navy);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.pda-faq__items summary::-webkit-details-marker {
  display: none;
}

.pda-faq__items summary span {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pda-accent-soft);
  color: #9f2e23;
}

.pda-faq__items details[open] summary span {
  transform: rotate(45deg);
}

.pda-faq__items details > div {
  padding: 0 22px 22px;
  color: var(--pda-muted);
  line-height: 1.62;
}

/* Telegram */
.pda-telegram {
  background: #fff;
}

.pda-telegram__box {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 34px;
  background: linear-gradient(135deg, #eaf6ff 0%, #f8fbfd 50%, #f8ddd8 100%);
  box-shadow: var(--pda-shadow);
}

.pda-telegram__icon {
  display: flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: #229ed9;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.pda-telegram__box p {
  max-width: 730px;
  margin: 18px 0 0;
  color: var(--pda-muted);
  font-size: 17px;
  line-height: 1.58;
}

/* Final CTA */
.pda-final {
  background: var(--pda-navy);
  color: #fff;
}

.pda-final__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  align-items: center;
  gap: 44px;
}

.pda-final .pda-title {
  color: #fff;
}

.pda-final .pda-lead {
  color: #ccd7e0;
}

.pda-final .pda-btn--secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff !important;
}

.pda-final .pda-btn--secondary:hover {
  border-color: #fff;
  background: #fff;
  color: var(--pda-navy) !important;
}

.pda-final__contacts {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.pda-final__contacts span {
  color: #cbd6df;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pda-final__contacts a {
  margin-top: 15px;
  color: #fff !important;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.12;
  text-decoration: none !important;
}

.pda-final__contacts strong {
  margin-top: 12px;
  color: #ffb6aa;
  font-size: 18px;
}

.pda-final__contacts small {
  margin-top: 18px;
  color: #cbd6df;
  line-height: 1.5;
}

/* WPBakery row reset */
.pda-wpb-row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.pda-wpb-row > .vc_column_container > .vc_column-inner {
  padding-top: 0 !important;
}

.pda-wpb-row .wpb_content_element {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .pda-hero__grid,
  .pda-inspection__layout,
  .pda-final__box {
    grid-template-columns: 1fr;
  }

  .pda-hero__visual {
    min-height: 500px;
  }

  .pda-hero__image {
    height: 500px;
  }

  .pda-card-grid,
  .pda-timeline,
  .pda-cars,
  .pda-popular__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pda-route__line::before {
    display: none;
  }

  .pda-price__layout {
    grid-template-columns: 1fr;
  }

  .pda-price__aside {
    position: static;
  }

  .pda-telegram__box {
    grid-template-columns: 86px 1fr;
  }

  .pda-telegram__box > .pda-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

  .pda-head,
  .pda-process__head,
  .pda-route__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .pda-head__side {
    align-items: flex-start;
  }

  .pda-trust__grid,
  .pda-choice-grid,
  .pda-price__formula,
  .pda-list-columns,
  .pda-faq__layout,
  .pda-reviews__grid {
    grid-template-columns: 1fr;
  }

  .pda-review-card__media,
  .pda-review-card__media video {
    min-height: 460px;
    height: 520px;
  }

  .pda-route__stage {
    min-height: 220px;
  }

  .pda-total {
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .pda-title {
    font-size: clamp(37px, 11vw, 52px);
    letter-spacing: -0.03em;
  }

  .pda-title--section {
    font-size: clamp(31px, 9vw, 44px);
  }

  .pda-card-grid,
  .pda-timeline,
  .pda-cars,
  .pda-popular__grid,
  .pda-route__line {
    grid-template-columns: 1fr;
  }

  .pda-hero {
    min-height: auto;
  }

  .pda-hero__visual,
  .pda-hero__image {
    min-height: 420px;
    height: 420px;
  }

  .pda-stat {
    width: 180px;
    padding: 17px;
  }

  .pda-stat strong {
    font-size: 22px;
  }

  .pda-stat--time {
    left: 14px;
    top: 14px;
  }

  .pda-stat--advance {
    right: 14px;
    bottom: 14px;
  }

  .pda-route-pill {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

  .pda-actions {
    display: grid;
  }

  .pda-btn {
    width: 100%;
  }

  .pda-choice-card,
  .pda-price__aside,
  .pda-final__contacts {
    padding: 26px;
  }

  .pda-step {
    grid-template-columns: 48px 1fr;
    padding: 23px;
  }

  .pda-step__num {
    width: 44px;
    height: 44px;
  }

  .pda-car-card__image {
    height: 235px;
  }

  .pda-telegram__box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .pda-telegram__box > .pda-btn {
    grid-column: auto;
  }

  .pda-review-card__media,
  .pda-review-card__media video {
    min-height: 420px;
    height: 480px;
  }
}
