/*!
Theme Name: Moldservice
Theme URI: http://underscores.me/
Author: MX-Studio
Author URI: https://mx-studio.pl/
Description: Moldservice landing page theme
Version: 1.0.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: moldservice
*/
    @font-face {
      font-family: 'Gilroy';
      font-weight: 400;
      font-style: normal;
      src: local('Gilroy-Regular'), local('Gilroy Regular');
    }
    @font-face {
      font-family: 'Gilroy';
      font-weight: 500;
      font-style: normal;
      src: local('Gilroy-Medium'), local('Gilroy Medium');
    }
    @font-face {
      font-family: 'Gilroy';
      font-weight: 700;
      font-style: normal;
      src: local('Gilroy-Bold'), local('Gilroy Bold');
    }
    @font-face {
      font-family: 'Gilroy';
      font-weight: 800;
      font-style: normal;
      src: local('Gilroy-ExtraBold'), local('Gilroy ExtraBold');
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      color: #112337;
      overflow-x: hidden;
    }

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

    img {
      display: block;
      max-width: 100%;
    }

    /* ===== ANIMATIONS ===== */
    .anim {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .anim--left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .anim--right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .anim--scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .anim.visible,
    .anim--left.visible,
    .anim--right.visible,
    .anim--scale.visible {
      opacity: 1;
      transform: translate(0) scale(1);
    }

    .anim-delay-1 { transition-delay: 0.1s; }
    .anim-delay-2 { transition-delay: 0.2s; }
    .anim-delay-3 { transition-delay: 0.3s; }
    .anim-delay-4 { transition-delay: 0.4s; }
    .anim-delay-5 { transition-delay: 0.5s; }
    .anim-delay-6 { transition-delay: 0.6s; }

    /* ===== HEADER / MENU ===== */
    .header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 110px;
      background: #fff;
      z-index: 100;
      transition: background 0.3s, box-shadow 0.3s, height 0.3s;
    }

    .header.fixed {
      position: fixed;
      top: 0;
      height: 80px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      animation: slideDown 0.35s ease;
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    .header__inner {
      max-width: 1920px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      height: 100%;
      padding: 0 254px;
    }

    .header__logo {
      display: flex;
      align-items: center;
      gap: 11px;
      flex-shrink: 0;
    }

    .header__logo img {
      width: 47px;
      height: 35px;
    }

    .header__logo-text {
      font-weight: 800;
      font-size: 28px;
      line-height: 48px;
      color: #122438;
    }

    .header__nav {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-left: 42px;
    }

    .header__nav a {
      font-weight: 500;
      font-size: 18px;
      line-height: 36px;
      color: #777;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .header__nav a:hover {
      color: #2563eb;
    }

    .header__right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .header__lang {
      display: flex;
      align-items: center;
      gap: 2px;
      cursor: pointer;
      position: relative;
    }

    .header__lang span {
      font-weight: 500;
      font-size: 18px;
      color: #2563eb;
    }

    .header__lang img {
      width: 14px;
      height: 7px;
      transition: transform 0.3s;
    }

    .header__lang.open img {
      transform: rotate(180deg);
    }

    .header__lang-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: -10px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 8px 0;
      min-width: 120px;
      z-index: 101;
      margin-top: 8px;
    }

    .header__lang.open .header__lang-dropdown {
      display: block;
    }

    .header__lang-dropdown a {
      display: block;
      padding: 8px 16px;
      font-weight: 500;
      font-size: 16px;
      color: #777;
      transition: all 0.2s;
    }

    .header__lang-dropdown a:hover {
      color: #2563eb;
      background: #f8fbff;
    }

    .header__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 178px;
      height: 48px;
      border: 1px solid #112336;
      border-radius: 10px;
      font-weight: 500;
      font-size: 18px;
      color: #112337;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .header__btn:hover {
      background: #112337;
      color: #fff;
    }

    .header__line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: #e4ecf1;
    }

    /* Burger */
    .header__burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      margin-left: auto;
    }

    .header__burger span {
      display: block;
      width: 100%;
      height: 2px;
      background: #112337;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .header__burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }
    .header__burger.active span:nth-child(2) {
      opacity: 0;
    }
    .header__burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      height: calc(100vh - 80px);
      background: #fff;
      z-index: 99;
      flex-direction: column;
      padding: 30px;
      gap: 20px;
      overflow-y: auto;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-weight: 500;
      font-size: 20px;
      color: #777;
      padding: 10px 0;
      border-bottom: 1px solid #e4ecf1;
    }

    .mobile-menu a:hover {
      color: #2563eb;
    }

    .mobile-menu .header__btn {
      width: 100%;
      height: 56px;
      margin-top: 10px;
      font-size: 20px;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 833px;
      background: #f8fbff;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      top: -258px;
      left: -10px;
      width: 1937px;
      height: 1291px;
      object-fit: cover;
      opacity: 0.1;
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding-top: 193px;
      padding-left: 20px;
      padding-right: 20px;
    }

    .hero__title {
      font-weight: 700;
      font-size: 75px;
      line-height: 90px;
      color: #112337;
      max-width: 1420px;
      margin: 0 auto;
    }

    .hero__title span {
      color: #2563eb;
    }

    .hero__subtitle {
      font-weight: 400;
      font-size: 36px;
      line-height: 48px;
      color: #122438;
      max-width: 1178px;
      margin: 13px auto 0;
    }

    .hero__desc {
      font-weight: 400;
      font-size: 18px;
      line-height: 36px;
      color: #777;
      max-width: 1178px;
      margin: 14px auto 0;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 272px;
      height: 80px;
      background: #2563eb;
      border-radius: 10px;
      font-weight: 500;
      font-size: 24px;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }

    .hero__btn {
      margin-top: 17px;
    }

    /* ===== ADVANTAGES ===== */
    .advantage {
      position: relative;
      width: 100%;
      height: 760px;
      overflow: hidden;
    }

    .advantage__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .advantage--1 .advantage__bg { background: #effcff; }
    .advantage--2 .advantage__bg { background: #fffbf0; }
    .advantage--3 .advantage__bg { background: #f0fdeb; }
    .advantage--4 .advantage__bg { background: #f2f0ff; }
    .advantage--5 .advantage__bg { background: #fff9ea; }
    .advantage--6 .advantage__bg { background: #eef7ff; }

    .advantage__inner {
      position: relative;
      z-index: 2;
      max-width: 1920px;
      margin: 0 auto;
      height: 100%;
      padding: 0 250px;
      display: flex;
      align-items: center;
    }

    .advantage__text {
      flex-shrink: 0;
      width: 536px;
    }

    .advantage__title {
      font-weight: 700;
      font-size: 65px;
      line-height: 70px;
      color: #112337;
    }

    .advantage__title span {
      color: #2563eb;
    }

    .advantage__title small {
      font-size: 40px;
      font-weight: 700;
      line-height: 70px;
    }

    .advantage__desc {
      font-weight: 400;
      font-size: 18px;
      line-height: 36px;
      color: #777;
      margin-top: 23px;
      max-width: 453px;
    }

    .advantage__images {
      position: relative;
      flex: 1;
      height: 100%;
      margin-left: 80px;
    }

    .advantage--right .advantage__inner {
      flex-direction: row-reverse;
    }

    .advantage--right .advantage__text {
      width: 528px;
      margin-left: 80px;
    }

    .advantage--right .advantage__images {
      margin-left: 0;
    }

    .advantage__img {
      position: absolute;
      border-radius: 40px;
      overflow: hidden;
      border: 10px solid #fff;
      box-shadow: 0px 15px 60px 0px #d8e1e7;
    }

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

    /* Section 1 images */
    .advantage--1 .advantage__img--main {
      width: 568px; height: 409px;
      top: 50%; left: 0;
      transform: translateY(-50%); margin-top: -10px;
    }
    .advantage--1 .advantage__img--secondary {
      width: 448px; height: 323px;
      bottom: 80px; left: 215px; z-index: 2;
    }
    .advantage--1 .advantage__img--tertiary {
      width: 343px; height: 111px;
      top: 162px; left: 355px; z-index: 3;
    }

    /* Section 2 images */
    .advantage--2 .advantage__img--main {
      width: 590px; height: 409px;
      top: 50%; left: 0; transform: translateY(-55%);
    }
    .advantage--2 .advantage__img--secondary {
      width: 297px; height: 323px;
      bottom: 75px; left: -51px; z-index: 2;
    }
    .advantage--2 .advantage__img--tertiary {
      width: 297px; height: 180px;
      top: 144px; left: 352px; z-index: 3;
    }

    /* Section 3 images */
    .advantage--3 .advantage__img--main {
      width: 568px; height: 409px;
      top: 50%; left: 0; transform: translateY(-60%);
    }
    .advantage--3 .advantage__img--secondary {
      width: 307px; height: 266px;
      bottom: 46px; left: 391px; z-index: 2;
    }
    .advantage--3 .advantage__img--tertiary {
      width: 346px; height: 111px;
      top: 158px; left: -59px; z-index: 3;
    }

    /* Section 4 images */
    .advantage--4 .advantage__img--main {
      width: 590px; height: 409px;
      top: 50%; left: 0; transform: translateY(-55%);
    }
    .advantage--4 .advantage__img--secondary {
      width: 525px; height: 284px;
      bottom: 63px; left: -51px; z-index: 2;
      background: #f4f7f9;
    }
    .advantage--4 .advantage__img--tertiary {
      width: 317px; height: 180px;
      top: 95px; left: 357px; z-index: 3;
    }

    /* Section 5 images */
    .advantage--5 .advantage__img--main {
      width: 568px; height: 409px;
      top: 50%; left: 0;
      transform: translateY(-10px); margin-top: -205px;
    }
    .advantage--5 .advantage__img--secondary {
      width: 448px; height: 323px;
      bottom: 54px; left: 215px; z-index: 2;
    }
    .advantage--5 .advantage__img--tertiary {
      width: 343px; height: 111px;
      top: 127px; left: 355px; z-index: 3;
    }

    /* Section 6 images */
    .advantage--6 .advantage__img--main {
      width: 590px; height: 409px;
      top: 50%; left: 0; transform: translateY(-55%);
    }
    .advantage--6 .advantage__img--secondary {
      width: 297px; height: 323px;
      bottom: 54px; left: -51px; z-index: 2;
    }
    .advantage--6 .advantage__img--tertiary {
      width: 297px; height: 180px;
      top: 134px; left: 352px; z-index: 3;
    }

    /* ===== REVIEWS ===== */
    .reviews {
      position: relative;
      width: 100%;
      padding: 84px 0 70px;
      overflow: hidden;
    }

    .reviews__title {
      font-weight: 700;
      font-size: 65px;
      line-height: 70px;
      color: #112337;
      text-align: center;
      margin-bottom: 28px;
    }

    .reviews__wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 31px;
      padding: 0 133px;
    }

    .reviews__arrow {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.3s;
    }

    .reviews__arrow:hover {
      opacity: 0.7;
      transform: scale(1.1);
    }

    .reviews__arrow--left {
      transform: rotate(180deg);
    }

    .reviews__arrow--left:hover {
      transform: rotate(180deg) scale(1.1);
    }

    .reviews__cards {
      display: flex;
      gap: 31px;
    }

    .review-card {
      position: relative;
      width: 694px;
      height: 302px;
      background: #fff;
      border-radius: 40px;
      box-shadow: 0px 15px 60px 0px #d8e1e7;
      overflow: hidden;
      flex-shrink: 0;
      padding: 37px 35px;
      display: flex;
      gap: 27px;
    }

    .review-card__avatar {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      margin-top: 8px;
    }

    .review-card__body {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .review-card__text {
      font-weight: 400;
      font-size: 16px;
      line-height: 30px;
      color: #777;
      flex: 1;
    }

    .review-card__bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 12px;
    }

    .review-card__info {
      display: flex;
      flex-direction: column;
      padding-left: 18px;
      border-left: 2px solid #e4ecf1;
    }

    .review-card__name {
      font-weight: 500;
      font-size: 18px;
      line-height: 30px;
      color: #112337;
    }

    .review-card__role {
      font-weight: 400;
      font-size: 16px;
      line-height: 30px;
      color: #869fd6;
    }

    .review-card__rating {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .review-card__rating-num {
      font-weight: 500;
      font-size: 18px;
      line-height: 30px;
      color: #112337;
    }

    .review-card__rating img {
      width: 23px;
      height: 23px;
    }

    .reviews__dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 51px;
    }

    .reviews__dot {
      width: 9px;
      height: 9px;
      border-radius: 2px;
      background: #d9d9d9;
      transition: background 0.3s;
    }

    .reviews__dot--active {
      background: #2563eb;
    }

    /* ===== HOW TO START ===== */
    .how-start {
      position: relative;
      width: 100%;
      padding: 106px 0 103px;
      background: #f4f8fb;
    }

    .how-start__title {
      font-weight: 700;
      font-size: 65px;
      line-height: 70px;
      color: #112337;
      margin-left: 251px;
      margin-bottom: 79px;
    }

    .how-start__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 62px 0;
      max-width: 1420px;
      margin: 0 auto;
      padding: 0 201px;
    }

    .step {
      position: relative;
      padding-left: 50px;
    }

    .step__circle {
      position: absolute;
      left: -16px;
      top: -45px;
      width: 167px;
      height: 167px;
    }

    .step__number {
      font-weight: 700;
      font-size: 50px;
      line-height: 70px;
      color: #2563eb;
      margin-bottom: 16px;
    }

    .step__title {
      font-weight: 700;
      font-size: 36px;
      line-height: 36px;
      color: #112337;
      margin-bottom: 7px;
      min-height: 78px;
      display: flex;
      align-items: flex-start;
    }

    .step__desc {
      font-weight: 400;
      font-size: 18px;
      line-height: 30px;
      color: #777;
      max-width: 423px;
    }

    .how-start__btn {
      display: flex;
      justify-content: center;
      margin-top: 60px;
    }

    /* ===== FAQ ===== */
    .faq {
      position: relative;
      width: 100%;
      padding: 101px 0 136px;
    }

    .faq__title {
      font-weight: 700;
      font-size: 65px;
      line-height: 70px;
      color: #112337;
      text-align: center;
      margin-bottom: 28px;
    }

    .faq__list {
      max-width: 1178px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 17px;
      padding: 0 20px;
    }

    .faq-item {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0px 15px 60px 0px #d8e1e7;
      overflow: hidden;
    }

    .faq-item__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 33px 19px 33px 49px;
      cursor: pointer;
      min-height: 100px;
    }

    .faq-item__question {
      font-weight: 500;
      font-size: 24px;
      line-height: 30px;
      color: #112337;
      transition: color 0.2s;
    }

    .faq-item--open .faq-item__question {
      color: #2563eb;
    }

    .faq-item__icon {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      border-radius: 10px;
      border: 1px solid #112336;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .faq-item__icon svg {
      width: 14px;
      height: 14px;
      stroke: #112336;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s, transform 0.3s;
    }

    .faq-item--open .faq-item__icon {
      background: #2563eb;
      border-color: #2563eb;
      box-shadow: 0 20px 35px rgba(37, 99, 235, 0.35);
    }

    .faq-item--open .faq-item__icon svg {
      stroke: #fff;
      transform: rotate(90deg);
    }

    .faq-item__body {
      display: none;
      padding: 0 49px 27px;
    }

    .faq-item--open .faq-item__body {
      display: block;
    }

    .faq-item__divider {
      height: 1px;
      background: #e4ecf1;
      margin-bottom: 28px;
    }

    .faq-item__answer {
      font-weight: 400;
      font-size: 18px;
      line-height: 30px;
      color: #777;
      max-width: 1002px;
    }

    /* ===== CONTACT FORM ===== */
    .contact {
      position: relative;
      width: 100%;
      min-height: 872px;
      overflow: hidden;
    }

    .contact__bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .contact__overlay {
      position: absolute;
      inset: 0;
      background: rgba(37, 99, 235, 0.95);
    }

    .contact__inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 112px 20px 80px;
    }

    .contact__title {
      font-weight: 700;
      font-size: 65px;
      line-height: 70px;
      color: #fff;
      text-align: center;
      margin-bottom: 20px;
    }

    .contact__form {
      display: flex;
      flex-direction: column;
      gap: 17px;
      width: 696px;
      max-width: 100%;
    }

    .contact__input {
      width: 100%;
      height: 80px;
      background: #fff;
      border-radius: 10px;
      border: none;
      padding: 0 32px;
      font-family: 'Gilroy', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: #112337;
      outline: none;
    }

    .contact__input::placeholder {
      color: #777;
    }

    .contact__textarea {
      width: 100%;
      height: 130px;
      background: #fff;
      border-radius: 10px;
      border: none;
      padding: 25px 32px;
      font-family: 'Gilroy', sans-serif;
      font-weight: 400;
      font-size: 18px;
      color: #112337;
      outline: none;
      resize: none;
    }

    .contact__textarea::placeholder {
      color: #777;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 272px;
      height: 80px;
      background: #112337;
      border-radius: 10px;
      font-weight: 500;
      font-size: 24px;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      margin: 9px auto 0;
    }

    .btn-dark:hover {
      background: #1a3452;
      transform: translateY(-2px);
    }

    /* ===== FOOTER ===== */
    .footer {
      position: relative;
      width: 100%;
      padding: 54px 0 0;
    }

    .footer__inner {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 254px;
      display: flex;
      gap: 100px;
    }

    .footer__col1 {
      display: flex;
      flex-direction: column;
    }

    .footer__logo {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 36px;
    }

    .footer__logo img {
      width: 47px;
      height: 35px;
    }

    .footer__logo-text {
      font-weight: 800;
      font-size: 28px;
      line-height: 48px;
      color: #122438;
    }

    .footer__links a {
      display: block;
      font-weight: 400;
      font-size: 16px;
      line-height: 16px;
      color: #2563eb;
      margin-bottom: 27px;
    }

    .footer__links a:hover {
      text-decoration: underline;
    }

    .footer__col2 {
      display: flex;
      flex-direction: column;
    }

    .footer__contacts-title {
      font-weight: 700;
      font-size: 24px;
      line-height: 1.3;
      color: #000;
      margin-bottom: 15px;
    }

    .footer__contacts-line {
      width: 60px;
      height: 2px;
      background: #2563eb;
      margin-bottom: 34px;
    }

    .footer__contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .footer__contact-item img {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .footer__contact-phone {
      font-weight: 500;
      font-size: 30px;
      line-height: 14px;
      color: #000;
    }

    .footer__contact-link {
      font-weight: 400;
      font-size: 20px;
      line-height: 1.3;
      color: #2563eb;
    }

    .footer__col3 {
      display: flex;
      flex-direction: column;
    }

    .footer__contact-text {
      font-weight: 400;
      font-size: 20px;
      line-height: 1.3;
      color: #112337;
    }

    .footer__bottom {
      margin-top: 46px;
      padding: 20px 0 30px;
      border-top: 1px solid #e4ecf1;
    }

    .footer__copyright {
      font-weight: 400;
      font-size: 16px;
      line-height: 1;
      color: #777;
      text-align: center;
    }

    /* ======================================================
       RESPONSIVE
       ====================================================== */

    /* Large desktop */
    @media (max-width: 1440px) {
      .header__inner {
        padding: 0 80px;
      }
      .header__nav {
        gap: 24px;
        margin-left: 30px;
      }
      .header__nav a {
        font-size: 16px;
      }
      .hero__content {
        padding-top: 180px;
      }
      .hero__title {
        font-size: 60px;
        line-height: 75px;
      }
      .hero__subtitle {
        font-size: 30px;
        line-height: 42px;
      }
      .advantage__inner {
        padding: 0 80px;
      }
      .advantage__text {
        width: 420px;
      }
      .advantage--right .advantage__text {
        width: 420px;
      }
      .advantage__title {
        font-size: 50px;
        line-height: 58px;
      }
      .advantage__title small {
        font-size: 32px;
      }
      .advantage__images {
        margin-left: 40px;
      }
      .advantage--right .advantage__text {
        margin-left: 40px;
      }
      .how-start__title {
        margin-left: 80px;
      }
      .how-start__grid {
        padding: 0 80px;
      }
      .footer__inner {
        padding: 0 80px;
        gap: 60px;
      }
      .reviews__wrapper {
        padding: 0 60px;
      }

      /* Scale down advantage images proportionally */
      .advantage--1 .advantage__img--main,
      .advantage--5 .advantage__img--main { width: 440px; height: 320px; }
      .advantage--1 .advantage__img--secondary,
      .advantage--5 .advantage__img--secondary { width: 350px; height: 250px; left: 160px; }
      .advantage--1 .advantage__img--tertiary,
      .advantage--5 .advantage__img--tertiary { width: 270px; height: 90px; left: 260px; }

      .advantage--2 .advantage__img--main,
      .advantage--4 .advantage__img--main,
      .advantage--6 .advantage__img--main { width: 460px; height: 330px; }
      .advantage--2 .advantage__img--secondary,
      .advantage--6 .advantage__img--secondary { width: 230px; height: 260px; left: -30px; }
      .advantage--2 .advantage__img--tertiary,
      .advantage--6 .advantage__img--tertiary { width: 230px; height: 145px; left: 270px; }
      .advantage--4 .advantage__img--secondary { width: 400px; height: 220px; left: -30px; }
      .advantage--4 .advantage__img--tertiary { width: 250px; height: 145px; left: 270px; }

      .advantage--3 .advantage__img--main { width: 440px; height: 320px; }
      .advantage--3 .advantage__img--secondary { width: 240px; height: 210px; left: 300px; }
      .advantage--3 .advantage__img--tertiary { width: 270px; height: 90px; left: -40px; }
    }

    /* Tablet landscape */
    @media (max-width: 1200px) {
      .header__nav {
        display: none;
      }
      .header__lang {
        display: none;
      }
      .header__burger {
        display: flex;
      }
      .header__inner {
        padding: 0 40px;
      }
      .header__right {
        display: none;
      }

      .hero {
        height: auto;
        min-height: 650px;
        padding-bottom: 60px;
      }
      .hero__content {
        padding-top: 150px;
      }
      .hero__title {
        font-size: 48px;
        line-height: 60px;
      }
      .hero__subtitle {
        font-size: 24px;
        line-height: 36px;
      }
      .hero__desc {
        font-size: 16px;
        line-height: 28px;
      }
      .hero__desc br {
        display: none;
      }

      .advantage {
        height: auto;
        padding: 60px 0;
        overflow: visible;
      }
      .advantage__inner {
        flex-direction: column !important;
        padding: 0 40px;
        gap: 40px;
      }
      .advantage__text {
        width: 100% !important;
        text-align: center;
      }
      .advantage--right .advantage__text {
        margin-left: 0;
      }
      .advantage__desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
      .advantage__images {
        position: relative;
        width: 100%;
        height: 420px;
        margin-left: 0;
        overflow: visible;
      }
      .advantage__img--main {
        width: 65% !important;
        height: 300px !important;
        top: 20px !important;
        left: 5% !important;
        transform: none !important;
        margin-top: 0 !important;
        bottom: auto !important;
      }
      .advantage__img--secondary {
        width: 42% !important;
        height: 210px !important;
        bottom: 10px !important;
        top: auto !important;
        left: 50% !important;
        transform: none !important;
      }
      .advantage__img--tertiary {
        width: 38% !important;
        height: 80px !important;
        top: 0 !important;
        left: 55% !important;
        bottom: auto !important;
      }

      .reviews__title {
        font-size: 48px;
      }
      .reviews__wrapper {
        padding: 0 20px;
        gap: 15px;
      }
      .reviews__arrow {
        width: 40px;
        height: 40px;
      }
      .review-card {
        width: 500px;
        height: auto;
        min-height: 280px;
      }
      .reviews__cards {
        gap: 20px;
      }

      .how-start__title {
        margin-left: 40px;
        font-size: 48px;
      }
      .how-start__grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
        gap: 50px 40px;
      }

      .faq__title {
        font-size: 48px;
      }
      .faq-item__header {
        padding: 25px 15px 25px 30px;
      }
      .faq-item__question {
        font-size: 20px;
      }
      .faq-item__icon {
        width: 48px;
        height: 48px;
      }
      .faq-item__body {
        padding: 0 30px 20px;
      }

      .contact__title {
        font-size: 48px;
      }

      .footer__inner {
        padding: 0 40px;
        gap: 40px;
        flex-wrap: wrap;
      }
      .footer__contact-phone {
        font-size: 24px;
      }
    }

    /* Tablet portrait */
    @media (max-width: 992px) {
      .hero__title {
        font-size: 40px;
        line-height: 52px;
      }
      .hero__subtitle {
        font-size: 22px;
        line-height: 32px;
      }

      .advantage__title {
        font-size: 40px;
        line-height: 48px;
      }
      .advantage__title small {
        font-size: 26px;
        line-height: 48px;
      }

      .reviews__cards {
        flex-direction: column;
        align-items: center;
      }
      .review-card {
        width: 100%;
        max-width: 600px;
      }
      .reviews__arrow {
        display: none;
      }
      .reviews__wrapper {
        flex-direction: column;
      }

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

      .step__title {
        font-size: 28px;
        line-height: 32px;
        min-height: 64px;
      }

      .contact__form {
        width: 100%;
        max-width: 500px;
      }

      .footer__inner {
        flex-direction: column;
        gap: 30px;
      }
      .footer__col3 > div:first-child {
        display: none;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .header {
        height: 80px;
      }
      .header__inner {
        padding: 0 20px;
      }
      .header__logo-text {
        font-size: 22px;
      }
      .header__logo img {
        width: 36px;
        height: 27px;
      }
      .mobile-menu {
        top: 80px;
        height: calc(100vh - 80px);
      }

      .hero {
        min-height: auto;
        padding-bottom: 50px;
      }
      .hero__content {
        padding-top: 110px;
      }
      .hero__title {
        font-size: 32px;
        line-height: 42px;
      }
      .hero__title br {
        display: none;
      }
      .hero__subtitle {
        font-size: 18px;
        line-height: 28px;
        margin-top: 16px;
      }
      .hero__desc {
        font-size: 15px;
        line-height: 24px;
        margin-top: 12px;
      }
      .btn-primary {
        width: 220px;
        height: 60px;
        font-size: 18px;
      }

      .advantage {
        padding: 40px 0;
      }
      .advantage__inner {
        padding: 0 20px;
      }
      .advantage__title {
        font-size: 32px;
        line-height: 40px;
      }
      .advantage__title small {
        font-size: 22px;
        line-height: 40px;
      }
      .advantage__desc {
        font-size: 16px;
        line-height: 28px;
      }
      .advantage__images {
        height: 320px;
      }
      .advantage__img--main {
        width: 80% !important;
        height: 220px !important;
        left: 0 !important;
        top: 20px !important;
      }
      .advantage__img--secondary {
        width: 55% !important;
        height: 160px !important;
        left: 40% !important;
        bottom: 0 !important;
        top: auto !important;
      }
      .advantage__img--tertiary {
        width: 50% !important;
        height: 65px !important;
        left: 45% !important;
        top: 0 !important;
      }

      .reviews {
        padding: 50px 0 40px;
      }
      .reviews__title {
        font-size: 32px;
        line-height: 42px;
      }
      .reviews__wrapper {
        padding: 0 20px;
      }
      .review-card {
        flex-direction: column;
        padding: 25px;
        gap: 16px;
      }
      .review-card__avatar {
        width: 60px;
        height: 60px;
        margin-top: 0;
      }
      .review-card__text {
        font-size: 14px;
        line-height: 24px;
      }
      .review-card__name {
        font-size: 16px;
      }
      .review-card__role {
        font-size: 14px;
      }

      .how-start {
        padding: 50px 0 60px;
      }
      .how-start__title {
        font-size: 32px;
        line-height: 42px;
        margin-left: 20px;
        margin-bottom: 40px;
      }
      .how-start__grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
      }
      .step {
        padding-left: 30px;
      }
      .step__circle {
        width: 120px;
        height: 120px;
        left: -10px;
        top: -30px;
      }
      .step__number {
        font-size: 40px;
      }
      .step__title {
        font-size: 24px;
        line-height: 30px;
        min-height: auto;
        margin-bottom: 10px;
      }
      .step__desc {
        font-size: 16px;
        line-height: 26px;
      }

      .faq {
        padding: 50px 0 60px;
      }
      .faq__title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
      }
      .faq-item__header {
        padding: 20px 15px 20px 20px;
        min-height: 70px;
      }
      .faq-item__question {
        font-size: 16px;
        line-height: 24px;
      }
      .faq-item__icon {
        width: 40px;
        height: 40px;
      }
      .faq-item__body {
        padding: 0 20px 20px;
      }
      .faq-item__answer {
        font-size: 15px;
        line-height: 26px;
      }

      .contact {
        min-height: auto;
      }
      .contact__inner {
        padding: 60px 20px;
      }
      .contact__title {
        font-size: 32px;
        line-height: 42px;
      }
      .contact__input {
        height: 60px;
        font-size: 16px;
        padding: 0 20px;
      }
      .contact__textarea {
        height: 100px;
        font-size: 16px;
        padding: 18px 20px;
      }
      .btn-dark {
        width: 220px;
        height: 60px;
        font-size: 18px;
      }

      .footer {
        padding: 30px 0 0;
      }
      .footer__inner {
        padding: 0 20px;
      }
      .footer__logo-text {
        font-size: 22px;
      }
      .footer__contacts-title {
        font-size: 20px;
      }
      .footer__contact-phone {
        font-size: 20px;
      }
      .footer__contact-link {
        font-size: 16px;
      }
      .footer__contact-text {
        font-size: 16px;
      }
      .footer__copyright {
        font-size: 14px;
      }
      .footer__bottom {
        margin-top: 30px;
        padding: 15px 0 20px;
      }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .hero__content {
        padding-top: 100px;
      }
      .hero__title {
        font-size: 26px;
        line-height: 36px;
      }
      .hero__subtitle {
        font-size: 16px;
        line-height: 24px;
      }
      .hero__desc {
        font-size: 14px;
        line-height: 22px;
      }
      .btn-primary {
        width: 200px;
        height: 56px;
        font-size: 16px;
      }
      .btn-dark {
        width: 200px;
        height: 56px;
        font-size: 16px;
      }

      .advantage__title {
        font-size: 26px;
        line-height: 34px;
      }
      .advantage__title small {
        font-size: 18px;
        line-height: 34px;
      }
      .advantage__images {
        height: 240px;
      }
      .advantage__img--main {
        height: 180px !important;
      }
      .advantage__img--secondary {
        height: 130px !important;
      }

      .reviews__title {
        font-size: 26px;
      }

      .how-start__title {
        font-size: 26px;
        line-height: 36px;
      }

      .faq__title {
        font-size: 26px;
        line-height: 36px;
      }

      .contact__title {
        font-size: 26px;
        line-height: 36px;
      }
    }
