
  /* =============================================
   BLOCK 2: ПОЧЕМУ ВЫБИРАЮТ НАС
============================================= */
  .why-us {
    padding: 80px 0 64px;
    background: #fff;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .why-us .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .why-us__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 800;
    color: #111;
    margin: 0 0 56px !important;
    letter-spacing: -0.5px;
  }

  .why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }

  .why-us__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
    position: relative;
  }

  /* Icon circle */
  .why-us__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .why-us__item:hover .why-us__icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.45);
  }

  .why-us__icon--text {
    font-size: 16px !important;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.5px;
  }

  .why-us__icon svg {
    display: block;
  }

  /* Title */
  .why-us__name {
    font-size: 19px !important;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  /* Description */
  .why-us__desc {
    font-size: 16px !important;
    color: #777;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 24px;
  }

  /* Yellow bottom line */
  .why-us__line {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #f5c518;
    border-radius: 2px;
  }

  /* =============================================
   RESPONSIVE
============================================= */
  @media (max-width: 768px) {
    .why-us__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 20px;
    }
  }

  @media (max-width: 480px) {
    .why-us__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .why-us__item {
      padding-bottom: 20px;
    }
  }


  /* =============================================
   BLOCK 3: ЧТО МЫ ПРИНИМАЕМ В ЗАЛОГ
============================================= */
  .pledge {
    padding: 80px 0;
    background: #f6f6f6;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .pledge .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .pledge__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 800;
    color: #111;
    margin: 0 0 48px !important;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  /* Grid */
  .pledge__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Card */
  .pledge__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: #222;
  }

  /* Photo */
  .pledge__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .pledge__card:hover .pledge__img {
    transform: scale(1.06);
  }

  /* Dark gradient overlay */
  .pledge__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.05) 45%,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
  }

  .pledge__card:hover .pledge__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.1) 45%,
      rgba(0, 0, 0, 0.05) 60%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }

  /* Content row: text top-left + button bottom-right */
  .pledge__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 18px 18px;
  }

  .pledge__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .pledge__name {
    font-size: 20px !important;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .pledge__desc {
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  /* Arrow button */
  .pledge__btn {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5c518;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .pledge__card:hover .pledge__btn {
    transform: scale(1.1);
    background: #e0b400;
    box-shadow: 0 6px 18px rgba(245, 197, 24, 0.5);
  }

  /* =============================================
   RESPONSIVE
============================================= */
  @media (max-width: 900px) {
    .pledge__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .pledge__card {
      aspect-ratio: 4/3;
    }
  }

  @media (max-width: 480px) {
    .pledge__grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .pledge__card {
      aspect-ratio: 1/1;
    }

    .pledge__name {
      font-size: 20px !important;
    }

    .pledge__desc {
      font-size: 16px !important;
    }

    .pledge__btn {
      width: 36px;
      height: 36px;
    }
  }


  /* =============================================
   BLOCK 4: ГДЕ ВЫГОДНЕЕ ПОЛУЧИТЬ ДЕНЬГИ
============================================= */
  .compare {
    padding: 80px 0;
    background: #fff;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .compare .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .compare__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  .compare__subtitle {
    text-align: center;
    font-size: 15px !important;
    color: #888;
    margin: 0 0 40px;
  }

  /* Table wrapper */
  .compare__wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e8e8e8;
  }

  .compare__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  /* Column widths */
  .compare__table colgroup col:nth-child(1) {
    width: 30%;
  }
  .compare__table colgroup col:nth-child(2) {
    width: 35%;
  }
  .compare__table colgroup col:nth-child(3) {
    width: 35%;
  }

  /* ── HEADER ── */
  .compare__th {
    padding: 20px 28px;
    font-size: 15px !important;
    font-weight: 700;
    text-align: center;
    border: none;
  }

  .compare__th--param {
    background: #111;
    color: #fff;
    text-align: left;
    border-radius: 0;
  }

  .compare__th--us {
    background: #f5c518;
    color: #111;
  }

  .compare__th--bank {
    background: #111;
    color: #fff;
  }

  .compare__us-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px !important;
    font-weight: 800;
    color: #111;
  }

  /* ── ROWS ── */
  .compare__row {
    border-bottom: 1.5px solid #efefef;
    transition: background 0.15s;
  }

  .compare__row--last {
    border-bottom: none;
  }

  .compare__row:hover .compare__td--param {
    color: #111;
  }

  .compare__row:hover .compare__td--us {
    background: #fffadb;
  }

  .compare__td {
    padding: 18px 28px;
    font-size: 16px !important;
    text-align: center;
    vertical-align: middle;
  }

  .compare__td--param {
    text-align: left;
    font-weight: 600;
    color: #333;
    background: #fff;
    border-right: 1.5px solid #efefef;
  }

  .compare__td--us {
    background: #fffef0;
    font-weight: 600;
    color: #111;
    border-left: 3px solid #f5c518;
    border-right: 3px solid #f5c518;
    transition: background 0.2s;
  }

  .compare__td--bank {
    background: #fff;
    color: #555;
    border-left: 1.5px solid #efefef;
  }

  /* ── CTA ── */
  .compare__cta {
    text-align: center;
    margin-top: 36px;
  }

  .compare__btn {
    display: inline-block;
    padding: 16px 52px;
    background: #f5c518;
    color: #111;
    font-size: 15px !important;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition:
      background 0.2s,
      transform 0.2s,
      box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.35);
  }

  .compare__btn:hover {
    background: #e0b400;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.45);
  }

  /* =============================================
   RESPONSIVE
============================================= */
  @media (max-width: 768px) {
    .compare__wrap {
      overflow-x: auto;
    }

    .compare__table {
      min-width: 560px;
    }

    .compare__th,
    .compare__td {
      padding: 14px 5px;
      font-size: 15px !important;
    }
  }

  @media (max-width: 480px) {
    .compare__btn {
      width: 100%;
      text-align: center;
    }
  }


  /* =============================================
   BLOCK: НЕДАВНИЕ ВЫДАННЫЕ ЗАЙМЫ
============================================= */
  .recent-loans {
    padding: 80px 0;
    background: #f6f6f6;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .recent-loans .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .recent-loans__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 800;
    color: #111;
    margin: 0 0 48px !important;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  /* Grid */
  .recent-loans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Card */
  .recent-loans__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding-bottom: 4px;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .recent-loans__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.11);
  }

  /* Image */
  .recent-loans__img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #eee;
  }

  .recent-loans__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
  }

  .recent-loans__card:hover .recent-loans__img {
    transform: scale(1.04);
  }

  /* Info */
  .recent-loans__info {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .recent-loans__car {
    font-size: 18px !important;
    font-weight: 700;
    color: #111;
  }

  .recent-loans__market {
    font-size: 15px !important;
    color: #999;
    font-weight: 400;
  }

  .recent-loans__issued {
    font-size: 15px !important;
    color: #333;
    margin-top: 4px;
  }

  .recent-loans__issued strong {
    font-size: 18px !important;
    font-weight: 800;
    color: #111;
  }

  /* Yellow bottom line — like in the design */
  .recent-loans__line {
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #f5c518;
    border-radius: 2px;
  }

  /* =============================================
   RESPONSIVE
============================================= */
  @media (max-width: 900px) {
    .recent-loans__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 560px) {
    .recent-loans__grid {
      grid-template-columns: 1fr;
    }
  }


  /* =============================================
   BLOCK: 5 ШАГОВ
============================================= */
  .steps {
    padding: 80px 0 72px;
    background: #fff;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .steps .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .steps__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 800;
    color: #111;
    margin: 0 0 52px !important;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  /* Row layout */
  .steps__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  /* Connector line */
  .steps__line {
    flex: 1;
    height: 1px;
    background: #ddd;
    margin-top: 30px; /* align with center of circle */
    max-width: 80px;
  }

  /* Step item */
  .steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    width: 140px;
  }

  /* Number circle */
  .steps__num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5c518;
    color: #111;
    font-size: 17px !important;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
    flex-shrink: 0;
  }

  .steps__item:hover .steps__num {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.45);
  }

  .steps__name {
    font-size: 20px !important;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
  }

  .steps__desc {
    font-size: 16px !important;
    color: #888;
    line-height: 1.5;
    max-width: 200px;
  }

  /* =============================================
   BLOCK: РЕФИНАНСИРОВАНИЕ
============================================= */
  .refinance {
    background: #111;
    padding: 0;
    overflow: hidden;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .refinance .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .refinance__inner {
    display: flex;
    align-items: center;
    min-height: 420px;
    gap: 0;
    position: relative;
  }

  /* Left content */
  .refinance__content {
    flex: 0 0 520px;
    padding: 72px 0 72px;
    position: relative;
    z-index: 2;
  }

  .refinance__title {
    font-size: clamp(28px, 3.5vw, 42px) !important;
    font-weight: 900;
    color: #fff;
    margin: 0 0 28px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  .refinance__text {
 font-size: 16px !important;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 460px;
  background: rgba(0,0,0, 0.6);
  border-radius: 12px;
  font-family: "Verdana", sans-serif;
  }

  .refinance__btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 36px;
    background: #f5c518;
    color: #111;
    font-size: 14px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    text-decoration: none;
    transition:
      background 0.2s ease,
      transform 0.2s ease,
      box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
  }

  .refinance__btn:hover {
    background: #e0b400;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.45);
  }

  /* Right image — bleeds to the right edge */
  .refinance__img-wrap {
    position: absolute;
    right: -24px;
    top: 0;
    bottom: 0;
    width: 58%;
    overflow: hidden;
  }

  .refinance__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Fade left edge into dark background */
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.15) 20%,
      #000 50%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.15) 20%,
      #000 50%
    );
  }

  /* =============================================
   RESPONSIVE
============================================= */
  @media (max-width: 900px) {
    .steps__item {
      width: 100px;
    }

    .steps__desc {
      max-width: 160px;
      font-size: 16px !important;
    }

    .steps__line {
      max-width: 30px;
    }

    .refinance__content {
      flex: 0 0 100%;
      padding: 56px 0;
    }

    .refinance__img-wrap {
      display: none;
    }
  }

  @media (max-width: 640px) {
    .steps__row {
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }

    .steps__line {
      display: none;
    }

    .steps__item {
      width: calc(33% - 16px);
      min-width: 90px;
    }
  }

  @media (max-width: 400px) {
    .steps__item {
      width: calc(50% - 12px);
    }
  }


  /* =============================================
   BLOCK: ОТЗЫВЫ
============================================= */
  .reviews {
    padding: 72px 0 64px;
    background: #fff;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .reviews .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Header row */
  .reviews__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .reviews__title {
    font-size: clamp(22px, 3vw, 34px) !important;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  .reviews__link {
    display: inline-block;
    padding: 12px 24px;
    background: #f5c518;
    color: #111;
    font-size: 13px !important;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }

  .reviews__link:hover {
    background: #e0b400;
    transform: translateY(-1px);
  }

  /* Grid */
  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Card */
  .reviews__card {
    position: relative;
    padding: 0 10px 28px;
  }

  .reviews__stars {
    font-size: 18px !important;
    color: #f5c518;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .reviews__text {
    font-size: 16px !important;
    color: #444;
    line-height: 1.7;
    margin: 0 0 16px;
  font-family: "Verdana", sans-serif;
  }

  .reviews__author {
    font-size: 15px !important;
    font-weight: 700;
    color: #111;
  font-family: "Verdana", sans-serif;
  }

  /* Yellow bottom line */
  .reviews__line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 10%;
    height: 3px;
    background: #f5c518;
    border-radius: 2px;
  }

  /* =============================================
   BLOCK: FAQ
============================================= */
  .faq {
    padding: 72px 0 80px;
    background: #f6f6f6;
    font-family: "Verdana", "Segoe UI", sans-serif;
  }

  .faq .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .faq__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px) !important;
    font-weight: 800;
    color: #111;
    margin: 0 0 48px !important;
    letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
  }

  .faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e0e0e0;
  font-family: "Verdana", sans-serif;
  }

  /* Item */
  .faq__item {
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    transition: background 0.2s ease;
  }


  /* Question button */
  .faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: 600;
    color: #111;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
  font-family: "Verdana", sans-serif;
  }

  .faq__question:hover {
    color: #000;
  }

  /* Plus icon */
  .faq__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5c518;
    color: #111;
    font-size: 22px !important;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
  }

  .faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
  }

  /* Answer */
  .faq__answer {
    display: none;
    padding: 0 8px 22px;
  font-family: "Verdana", sans-serif;
  }

  .faq__answer p {
    font-size: 16px !important;
    color: #666;
    line-height: 1.7;
    margin: 0;
    max-width: 580px;
  font-family: "Verdana", sans-serif;
  }

  /* =============================================
   RESPONSIVE
============================================= */
  @media (max-width: 768px) {
    .reviews__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .reviews__head {
      flex-direction: column;
      align-items: flex-start;
    }

    .faq__question {
      font-size: 18px !important;
    }
  }

  @media (max-width: 480px) {
    .reviews__link {
      width: 100%;
      text-align: center;
    }
  }


