/* ============================================================
   FIGMA TO CSS — PIXEL-PERFECT CONVERSION
   Page: Dekstop (191:2)
   Figma File: 0eEbzU1CJfkVxxscaCQVIA  |  Node: 191:2
   Frame: 1920 × 7603 px
   Date: 2026-05-05
   ============================================================ */

/* ── CSS ПЕРЕМЕННЫЕ ──────────────────────────────────────── */
:root {
  /* Цвета из Figma */
  --color-dark-navy:   #1B2D45;   /* заголовки, текст */
  --color-navy:        #28405F;   /* nav-links в header */
  --color-blue:        #1C50C6;   /* кнопки step, вкладки, offer-btn */
  --color-green:       #16D52D;   /* hero btn, step-1 circle */
  --color-green-cta:   #58C466;   /* CTA btn */
  --color-pink:        #FF298D;   /* декор-круг, иконки офферов */
  --color-bg-light:    #F7FBFC;   /* Steps / Offers / Reviews / FAQ фон */
  --color-footer:      #192F4E;   /* Footer фон */
  --color-white:       #FFFFFF;
  --color-gray-text:   #666666;   /* текст отзывов */
  --color-gray-date:   #7E8082;   /* даты статей */
  --color-blue-rating: #556C8A;   /* рейтинг в отзывах */
  --color-footer-desc: #DFE9FA;   /* описание в футере */
  --color-faq-border:  #DFE9FA;   /* рамка FAQ-блока */
  --color-faq-line:    #C3D4F4;   /* разделители вопросов */

  /* Шрифты */
  --font-inter:   'Inter', sans-serif;
  --font-raleway: 'Raleway', sans-serif;

  /* Сетка */
  --frame-width:    1920px;
  --content-width:  1680px;   /* 1920 − 2 × 120px */
  --padding-x:      120px;
}

/* ── СБРОС ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-inter);
  background: var(--color-white);
  color: var(--color-dark-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: var(--frame-width);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── КОНТЕЙНЕР ────────────────────────────────────────────── */
.header__inner,
.steps__inner,
.offers__inner,
.cta__inner,
.blog__inner,
.reviews__inner,
.faq__inner,
.footer__inner,
.footer__bottom {
  padding-left: var(--padding-x);    /* 120px */
  padding-right: var(--padding-x);   /* 120px */
}

/* ============================================================
   HEADER  |  nodeId: 246:7  |  1920 × 109px  |  y = 0
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 1920px;
  height: 109px;
  background: var(--color-white);
  z-index: 100;
}

.header__inner {
  height: 109px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 200px;
  padding-right: 120px;
}

/* Logo  |  nodeId: 191:21  |  Inter 500 48px  #000000 */
.header__logo {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #000000;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.header__logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.header__menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(27, 45, 69, 0.2);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
}

.header__menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-dark-navy);
}

/* Nav  |  nodeId: 191:17 */
.header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
  justify-content: center;
  padding-left: 34px;
}

/* Nav links  |  Inter 500 24px  #28405F */
.header__nav-link {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-navy);
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: var(--color-blue);
}

/* Активный пункт — подчёркивание снизу цветом #16D52D */
.header__nav-link--active {
  color: var(--color-dark-navy);
  font-weight: 600;
}

.header__nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-green);
  border-radius: 1px;
}

/* Header CTA button  |  nodeId: 191:10  |  276 × 60  radius 15  stroke #16D52D */
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 60px;
  border-radius: 15px;
  border: 3px solid var(--color-green);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-green);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.header__btn:hover {
  background: var(--color-green);
  color: var(--color-white);
}

/* ============================================================
   HERO  |  nodeId: 191:3  |  1920 × 690px  |  y = 0
   ============================================================ */
.hero {
  position: relative;
  width: 1920px;
  height: 690px;
  background: var(--color-white);
  overflow: hidden;
}

/* Left content block  |  nodeId: 191:4  |  x=120 y=225 */
.hero__content {
  position: absolute;
  left: 120px;
  top: 225px;
  z-index: 2;
}

/* Title  |  nodeId: 191:5  |  Inter 600 64px  #1B2D45 */
.hero__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 64px;
  line-height: 77px;
  color: var(--color-dark-navy);
  width: 668px;
}

/* Subtitle  |  nodeId: 191:6  |  Inter 400 24px  #1B2D45  y=332 */
.hero__subtitle {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-dark-navy);
  margin-top: 30px;           /* 332 − 225 − 77 = 30px */
  width: 554px;
}

/* CTA button  |  nodeId: 191:14  |  350 × 70  radius 20  #16D52D  y=441 */
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 70px;
  margin-top: 80px;           /* 441 − 332 − 29 = 80px */
  border-radius: 20px;
  background: var(--color-green);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-white);
  transition: background 0.2s, transform 0.15s;
}

.hero__btn:hover {
  background: #12B827;
  transform: translateY(-2px);
}

/* Media placeholder */
.hero__media { display: contents; }

/* Декоративный круг  |  nodeId: 196:264  |  921 × 921  #FF298D 30%  x=907 y=389 */
.hero__circle {
  position: absolute;
  width: 921px;
  height: 921px;
  border-radius: 50%;
  background: rgba(255, 41, 141, 0.30);
  left: 907px;
  top: 389px;
  z-index: 0;
}

