
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: sans-serif; background: #fdfdfd; color: #111; }
    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
    }
    header {
      background: #fff;
      border-bottom: 1px solid #eee;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    nav ul {
      display: flex;
      gap: 20px;
      list-style: none;
    }
    nav a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }
    .btn {
      background: #000;
      color: #fff;
      padding: 10px 16px;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      display: inline-block;
    }
    .header-tools {
      display: flex;
      gap: 10px;
    }
    .hero {
      background: url('http://127.0.0.1:5000/static/hero-bg.jpg') no-repeat center/cover;
      padding: 60px 0;
    }
    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .hero h1 {
      font-size: 42px;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero h1 span {
      color: #ffc700;
    }
    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
    }
    .hero img {
      max-width: 100%;
      height: auto;
    }
    .hero-tags {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hero-tags span {
      background: #ffc700;
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 14px;
    }
    .how {
      padding: 80px 0;
      background: #fff;
    }
    .how h2 {
      font-size: 36px;
      margin-bottom: 10px;
    }
    .how h2 span {
      color: #ffc700;
    }
    .how p {
      font-size: 18px;
      margin-bottom: 40px;
    }
    .how-content {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    .how-video {
      flex: 1;
      min-width: 300px;
      background: yellow;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    .how-text {
      flex: 1;
      min-width: 300px;
      font-size: 16px;
      line-height: 1.6;
    }
    .rates {
      background: #fafafa;
      padding: 80px 0;
    }
    .rates h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 50px;
    }
    .rates h2 span {
      color: #ffc700;
    }
    .rate-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .rate-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 30px;
      width: 300px;
      text-align: center;
    }
    .rate-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }
    .rate-card p {
      font-size: 14px;
      margin-bottom: 20px;
    }
    .rate-card strong {
      display: block;
      font-size: 20px;
      margin-bottom: 15px;
    }
    .steps {
      padding: 80px 0;
      background: #fff;
    }
    .steps h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 50px;
    }
    .step-items {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }
    .step-item {
      background: #fef7d8;
      border-radius: 12px;
      padding: 30px;
      width: 300px;
      text-align: center;
    }
    .step-item h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }
    .step-item p {
      font-size: 15px;
      line-height: 1.5;
    }
  

  /* ——— базовые обёртки ——— */
  .benefits-why {
    padding: 100px 0;
    background: #fff;
  }
  .benefits-why h2 {
    font: 700 36px/1.2 "Arial", sans-serif;
    text-align: center;
    margin-bottom: 70px;
  }
  .benefits-why h2 span {
    color: #ffc700;
  }

  /* ——— сетка 2×2 на десктопе ——— */
  .feature-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (max-width: 860px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ——— карточка ——— */
  .feature-card {
    position: relative;
    background: #fff;
    border: 4px solid #ffd500;
    border-radius: 24px;
    padding: 60px 40px 80px;
    min-height: 280px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: 0.25s;
  }
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  }

  /* диагональный блик */
  .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      transparent 0%,
      transparent 100%
    );
    pointer-events: none;
  }

  /* номер шага */
  .feature-card .num {
    position: absolute;
    top: 26px;
    right: 26px;
    background: #ffd500;
    color: #000;
    font: 700 16px/1 "Arial", sans-serif;
    padding: 8px 22px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  /* иконка */
  .feature-card .icon {
    width: 90px;
    height: 90px;
    border: 4px solid #ffd500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    background: #fff;
  }
  .feature-card .icon img {
    width: 48px;
    height: 48px;
  }

  /* текст */
  .feature-card h3 {
    font: 700 22px/1.3 "Arial", sans-serif;
    margin-bottom: 16px;
  }
  .feature-card p {
    font: 16px/1.6 "Arial", sans-serif;
  }


  .cases-slider {
    background: #111;
    padding: 120px 0 160px;
    color: #fff;
  }
  .cases-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .cases-head h2 {
    font: 700 56px/1 "Arial", sans-serif;
  }
  .cases-fraction {
    font: 600 24px/1 "Arial", sans-serif;
    letter-spacing: 0.5px;
  }
  /* стрелки */
  .cases-nav button {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 56px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    color: #fff;
  }
  .cases-nav .swiper-button-prev {
    background: #333;
    margin-right: 14px;
  }
  .cases-nav .swiper-button-next {
    background: #ffd500;
    color: #000;
  }
  .cases-nav button:hover {
    transform: scale(1.07);
  }

  /* карточка кейса */
  .case-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08);
  }
  .case-card img {
    display: block;
    width: 100%;
    border-radius: 16px;
  }

  /* убираем дефолтные стрелки Swiper */
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }


  .cta-test {
    background:#000;
    color:#fff;
    padding:120px 0 140px;
    text-align:center;
  }
  .cta-test .container { max-width:1000px; }

  .cta-test h2 {
    font:700 48px/1.25 "Arial",sans-serif;
    margin-bottom:32px;
  }
  .cta-test p {
    font:18px/1.6 "Arial",sans-serif;
    margin-bottom:60px;
    opacity:.9;
  }

  /* ——— кнопка ——— */
  .btn-cta{
    display:inline-block;
    background:#ffd500;
    color:#000;
    font:600 22px/1 "Arial",sans-serif;   /* больше шрифт 22px */
    padding:26px 60px;                    /* больше отступы */
    border-radius:14px;
    box-shadow:0 8px 24px rgba(255,213,0,.35);
    text-decoration:none;                 /* убираем подчёркивание */
    transition:.25s;
  }
  .btn-cta:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 32px rgba(255,213,0,.5);
  }

  @media(max-width:600px){
    .cta-test h2{font-size:32px;}
    .cta-test p {font-size:16px;}
    .btn-cta   {font-size:18px;padding:22px 48px;}
  }


  .faq {
    background: #fff;
    padding: 120px 0;
  }
  .faq h2 {
    font: 700 34px/1.3 "Arial", sans-serif;
    text-align: center;
    margin-bottom: 60px;
  }

  /* общие стили details/summary */
  .faq details {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 20px;
    transition: box-shadow 0.25s;
  }
  .faq details[open] {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  }
  .faq summary {
    list-style: none;                /* убираем треугольник */
    cursor: pointer;
    font: 600 18px/1.4 "Arial", sans-serif;
    position: relative;
    padding-right: 36px;             /* место для иконки */
  }
  .faq summary::-webkit-details-marker { display: none; }

  /* плюс/минус иконка ::after */
  .faq summary::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 0;
    font: 700 26px/1 "Arial", sans-serif;
    transition: transform 0.25s;
    color: #ffd500;
  }
  details[open] summary::after {
    content: "–";
    transform: rotate(0deg);
  }

  /* текст ответа */
  .faq p {
    margin-top: 18px;
    font: 16px/1.6 "Arial", sans-serif;
    color: #444;
  }


  .seo-text {
    background: #fafafa;
    padding: 140px 0 120px;
  }
  .seo-text h2 {
    font: 700 30px/1.3 "Arial", sans-serif;
    text-align: center;
    margin-bottom: 50px;
  }
  .seo-text p {
    max-width: 860px;
    margin: 0 auto 26px;
    font: 16px/1.8 "Arial", sans-serif;
    color: #555;
  }
  .seo-text a { color: #1a73e8; }
  .seo-text strong { font-weight: 700; }
  .seo-text em { font-style: italic; }
  .seo-text u { text-decoration: underline dashed; }
  @media (max-width: 600px) {
    .seo-text h2 { font-size: 24px; }
    .seo-text p  { font-size: 15px; }
  }


  .site-footer {
    background: #000;
    color: #fff;
    padding: 100px 0 60px;
    font-size: 15px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px 80px;
  }

  .footer-logo { height: 46px; margin-bottom: 22px; }
  .footer-col h3 {
    font: 600 17px/1 "Arial", sans-serif;
    margin-bottom: 14px;
  }
  .footer-menu { list-style: none; padding: 0; }
  .footer-menu li { margin-bottom: 8px; }
  .footer-menu a { color: #fff; opacity: 0.85; transition: 0.2s; }
  .footer-menu a:hover { opacity: 1; color: #ffd500; }

  .footer-phone, .footer-mail {
    color: #ffd500;
    font-weight: 600;
    display: inline-block;
    margin: 6px 0;
  }

  .footer-social a {
    display: inline-block;
    width: 40px; height: 40px;
    margin-right: 12px;
    border-radius: 50%;
    background: #181818;
    display: flex; align-items: center; justify-content: center;
    transition: 0.25s;
  }
  .footer-social a:hover {
    transform: translateY(-3px);
    background: #ffd500;
  }
  .footer-social img { width: 20px; height: 20px; }

  .copyright {
    margin-top: 16px;
    opacity: 0.6;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .site-footer { padding: 80px 0 40px; }
    .footer-grid { gap: 30px; }
  }









.rates {
    background: #1a92f370;
    padding: 80px 0;
}



.step-item {
    background: #99cef9;
}

.benefits-why h2 span {
    color: #1a92f3;
}

.feature-card{
	    border: 4px solid #1a92f3;
}

.feature-card::before{
background-color: rgba(26, 146, 243, 0.3);
	
}

.feature-card .icon{
	border: 4px solid #1a92f3;
}

.feature-card .num{
	background: #1a92f3;
}

.rates h2 span {
    color: #d5162c;
}

.cases-nav{
	display: none;
}


.hero img {

    max-width: 553px;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(26, 146, 243, 0.3) !important;
    pointer-events: none;
}


.feature-card .icon {

    background-color: #0879ee;
}



.hero-tags span {
    background: #000000;
    color: white;
}

.btn {
    background: #d5162c;
}

.hero h1 span {
    color: #d5162c;
}

.btn-cta {

    background: #d5162c;
    box-shadow: 0 8px 24px #F44336;
	color: white;
}


.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px #f443367d;
}

.float-link {
	background: #d5162c;
	color: #ffffff;
}

.benefits-why h2 span {
    color: #d5162c;
}

.feature-card {
    border: 2px solid #d5162c;
}

.feature-card .num {
    background: #d5162c;
    color: white;
}

.feature-card .icon {
    border: 4px solid #000000;
	background-color: #000000;
}


.faq summary::after {
    font: 700 35px / 1 "Arial", sans-serif;
    color: #d5162c;
}

.step-item {
    background: #1282f5;
    color: white;
}

.rates {
    background: #1282f5;

}

.how h2 span {
    color: #d5162c;
}

.footer-phone, .footer-mail{
	color: #008cf6;
}

@media (max-width: 749px) {
  .navigationq {
    display: none;
  }
}


.hero img {

    width: 100%;
}

.feature-card {
    border: 2px solid #092d4a;
}


.faq {
    padding: 20px 0;
}

.seo-text {
    padding: 30px 0 120px;
}