.seo-text {
  background: #f7f7f7;
  padding: 60px 0 50px;
  border-top: 3px solid #F5C518;
}

.seo-text__header {
  text-align: center;
  margin-bottom: 40px;
}

.seo-text__main-title {
  font-size: clamp(20px, 2.4vw, 28px) !important;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 !important;
  position: relative;
  display: inline-block;
  font-family: "Verdana", sans-serif;
}

.seo-text__main-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #F5C518;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Трёхколоночная сетка */
.seo-text__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.seo-text__col {
  background: #fff;
  border-radius: 8px;
  padding: 24px 22px;
  border: 1px solid #ebebeb;
  transition: box-shadow 0.2s ease;
}

.seo-text__col:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.seo-text__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid #F5C518;
  line-height: 1.4;
  
  font-family: "Verdana", sans-serif;
}

/* Отступ между подзаголовками внутри колонки */
.seo-text__col .seo-text__subtitle + p,
.seo-text__col p + .seo-text__subtitle {
  margin-top: 20px;
}

.seo-text__col p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
  font-family: "Verdana", sans-serif;
}

.seo-text__col p:last-child {
  margin-bottom: 0;
}

.seo-text__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.seo-text__list li {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}

.seo-text__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #F5C518;
  border-radius: 50%;
}

/* CTA-плашка */
.seo-text__cta {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.seo-text__cta p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
  font-family: "Verdana", sans-serif;
}

.seo-text__cta-btn {
  display: inline-block;
  background: #F5C518;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.seo-text__cta-btn:hover {
  background: #e6b800;
  transform: translateY(-1px);
}

/* Адаптив */
@media (max-width: 900px) {
  .seo-text__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .seo-text__grid {
    grid-template-columns: 1fr;
  }

  .seo-text__cta {
    flex-direction: column;
    text-align: center;
  }

  .seo-text__cta-btn {
    width: 100%;
    text-align: center;
  }

  .seo-text {
    padding: 40px 0 36px;
  }
}

.why-us__title[data-heading-tag="H1"] {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F5C518;
  margin: 0 0 10px !important;
  line-height: 1 !important;
  font-family: "Verdana", sans-serif;
}

.why-us__title[data-heading-tag="H2"] {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #111;
  margin: 0 0 48px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  font-family: "Verdana", sans-serif;
}

.why-us__title[data-heading-tag="H1"]::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #F5C518;
  margin: 12px auto 0;
  border-radius: 2px;
}

.bold {
  font-weight: bold;
}