/* Hero image  |  nodeId: 196:263  |  472 × 759  x=1130 y=106  (clipped at 584 by frame) */
.hero__image {
  position: absolute;
  width: 472px;
  height: 759px;
  object-fit: cover;
  object-position: top center;
  left: 1130px;
  top: 106px;
  z-index: 1;
}

/* ============================================================
   STEPS  |  nodeId: 196:280  |  1920 × 690px  |  y = 690
   ============================================================ */
.steps {
  width: 1920px;
  height: 690px;
  background: var(--color-bg-light);
  overflow: hidden;
}

.steps__inner {
  height: 100%;
  position: relative;
}

/* Title  |  nodeId: 200:282  |  Raleway 600 40px  #1B2D45  y=40 (rel) */
.steps__title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 40px;
  line-height: 47px;
  color: var(--color-dark-navy);
  padding-top: 40px;           /* rel y = 730 − 690 = 40 */
  margin-bottom: 50px;
}

/* 4-column grid  |  cards at x=120, 553, 986, 1419 */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 380px);
  gap: 53px;                   /* 553 − 120 − 380 = 53px */
}

/* Card  |  nodeId: 200:304  |  380 × 487  radius 20  #FFFFFF
   Структура по Figma: номер (abs top-left), иконка (по центру), текст (abs низ) */
.steps__card {
  position: relative;
  width: 380px;
  height: 487px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 0 10px rgba(6, 29, 9, 0.15);
}

/* Number circle  |  nodeId: 287:17  |  70 × 70  top=30  left=30 */
.steps__number {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: var(--color-white);
  background: var(--color-blue);
  transition: background-color 0.2s ease;
}

/* Классы steps__number--green / --blue в HTML не задают цвет: все кружки синие, при наведении на карточку — зелёные */
.steps__card:hover .steps__number {
  background: var(--color-green);
}

/* Icon wrap  |  nodeId: 200:296  |  top=135, горизонтально центрирован */
.steps__card-icon-wrap {
  position: absolute;
  top: 135px;
  left: 0;
  right: 0;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon  |  единый размер 120 × 110px  object-fit: contain */
.steps__icon {
  width: 120px;
  height: 110px;
  object-fit: contain;
}

/* Card body: text block  |  nodeId: 200:300  |  top=297  left=68  w=243 */
.steps__card-body {
  position: absolute;
  top: 297px;
  left: 68px;           /* (380 − 243) / 2 = 68.5 ≈ 68px */
  width: 243px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card title  |  Raleway 600 32px  #1B2D45  h=38 */
.steps__card-title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: var(--color-dark-navy);
  text-align: center;
}

/* Card text  |  Inter 300 20px  #2B415D  text-align CENTER */
.steps__card-text {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  color: #2B415D;
  text-align: center;
}

/* ============================================================
   OFFERS  |  nodeId: 200:346  |  1920 × 3025px  |  y = 1380
   ============================================================ */
.offers {
  width: 1920px;
  background: var(--color-bg-light);
  padding-bottom: 80px;
}

.offers__inner {
  padding-top: 10px;
}

/* Title  |  nodeId: 206:347  |  Raleway 600 40px  #1B2D45 */
.offers__title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 40px;
  line-height: 47px;
  color: var(--color-dark-navy);
  margin-bottom: 50px;
}

/* 3-column grid  |  cards at x=120, 697, 1274  gap=51px */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 526px);
  gap: 51px;
}

/* Card  |  nodeId: 216:18  |  526 × 897  radius 20
   background: #FFFFFF opacity 74%  |  Section bg: #F7FBFC
   shadow: DROP_SHADOW offset=0,0 radius=20 rgba(0,0,0,0.10) */
.offers__card {
  width: 526px;
  height: 897px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Image  |  nodeId: 206:398  |  526 × 380  radius 12 top  y=0 */
.offers__card-image {
  width: 526px;
  height: 380px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 0;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

/* Card body — все остальное под фото */
.offers__card-body {
  padding: 41px 45px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offers__card-badge {
  position: absolute;
  left: 22px;
  top: 300px;
  z-index: 2;
  max-width: calc(100% - 44px);
  padding: 7px 14px;
  border-radius: 12px;
  background: rgba(22, 213, 45, 0.92);
  color: #0f3f18;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  white-space: normal;
}

/* Title  |  nodeId: 216:4  |  Raleway SemiBold 48px  #1B2D45  h=56 */
.offers__card-title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-dark-navy);
  margin-bottom: 48px;
}

/* Params area  |  nodeId: 287:23  |  вертикальный список строк */
.offers__card-params {
  display: flex;
  flex-direction: column;
}

/* Param row: [иконка 34px] [26px gap] [лейбл] [значение с правого края] */
.offers__param-row {
  display: flex;
  align-items: center;
  height: 39px;
}

/* Иконки  |  nodeId: 206:401/403/407  |  #FF298D  34×34px */
.offers__param-icon {
  width: 34px;
  height: auto;
  flex-shrink: 0;
}

/* Лейбл  |  nodeId: 216:5/6/7  |  Inter Medium 500 24px  #1B2D45 */
.offers__param-label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-dark-navy);
  padding-left: 26px;
  width: 193px;
  flex-shrink: 0;
}

/* Значение  |  nodeId: 216:12/13/14  |  Inter Bold 700 24px  #1B2D45 */
.offers__param-value {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-dark-navy);
  flex: 1;
}

/* Разделительные линии  |  nodeId: 216:8/9  |  #1B2D45 opacity 5% */
.offers__param-line {
  height: 1px;
  background: rgba(27, 45, 69, 0.05);
  margin: 14px -7px;
}

/* Button  |  nodeId: 287:21  |  411 × 100  radius 15  #1C50C6  y=766 */
.offers__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 411px;
  height: 100px;
  margin: 57px auto 38px;
  border-radius: 15px;
  background: var(--color-blue);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: var(--color-white);
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}

.offers__card-btn:hover {
  background: #1644A8;
  transform: translateY(-2px);
}

/* ============================================================
   CTA  |  nodeId: 220:343  |  1920 × 679px  |  y = 4405
   ============================================================ */
.cta {
  width: 1920px;
  height: 679px;
  background: var(--color-white);
  display: flex;
  align-items: center;
}

.cta__inner {
  width: 100%;
}

/* Pink rounded box  |  nodeId: 220:344  |  1680 × 519  radius 25  #FF298D */
.cta__box {
  width: var(--content-width);
  height: 519px;
  margin: 0 auto;
  border-radius: 25px;
  background: var(--color-pink);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

/* Content block  |  left padding 80px (200 − 120) from box edge */
.cta__content {
  padding: 47px 0 47px 80px;   /* top = (4532−4485)=47, bottom = (4485+519)−(4877+80) */
  flex: 0 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title  |  nodeId: 224:613  |  Raleway 700 40px  #FFFFFF  w=1065 h=104 */
.cta__title {
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  color: var(--color-white);
  max-width: 820px;
}

/* Text  |  nodeId: 224:614  |  Raleway 600 24px  #FFFFFF  w=875 h=70 */
.cta__text {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  color: var(--color-white);
  max-width: 875px;
  margin-top: 20px;
}

/* Button  |  nodeId: 224:615  |  330 × 80  radius 20  #58C466 */
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 80px;
  margin-top: 40px;
  border-radius: 20px;
  background: var(--color-green-cta);
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
  color: var(--color-white);
  transition: background 0.2s, transform 0.15s;
}

.cta__btn:hover {
  background: #4AAD57;
  transform: translateY(-2px);
}

/* Image  |  nodeId: 223:612  |  735 × 519  absolute right */
.cta__image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 735px;
  height: 519px;
  overflow: hidden;
}

.cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   BLOG  |  nodeId: 224:619  |  1920 × 715px  |  y = 5084
   ============================================================ */
.blog {
  width: 1920px;
  height: 715px;
  background: var(--color-white);
}

.blog__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 830px 830px;
  gap: 20px;                   /* 970 − 120 − 830 = 20px */
  align-items: start;
  padding-top: 20px;           /* rel y = 5104 − 5084 = 20 */
}

/* Featured card  |  nodeId: 224:645  |  830 × 640  radius 25
   Background: blog-bg@2x.jpg (imageRef 9b4d4708, node 224:621) */
.blog__featured {
  position: relative;
  width: 830px;
  height: 640px;
  border-radius: 25px;
  overflow: hidden;
  background-image: url('../images/photos/blog-bg@2x.jpg');
  background-size: cover;
  background-position: center;
}

/* Dark gradient overlay  |  nodeId: 224:647  |  Rectangle 40, opacity 70%
   gradient from #000000 30% → transparent 0% (bottom → top) */
.blog__featured::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.30) 0%,
    rgba(0, 0, 0, 0.00) 21.8%   /* градиент-хэндл y=0.782 → 78.2% от верха = 21.8% от низа */
  );
}

/* Только фото на баннере: без градиента под заголовок */
.blog__featured.blog__featured--no-caption::after {
  display: none;
}

/* Title  |  nodeId: 224:648  |  Inter 400 40px  #FFFFFF
   Figma: y=5502, h=192 → bottom от низа фрейма: (5104+640)−(5502+192)=50px */
.blog__featured-title {
  position: absolute;
  bottom: 50px;
  left: 40px;                  /* x=11348−11308=40px */
  width: 375px;                /* w=375 */
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--color-white);
  z-index: 2;                  /* выше ::after */
}

/* Right column: 3 articles */
.blog__articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Article card  |  nodeId: 224:626/627/631  |  830 × 200  radius 25
   fill: #F7FBFC (из Figma, node 224:622)
   RenderBounds +10px каждая сторона → box-shadow radius=10px rgba(0,0,0,0.10) */
.blog__article {
  width: 830px;
  height: 200px;
  border-radius: 25px;
  background: var(--color-bg-light);   /* #F7FBFC — точный цвет из Figma */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
  padding: 45px 50px 35px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog__article:hover {
  box-shadow: 0 4px 20px rgba(28, 80, 198, 0.15);
  transform: translateY(-3px);
}

/* Date  |  nodeId: 224:625  |  Inter 400 24px  #7E8082 */
.blog__article-date {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--color-gray-date);
}

/* Article title  |  Raleway 600 36px  #1B2D45 */
.blog__article-title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-dark-navy);
}

/* ============================================================
   REVIEWS  |  nodeId: 227:650  |  1920 × 578px  |  y = 5799
   ============================================================ */
.reviews {
  width: 1920px;
  height: 578px;
  background: var(--color-bg-light);
}

.reviews__inner {
  height: 100%;
  padding-top: 60px;
}

/* Title  |  nodeId: 227:651  |  Inter 500 48px  #000000  y=60 */
.reviews__title {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #000000;
  margin-bottom: 84px;         /* 34px title margin + 80px tabs height — tabs удалены */
}

/* Cards grid  |  3 cards 547 × 235  radius 20  #FFFFFF  gap≈19px */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 547px);
  gap: 19px;
}

/* Card */
.reviews__card {
  width: 547px;
  height: 235px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.reviews__card-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 64px;
}

/* Avatar  |  nodeId: 191:205  |  64 × 64  ELLIPSE with IMAGE */
.reviews__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.reviews__card-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Name  |  nodeId: 191:206  |  Inter 500 24px  #000000 */
.reviews__name {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Rating  |  nodeId: 191:204  |  Inter 400 20px  #556C8A */
.reviews__rating {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-blue-rating);
  display: block;
}

.reviews__rating::before {
  content: "★ ";
  color: #ffb400;
}

/* Review text  |  nodeId: 191:207  |  Inter 400 20px  #666666 */
.reviews__text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-gray-text);
  margin-top: 16px;
}

/* ============================================================
   FAQ  |  nodeId: 227:695  |  1920 × 863px  |  y = 6377
   ============================================================ */
.faq {
  width: 1920px;
  min-height: 863px;           /* min — раскрытие аккордеона растягивает секцию */
  background: var(--color-bg-light);
}

.faq__inner {
  padding-top: 47px;           /* y_title = 6424 − 6377 = 47 */
  padding-bottom: 60px;
}

/* Title  |  nodeId: 227:698  |  Raleway 600 48px  #1B2D45 */
.faq__title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-dark-navy);
  margin-bottom: 48px;         /* 6525 − 6424 − 56 = 45 ≈ 48 */
}

/* White box with border  |  nodeId: 227:696  |  1680 × 628  radius 25 */
/* FAQ white container  |  nodeId: 227:696  |  1680 × auto  radius 25  border #DFE9FA */
.faq__box {
  width: 100%;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FAQ item row */
.faq__item {
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  padding: 0 24px;
}

.faq__item + .faq__item {
  margin-top: 0;
}

/* Question button  |  Inter 600 28px  #1B2D45  h=34 */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-dark-navy);
  text-align: left;
  cursor: pointer;
}

.faq__question:hover { color: var(--color-blue); }
.faq__question:hover .faq__arrow path { stroke: var(--color-blue); }

/* Chevron — поворот при открытии */
.faq__arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item--open .faq__arrow {
  transform: rotate(180deg);
}

/* Ответ — скрыт по умолчанию, открывается через max-height */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq__answer p {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #556C8A;
  padding-bottom: 20px;
}

.faq__item--open .faq__answer {
  max-height: 200px;
}

/* Separator line  |  stroke #C3D4F4 */
.faq__line {
  display: none;
}

.faq__item--last .faq__answer { padding-bottom: 0; }

/* ============================================================
   LOANS PAGE (zaim.html)
   ============================================================ */
.loans-page {
  width: var(--frame-width);
  margin: 0 auto;
  background: #ffffff;
}

.loans-hero {
  width: 1920px;
  background: #ffffff;
  padding: 159px 120px 69px;
}

.loans-hero__panel {
  height: 433px;
  border-radius: 25px;
  background: linear-gradient(90deg, #d7e3ff 0%, #c4d7ff 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.loans-hero__title {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark-navy);
}

.loans-hero__subtitle {
  margin-top: 30px;
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 35px;
  color: var(--color-dark-navy);
}

.loans-hero__image {
  width: 332px;
  height: 332px;
  object-fit: contain;
}

.loans-hero__features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 263px);
  gap: 20px;
}

.loans-feature {
  height: 209px;
  border: 2px solid #16d52d;
  border-radius: 20px;
  background: var(--color-bg-light);
  position: relative;
  box-shadow: 0 0 0 1px rgba(22, 213, 45, 0.35);
}

.loans-feature__icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 92px;
  object-fit: contain;
  object-position: center;
}

.loans-feature__text {
  position: absolute;
  top: 148px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 29px;
  color: var(--color-dark-navy);
}

/* cards 3/5 in Figma have slightly larger icon bounds: 117 × 96 */
.loans-hero__features .loans-feature:nth-child(3) .loans-feature__icon,
.loans-hero__features .loans-feature:nth-child(5) .loans-feature__icon {
  width: 138px;
  height: 98px;
}

.loans-offers {
  width: 1920px;
  background: var(--color-bg-light);
  padding: 70px 120px;
}

.loans-offers__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.loan-row {
  min-height: 250px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 413px 1fr 1fr 1fr 251px;
  align-items: start;
  padding: 30px 20px;
  column-gap: 20px;
}

.loan-row__brand {
  display: flex;
  gap: 20px;
  align-items: center;
}

.loan-row__badge {
  display: inline-flex;
  padding: 4px 12px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: rgba(22, 213, 45, 0.08);
  color: var(--color-green);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

.loan-row__logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.loan-row__type,
.loan-row__metric span,
.loan-row__cta span {
  color: #556c8a;
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-inter);
}

.loan-row__bank {
  margin-top: 10px;
  font-size: 32px;
  line-height: 39px;
  font-weight: 600;
  color: var(--color-dark-navy);
  font-family: var(--font-inter);
}

.loan-row__metric {
  padding-top: 14px;
}

.loan-row__metric strong {
  margin-top: 10px;
  display: block;
  color: var(--color-dark-navy);
  font-size: 36px;
  line-height: 44px;
  font-family: var(--font-inter);
  font-weight: 600;
}

.loan-row__cta {
  padding-top: 14px;
}

.loan-row__btn {
  margin-top: 10px;
  display: inline-flex;
  width: 186px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ff298d;
  color: #fff;
  font-size: 24px;
  line-height: 29px;
  font-family: var(--font-inter);
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.loan-row__btn:hover {
  background: #ff4fa4;
  box-shadow: 0 0 0 3px rgba(255, 41, 141, 0.25);
  transform: translateY(-1px);
}

/* ============================================================
   CREDITS PAGE ROW TUNING
   Чтобы длинные названия/значения не наезжали друг на друга.
   ============================================================ */
.credits-page .loan-row {
  grid-template-columns: minmax(470px, 2.2fr) minmax(220px, 1fr) minmax(190px, 0.9fr) minmax(200px, 0.95fr) minmax(210px, 0.95fr);
  align-items: start;
  column-gap: 16px;
}

.credits-page .loan-row__brand {
  align-items: flex-start;
  padding-top: 0;
}

.credits-page .loan-row__bank {
  margin-top: 6px;
  font-size: 34px;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.credits-page .loan-row__type {
  font-size: 26px;
  line-height: 1.2;
}

.credits-page .loan-row__metric,
.credits-page .loan-row__cta {
  padding-top: 0;
}

.credits-page .loan-row__metric span {
  font-size: 26px;
  line-height: 1.2;
  white-space: nowrap;
}

.credits-page .loan-row__metric strong {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.1;
  white-space: nowrap;
}

.loans-text {
  width: 1920px;
  background: #fff;
  padding: 80px 120px;
}

.loans-text__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.loans-text__faq-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.loans-text__faq-card {
  margin: 0;
}

.loans-text__faq-q {
  margin: 0 0 18px;
  color: var(--color-blue);
  font-family: var(--font-inter);
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
}

.loans-text__answer-body {
  width: 100%;
  padding: 24px 28px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbfd 0%, #f3f6fa 100%);
  border: 1px solid rgba(223, 233, 250, 0.95);
  border-left: 4px solid var(--color-blue);
  box-shadow: 0 4px 24px rgba(27, 45, 69, 0.06);
}

.loans-text__faq-a {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: #334155;
}

.loans-text__faq-a strong {
  font-weight: 600;
  color: var(--color-dark-navy);
}

.loans-text__answer-body .loans-text__faq-a + .loans-text__faq-a {
  margin-top: 14px;
}

.loans-text__answer-body ul {
  margin: 12px 0 0;
  padding-left: 28px;
  list-style: disc;
}

.loans-text__answer-body li {
  margin-top: 8px;
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 1.55;
  color: #334155;
}

/* ============================================================
   FOOTER  |  nodeId: 191:247  |  1920 × 363px  |  y = 7240
   ============================================================ */
.footer {
  width: 1920px;
  background: var(--color-footer);
}

.footer__inner {
  display: grid;
  grid-template-columns: 760px 1fr auto;
  grid-template-rows: auto auto;
  align-items: flex-start;
  column-gap: 60px;
  row-gap: 8px;
  padding-top: 35px;           /* y_logo = 7275 − 7240 = 35 */
  padding-bottom: 0;
}

/* Brand column */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 760px;
}

/* Logo  |  nodeId: 191:248  |  Inter 600 48px  #FFFFFF */
.footer__logo {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

/* Description  |  nodeId: 191:249  |  Inter 400 24px  #DFE9FA  lh=32 */
.footer__description {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-footer-desc);
  max-width: 760px;
}

/* Nav  |  horizontal links */
.footer__nav {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 76px;
  padding-top: 40px;
}

.footer__nav::before {
  content: "Меню";
  position: absolute;
  transform: translateY(-36px);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-white);
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Nav links  |  Inter 300 24px  #FFFFFF */
.footer__nav-link {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-white);
}

.footer__mail {
  grid-column: 3;
  grid-row: 1;
  margin-top: 42px;
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-white);
  white-space: nowrap;
}

.footer__mail::before {
  content: "✉";
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Contacts section on main page */
.contacts-section {
  width: 1920px;
  background: #ffffff;
  padding: 64px 120px 90px;
}

.contacts-section__inner {
  border-radius: 25px;
  background: var(--color-bg-light);
  padding: 40px 50px;
}

.contacts-section__title {
  font-family: var(--font-raleway);
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-dark-navy);
}

.contacts-section__email {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: var(--color-blue);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(25, 47, 78, 0.97);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 200;
}

.cookie-banner--visible {
  display: flex;
}

.cookie-banner__text {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 22px;
}

.cookie-banner__btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 10px;
  background: #16d52d;
  color: #ffffff;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 18px;
}

/* Bottom area */
.footer__bottom {
  padding-left: 200px;
  padding-right: 120px;
  padding-top: 0;
  padding-bottom: 29px;
}

/* Horizontal line  |  nodeId: 191:261  |  stroke #556C8A  y=259 */
.footer__line {
  height: 1px;
  background: #556C8A;
  margin-top: 40px;
  margin-bottom: 11px;
}

/* Copyright  |  nodeId: 191:260  |  Inter 300 24px  #FFFFFF 72% */
.footer__copy {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.72);
  padding-left: var(--padding-x);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page-hero {
  width: 1920px;
  padding-top: 169px;
  padding-bottom: 56px;
}

.blog-page-hero__inner,
.blog-page-articles__inner {
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
}

.blog-page-hero__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 64px;
  line-height: 77px;
  color: var(--color-dark-navy);
}

.blog-page-hero__description {
  margin-top: 20px;
  max-width: 1020px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  color: var(--color-dark-navy);
}

.blog-page-hero__description--secondary {
  margin-top: 14px;
  max-width: 980px;
}

.blog-page-articles {
  width: 1920px;
  background: var(--color-bg-light);
  padding-top: 48px;
  padding-bottom: 90px;
}

.blog-page-articles__inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.blog-page-featured-wrap {
  margin-bottom: 14px;
}

.blog-page-featured-card {
  width: 100%;
  max-width: 1680px;
  height: 420px;
}


.blog-page-article {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-page-featured-wrap + .blog-page-article {
  margin-top: 34px;
}

.blog-page-article:hover {
  box-shadow: 0 4px 20px rgba(28, 80, 198, 0.15);
}

.blog-page-article[open] {
  transform: translateY(-2px);
}

.blog-page-article__summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 70px 28px 32px;
  position: relative;
}

.blog-page-article__summary::-webkit-details-marker {
  display: none;
}

.blog-page-article__summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 28px;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 38px;
  line-height: 38px;
  color: var(--color-blue);
}

.blog-page-article[open] .blog-page-article__summary::after {
  content: '-';
}

.blog-page-article__content {
  padding: 0 32px 30px;
}

.blog-page-article__title {
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: var(--color-dark-navy);
}

.blog-page-article__text {
  margin-top: 14px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  color: var(--color-dark-navy);
}

/* ============================================================
   CREDITS PAGE
   ============================================================ */
.credits-page {
  width: var(--frame-width);
  margin: 0 auto;
  background: #ffffff;
}

.credits-hero {
  width: 1920px;
  background: #ffffff;
  padding: 159px 120px 69px;
}

.credits-hero__panel {
  height: 433px;
  border-radius: 25px;
  background: linear-gradient(90deg, #d7e3ff 0%, #c4d7ff 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.credits-hero__title {
  font-family: var(--font-inter);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark-navy);
}

.credits-hero__subtitle {
  margin-top: 30px;
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 35px;
  color: var(--color-dark-navy);
  max-width: 760px;
}

.credits-hero__image {
  width: 332px;
  height: 332px;
  object-fit: contain;
}

/* ============================================================
   CALCULATOR PAGE
   ============================================================ */
.calculator-page {
  width: var(--frame-width);
  margin: 0 auto;
  background: #ffffff;
}

.calculator-hero {
  width: 1920px;
  padding: 174px 120px 46px;
}

.calculator-hero__panel {
  min-height: 714px;
  border-radius: 35px;
  background: linear-gradient(90deg, #bbc7ff 0%, #dbe2ff 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 100px 50px;
}

.calculator-hero__title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 64px;
  line-height: 77px;
  color: #000000;
}

.calculator-hero__subtitle {
  margin-top: 30px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #000000;
}

.calculator-controls {
  margin-top: 110px;
  display: flex;
  gap: 100px;
}

.calculator-control {
  width: 420px;
}

.calculator-control__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator-control__label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 32px;
  line-height: 39px;
  color: #000000;
}

.calculator-control__value {
  min-width: 136px;
  height: 39px;
  border-radius: 10px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.calculator-control__track {
  margin-top: 30px;
  height: 25px;
  position: relative;
}

.calculator-control__track::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 17px;
  right: 0;
  height: 1px;
  background: #ffffff;
}

.calculator-control__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 25px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.calculator-control__slider::-webkit-slider-runnable-track {
  height: 1px;
  background: transparent;
}

.calculator-control__slider::-moz-range-track {
  height: 1px;
  background: transparent;
  border: 0;
}

.calculator-control__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: #ff298d;
  cursor: pointer;
  margin-top: -12px;
}

.calculator-control__slider::-moz-range-thumb {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: #ff298d;
  cursor: pointer;
}

.calculator-control__range {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.calculator-hero__btn {
  margin-top: 100px;
  width: 462px;
  height: 80px;
  border-radius: 15px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 32px;
  line-height: 39px;
  color: #000000;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.calculator-hero__btn:hover {
  background: #f5f9ff;
  box-shadow: 0 0 0 3px rgba(28, 80, 198, 0.18);
  transform: translateY(-1px);
}

.calculator-hero__image {
  width: 580px;
  height: 580px;
  object-fit: contain;
  margin-top: 7px;
}

.calculator-hero__disclaimer {
  margin-top: 50px;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #bfd0d5;
}

.calculator-filter {
  width: 1920px;
  padding: 60px 120px;
}

.calculator-filter__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.calculator-filter__title {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--color-dark-navy);
  margin-bottom: 33px;
}

.calculator-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.calculator-chip {
  height: 50px;
  border-radius: 10px;
  background: #eff2f2;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-dark-navy);
  white-space: nowrap;
}

/* ============================================================
   MOBILE OVERRIDES (does not affect desktop)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --frame-width: 100%;
    --content-width: 100%;
    --padding-x: 16px;
  }

  body {
    width: 100%;
  }

  .header,
  .hero,
  .steps,
  .offers,
  .cta,
  .blog,
  .reviews,
  .faq,
  .contacts-section,
  .footer,
  .loans-hero,
  .loans-offers,
  .loans-text,
  .calculator-hero,
  .calculator-filter {
    width: 100%;
    height: auto;
  }

  .header {
    position: sticky;
    height: auto;
    padding: 10px 0;
  }

  .header__inner {
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo toggle"
      "nav nav"
      "cta cta";
    gap: 10px;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__logo {
    grid-area: logo;
    font-size: 32px;
    line-height: 1.2;
  }

  .header__logo-img {
    width: 70px;
    height: 70px;
  }

  .header__menu-toggle {
    grid-area: toggle;
    display: inline-flex;
    margin-left: 0;
  }

  .header__btn {
    display: inline-flex;
    grid-area: cta;
    width: min(320px, calc(100% - 32px));
    margin: 0 auto;
    height: 46px;
    font-size: 16px;
    line-height: 20px;
    border-width: 2px;
    border-radius: 12px;
  }

  .header__nav {
    display: none;
    grid-area: nav;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(27, 45, 69, 0.12);
    border-bottom: 1px solid rgba(27, 45, 69, 0.12);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
  }

  .header__nav-link {
    display: block;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 20px;
    border-bottom: 1px solid rgba(27, 45, 69, 0.08);
  }

  .header__nav-link:last-child {
    border-bottom: 0;
  }

  .header--menu-open .header__nav {
    display: flex;
  }

  .header--menu-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header--menu-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header--menu-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    padding: 90px 16px 24px;
    gap: 20px;
  }

  .hero__content {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    order: 1;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 1.35;
  }

  .hero__btn {
    width: 100%;
    max-width: 360px;
    height: 56px;
    font-size: 20px;
  }

  .hero__media {
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;
  }

  .hero__circle {
    display: none;
  }

  .hero__image {
    position: static;
    width: min(90vw, 380px);
    height: auto;
  }

  .steps {
    padding: 28px 0;
  }

  .steps__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 22px;
  }

  .steps__grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .steps__card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .steps__number {
    position: static;
    width: 52px;
    height: 52px;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
  }

  .steps__card-icon-wrap {
    position: static;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .steps__icon {
    width: 72px;
    height: 64px;
  }

  .steps__card-body {
    position: static;
    width: 100%;
    left: auto;
    top: auto;
    gap: 8px;
  }

  .steps__card-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .steps__card-text {
    font-size: 15px;
    line-height: 1.35;
  }

  .offers {
    padding: 24px 0 32px;
  }

  .offers__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

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

  .offers__card {
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
  }

  .offers__card-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
  }

  .offers__card-body {
    padding: 16px;
  }

  .offers__card-badge {
    left: 14px;
    top: 136px;
    max-width: calc(100% - 28px);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 17px;
  }

  .offers__card-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .offers__param-row {
    height: auto;
    min-height: 30px;
  }

  .offers__param-icon {
    width: 24px;
  }

  .offers__param-label,
  .offers__param-value {
    font-size: 16px;
    line-height: 1.25;
  }

  .offers__param-label {
    width: 105px;
    padding-left: 10px;
  }

  .offers__card-btn {
    width: 100%;
    height: 56px;
    margin: 18px auto 8px;
    font-size: 20px;
    line-height: 1.2;
  }

  .cta {
    padding: 12px 0 24px;
  }

  .cta__box {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .cta__content {
    padding: 20px 16px 16px;
    max-width: 100%;
    gap: 14px;
  }

  .cta__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .cta__text {
    font-size: 16px;
    line-height: 1.4;
  }

  .cta__btn {
    width: 100%;
    max-width: 280px;
    height: 48px;
  }

  .cta__image-wrap {
    position: static;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .cta__image {
    height: auto;
    object-fit: contain;
  }

  .blog,
  .reviews,
  .faq,
  .contacts-section {
    padding: 26px 0;
  }

  .blog__inner,
  .reviews__inner,
  .faq__inner,
  .contacts-section__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog__inner {
    display: flex;
    flex-direction: column;
    height: auto;
    grid-template-columns: none;
    gap: 14px;
    padding-top: 0;
  }

  .blog__featured {
    width: 100%;
    height: 220px;
    min-height: 0;
    border-radius: 16px;
  }

  .blog__articles {
    width: 100%;
    gap: 12px;
  }

  .blog__article {
    width: 100%;
    height: auto;
    min-height: 130px;
    border-radius: 16px;
    padding: 16px;
    gap: 8px;
  }

  .blog__article-date {
    font-size: 18px;
    line-height: 1.2;
  }

  .blog__article-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews__inner {
    height: auto;
    padding-top: 0;
  }

  .reviews__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .reviews__card {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 16px;
    padding: 14px;
    gap: 10px;
  }

  .reviews__card-top {
    gap: 12px;
    align-items: center;
  }

  .reviews__avatar {
    width: 48px;
    height: 48px;
  }

  .reviews__name {
    font-size: 20px;
    line-height: 1.2;
  }

  .reviews__rating {
    font-size: 16px;
    line-height: 1.2;
  }

  .reviews__text {
    font-size: 15px;
    line-height: 1.35;
  }

  .faq__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .faq__box {
    padding: 0;
    gap: 14px;
  }

  .faq__item {
    padding: 0 14px;
    border-radius: 12px;
  }

  .faq__question {
    padding: 14px 0;
  }

  .footer {
    padding-top: 24px;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .footer__logo-img {
    width: 56px;
    height: 56px;
  }

  .footer__nav {
    width: 100%;
    justify-content: space-between;
  }

  .footer__mail {
    word-break: break-all;
  }

  .loans-hero {
    padding: 90px 16px 20px;
  }

  .loans-hero__panel {
    flex-direction: column;
    padding: 18px;
    gap: 16px;
  }

  .loans-hero__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .loans-hero__subtitle {
    font-size: 17px;
    line-height: 1.35;
  }

  .loans-hero__image {
    width: min(88vw, 330px);
    height: auto;
    margin: 0 auto;
  }

  .loans-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .loans-feature {
    width: 100%;
    height: 132px;
    padding: 12px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .loans-feature__icon {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 56px;
    height: 56px;
    object-fit: contain;
  }

  .loans-feature__text {
    position: static;
    min-height: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
  }

  .loans-hero__features .loans-feature:nth-child(3) .loans-feature__icon,
  .loans-hero__features .loans-feature:nth-child(5) .loans-feature__icon {
    width: 56px;
    height: 56px;
  }

  .loans-offers {
    padding: 18px 16px 26px;
  }

  .loans-offers__list {
    gap: 12px;
  }

  .loan-row {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .loan-row__brand {
    align-items: center;
    gap: 12px;
  }

  .loan-row__logo {
    width: 64px;
    height: 64px;
  }

  .loan-row__type,
  .loan-row__metric span,
  .loan-row__cta span {
    font-size: 14px;
    line-height: 1.2;
  }

  .loan-row__bank {
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.2;
  }

  .loan-row__metric {
    padding-top: 0;
  }

  .loan-row__metric strong {
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.2;
  }

  .loan-row__cta {
    padding-top: 0;
  }

  .loan-row__btn {
    width: 100%;
    height: 46px;
    margin-top: 8px;
    font-size: 18px;
  }

  .loans-text {
    padding: 26px 16px 36px;
  }

  .loans-text__inner {
    gap: 28px;
  }

  .loans-text__faq-list {
    gap: 28px;
  }

  .loans-text__faq-q {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .loans-text__answer-body {
    padding: 16px 16px 18px;
    border-radius: 12px;
  }

  .loans-text__faq-a {
    font-size: 16px;
    line-height: 1.55;
  }

  .loans-text__answer-body .loans-text__faq-a + .loans-text__faq-a {
    margin-top: 10px;
  }

  .loans-text__answer-body li {
    font-size: 16px;
    line-height: 1.5;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-banner__text {
    font-size: 14px;
    line-height: 1.35;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }

  .blog-page-hero,
  .blog-page-articles,
  .credits-page,
  .credits-hero,
  .calculator-page {
    width: 100%;
  }

  .blog-page-hero {
    padding: 90px 16px 20px;
  }

  .blog-page-hero__inner,
  .blog-page-articles__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-page-hero__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .blog-page-hero__description {
    margin-top: 12px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .blog-page-articles {
    padding: 18px 16px 28px;
  }

  .blog-page-articles__inner {
    gap: 14px;
  }

  .blog-page-featured-wrap {
    margin-bottom: 0;
  }

  .blog-page-featured-card {
    height: 180px;
    border-radius: 14px;
  }

  .blog-page-featured-wrap + .blog-page-article {
    margin-top: 0;
  }

  .blog-page-article {
    border-radius: 14px;
  }

  .blog-page-article__summary {
    padding: 14px 48px 14px 14px;
  }

  .blog-page-article__summary::after {
    right: 14px;
    top: 12px;
    font-size: 30px;
    line-height: 30px;
  }

  .blog-page-article__content {
    padding: 0 14px 16px;
  }

  .blog-page-article__title {
    font-size: 22px;
    line-height: 1.25;
  }

  .blog-page-article__text {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.45;
  }

  .credits-hero {
    padding: 90px 16px 18px;
  }

  .credits-hero__panel {
    height: auto;
    min-height: 0;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
  }

  .credits-hero__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .credits-hero__subtitle {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.4;
    max-width: 100%;
  }

  .credits-hero__image {
    width: min(80vw, 240px);
    height: auto;
    margin: 0 auto;
  }

  .calculator-hero {
    padding: 90px 16px 18px;
  }

  .calculator-hero__panel {
    min-height: 0;
    border-radius: 18px;
    flex-direction: column;
    gap: 16px;
    padding: 18px 14px;
  }

  .calculator-hero__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .calculator-hero__subtitle {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.35;
  }

  .calculator-controls {
    margin-top: 20px;
    flex-direction: column;
    gap: 16px;
  }

  .calculator-control {
    width: 100%;
  }

  .calculator-control__label {
    font-size: 18px;
    line-height: 1.25;
  }

  .calculator-control__value {
    min-width: 120px;
    height: 32px;
    font-size: 14px;
    line-height: 1.2;
  }

  .calculator-control__track {
    margin-top: 12px;
  }

  .calculator-control__range {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.2;
  }

  .calculator-hero__btn {
    margin-top: 18px;
    width: 100%;
    max-width: 100%;
    height: 50px;
    font-size: 18px;
    line-height: 1.2;
  }

  .calculator-hero__image {
    width: min(88vw, 320px);
    height: auto;
    margin: 0 auto;
  }

  .calculator-hero__disclaimer {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .calculator-filter {
    padding: 20px 16px 28px;
  }

  .calculator-filter__inner {
    gap: 20px;
  }

  .calculator-filter__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .calculator-filter__chips {
    gap: 10px;
  }

  .calculator-chip {
    height: 40px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 8px;
  }
}
