/* === Hero Section === */
.mvp-hero {
    background: #F2F6F9 url('/i/index_box_bg.png') center top repeat;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.mvp-hero::before {
    content: "";
    position: absolute;
    font-size: 60px;
    color: rgba(52, 152, 219, 0.1);
    font-weight: 300;
    /* Здесь можно добавить координаты ::before, если нужны декоративные символы */
}

.mvp-hero::after {
    content: "";
    position: absolute;
    font-size: 40px;
    color: rgba(52, 152, 219, 0.1);
    font-weight: 300;
    top: 200px;
    right: 100px;
    /* Здесь можно добавить координаты ::after, если нужны декоративные символы */
}

.mvp-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mvp-hero-text {
    flex: 1;
    max-width: 600px;
}

.mvp-hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.mvp-hero-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mvp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e91e63 0%, #FF0040 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.mvp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.mvp-hero-image {
    flex: 1;
    text-align: center;
}

.mvp-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* === Calculator Section === */
.mvp-calculator-section {
    background: #F2F6F9 url('/i/index_box_bg.png') center top repeat;
    padding: 80px 0;
    position: relative;
}

/* Обёртка для калькулятора + плюсов */
.mvp-calculator-wrapper {
    position: relative;
    width: 800px;
    /* ровно такая же ширина (или чуть больше) как у .mvp-calculator */
    margin: 0 auto;
    /* теперь сработает центрирование */
}

/* Стили для “плюсиков” */
.mvp-plus {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    color: #3498db;
    font-size: 24px;
    font-weight: lighter;
    text-align: center;
    pointer-events: none;
}

.mvp-plus-left {
    left: -40px;
    /* сдвиг влево на половину ширины */
}

.mvp-plus-right {
    right: -40px;
    /* сдвиг вправо на половину ширины */
}

.mvp-plus-top {
    top: 10px;
}

.mvp-plus-middle {
    top: 50%;
    transform: translateY(-50%);
}

.mvp-plus-bottom {
    bottom: 10px;
}

.mvp-calculator {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.mvp-calculator-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.4;
}

.mvp-highlight {
    color: #3498db;
    font-weight: 400;
}

.mvp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.mvp-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mvp-feature-item:hover {
    background: rgba(52, 152, 219, 0.05);
    border-radius: 8px;
    padding-left: 8px;
}

.mvp-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #B9E2FF;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: #B9E2FF;
}

.mvp-checkbox.checked {
    background: #3B9FE7;
    border-color: #3B9FE7;
}

.mvp-checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.mvp-feature-item span {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.4;
}

.mvp-result {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mvp-result-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.mvp-result-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mvp-result-price span:first-child {
    color: white;
    font-size: 18px;
}

.mvp-result-price .price {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

/* === Why MVP Section === */
/* === Why MVP Section === */
.mvp-why-section {
    padding: 50px 0;
    background: #FFFFFF;
}

/* Заголовок */
.mvp-why-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: visible;
}

.mvp-why-bubble {
    display: inline-block;
    background: #b0ebff;
    border-radius: 20px;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);


}

.mvp-why-bubble h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #0c253a;
    line-height: 1.2;
}

.mvp-why-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #b0ebff;
    margin: 8px auto 0;
}

/* Карточки */
.mvp-why-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.mvp-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    /* Добавьте минимальную высоту для видимого эффекта */
}

.mvp-card-icon {
    width: 40px;
    height: 40px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.mvp-card p {
    margin: 0;
    font-size: 20px;
    color: #34495e;
    line-height: 1.5;
}

/* Выделенный текст */
.mvp-why-highlight {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 16px 24px;
    border: 2px solid #3498db;
    border-radius: 12px;
    font-size: 16px;
    color: #0c253a;
    line-height: 1.4;
}

.mvp-why-highlight strong {
    color: #0c253a;
    font-weight: 600;
}

.mvp-why-highlight span {
    font-weight: 600;
    color: #3498db;
}

/* Кнопка «Узнать о нас больше» */
.mvp-cta-more {
    text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
    .mvp-why-cards {
        flex-direction: column;
        gap: 24px;
    }

    .mvp-why-highlight {
        font-size: 14px;
        padding: 12px 16px;
    }

    .mvp-button-outline-red {
        width: 100%;
        max-width: 300px;
    }
}

.mvp-full-cycle-section {
    padding: 80px 0;
    background: #F2F6F9 url('/i/index_box_bg.png') center top repeat;
    ;
}

.mvp-full-cycle-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.mvp-full-cycle-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 60px;
}

/* Контейнер для карточек и SVG-линий */
.mvp-cycle-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* Абсолютное SVG-полотно для пунктирных линий */
.mvp-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mvp-connector-svg svg {
    width: 100%;
    height: 100%;
}

/* Расположение карточек по кругу */
.mvp-cycle-items {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 2;
}

.cycle-item {
    position: absolute;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 280px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.cycle-icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.cycle-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.cycle-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cycle-item p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Позиционирование карточек */
.cycle-item-1 {
    align-items: center;
    top: 0;
    left: 19%;
    transform: translateX(-50%);
}

.cycle-item-2 {
    top: 0;
    right: 39%;
}

.cycle-item-3 {
    top: 0px;
    right: 10%;
}

.cycle-item-4 {
    bottom: 80px;
    left: 50%;
}

.cycle-item-5 {
    bottom: 80px;
    left: 23%;
}

/* Кнопка-CTA по центру */
.mvp-cycle-cta {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* ==== START EDITED BLOCK ==== */
.mvp-advantages-section {
    position: relative;
    /* padding: 80px 0 100px; */
    /* Добавляем фоновое изображение с телефонами */
    background: #f2f6f9 url('/i/advantages-phones-bg.png') right top no-repeat;
    background-size: contain;
    background-size: 30%;

}

.mvp-advantages-section .advantages-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Сетка для точного позиционирования как на скриншоте */
.mvp-advantages-section .advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Changed to 6 columns for precision */
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    z-index: 2;
}

.mvp-advantages-section .advantages-grid>.advantage-item:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
}

.mvp-advantages-section .advantages-grid>.advantage-item:nth-child(2) {
    grid-column: 3 / span 2;
    grid-row: 1;
}

.mvp-advantages-section .advantages-grid>.advantage-item:nth-child(3) {
    grid-column: 5 / span 2;
    grid-row: 1;
}

.mvp-advantages-section .advantages-grid>.advantage-item:nth-child(4) {
    grid-column: 2 / span 2;
    /* Centered between 1st and 2nd top items */
    grid-row: 2;
}

.mvp-advantages-section .advantages-grid>.advantage-item:nth-child(5) {
    grid-column: 4 / span 2;
    /* Centered between 2nd and 3rd top items */
    grid-row: 2;
}

/* Карточка */
.mvp-advantages-section .advantage-item {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Max-width is kept */
    background: #fff;
    border-radius: 20px;
    padding: 50px 24px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mvp-advantages-section .advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Плюс-иконка */
.mvp-advantages-section .advantage-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
}

.mvp-advantages-section .advantage-item:hover .advantage-icon {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.mvp-advantages-section .advantage-item h3 {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.mvp-advantages-section .advantage-item p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Секция партнёров — фон всей полосы */
.mvp-partners-section {
  background: #F2F6F9;      /* светло-серый фон */
  padding: 40px 0;
}

/* Карточка внутри секции */
.partners-card {
  background: #FFFFFF;                                      /* белый фон */
  border-radius: 20px;                                      /* скругление углов */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);              /* лёгкая тень */
  padding: 60px 40px;                                       /* внутренние отступы */
  max-width: 900px;                                         /* макс. ширина */
  margin: 0 auto;                                           /* центр по горизонтали */
  text-align: left;                                       /* выравнивание текста */
}

/* Опционально: чуть скорректировать заголовок и описания */
.partners-card .partners-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.3;
}

.partners-card .partners-description {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Логотипы */
.partners-card .partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.partners-card .partner-logo img {
  /* height: 60px; */
  width: auto;
  object-fit: contain;
  transition: transform .3s;
}

.partners-card .partner-logo:hover img {
  transform: translateY(-5px);
}

.partners-card .astana-hub-logo {
  height: 55px;  /* подберите нужную вам высоту */
  width: auto;
}

/* Можно, по желанию, чуть уменьшить другой логотип */
.partners-card .qazinnovation-logo {
  height: 120px;
  width: auto;
}

.mvp-calculator .w-100 {
  clear: both;           /* сбрасываем флоаты/absolute */
  margin-top: 20;      /* отступ сверху */
}

.mvp-calculator .w-100 .index-btn {
  position: static !important;  /* если у вас в глобальных стилях стоит absolute/fixed */
  display: inline-block;
  padding: 16px 24px;
  border-radius: 15px;
  max-height: 200px;
  width: 100%;
}
/* Responsive */
@media (max-width: 768px) {
  .partners-card {
    padding: 40px 20px;
  }
  .partners-card .partners-title {
    font-size: 24px;
  }
  .partners-card .partners-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .partners-card .partners-logos {
    gap: 40px;
  }
  .partners-card .partner-logo img {
    height: 50px;
  }
}

@media (max-width: 480px) {
    .mvp-partners-section {
padding: 40px 0;
    }

    .partners-title {
font-size: 20px;
    }

    .partners-description {
font-size: 13px;
margin-bottom: 15px;
    }

    .partners-description:last-of-type {
margin-bottom: 30px;
    }

    .partners-logos {
gap: 30px;
    }
}
/* === Responsive === */
@media (max-width: 1200px) {
    .mvp-advantages-section .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 30px;
    }

    .mvp-advantages-section .advantages-grid>.advantage-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .mvp-advantages-section .advantages-grid>.advantage-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .mvp-advantages-section .advantages-grid>.advantage-item:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .mvp-advantages-section .advantages-grid>.advantage-item:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .mvp-advantages-section .advantages-grid>.advantage-item:nth-child(5) {
        grid-column: 1 / span 2;
        /* Spanning full width to center it */
        grid-row: 3;
        justify-self: center;
        /* Explicitly centering */
    }
}

@media (max-width: 768px) {
    .mvp-advantages-section {
        padding: 60px 0 80px;
    }

    .mvp-advantages-section .advantages-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .mvp-advantages-section .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* Increased gap for better spacing in single column */
    }

    .mvp-advantages-section .advantages-grid>.advantage-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        justify-self: center;
    }

    .mvp-advantages-section .advantage-item {
        max-width: 320px;
        /* Setting max-width for consistency */
        padding: 40px 20px 24px;
    }

    .mvp-advantages-section .advantage-icon {
        width: 45px;
        height: 45px;
        top: -22px;
        font-size: 22px;
        line-height: 45px;
    }
}

/* ==== END EDITED BLOCK ==== */

/* === Responsive === */
@media (max-width: 768px) {
    .mvp-hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .mvp-hero-text h1 {
        font-size: 28px;
    }

    .mvp-features-grid {
        grid-template-columns: 1fr;
    }

    .mvp-why-content {
        flex-direction: column;
        gap: 40px;
    }

    .mvp-result {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mvp-cta-text {
        font-size: 18px;
    }
}

/* === Mobile (max-width: 480px) === */
@media (max-width: 480px) {

    /* Hero */
    .mvp-hero {
        padding: 40px 0 20px;
    }

    .mvp-hero-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
    }

    .mvp-hero-text h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .mvp-hero-text p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mvp-hero-image img {
        width: 100%;
        max-width: 300px;
    }

    /* Calculator */
    .mvp-calculator-wrapper {
        width: 100%;
        padding: 0 16px;
    }

    .mvp-calculator {
        padding: 24px;
    }

    .mvp-calculator-header h2 {
        font-size: 20px;
        margin-bottom: 24px;
    }

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

    .mvp-features-grid .mvp-feature-item span {
        font-size: 14px;
    }

    .mvp-result {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .mvp-result-text,
    .mvp-result-price span {
        font-size: 16px;
    }

    .price {
        font-size: 20px;
    }

    .mvp-plus {
        display: none;
        /* прячем плюсы на мобильных */
    }

    /* Why MVP */
    .mvp-why-section {
        padding: 30px 16px;
    }

    .mvp-why-bubble {
        padding: 12px 20px;
    }

    .mvp-why-bubble h2 {
        font-size: 18px;
    }

    .mvp-why-cards {
        flex-direction: column;
        gap: 16px;
    }

    .mvp-card {
        width: 100%;
        padding: 16px;
        min-height: auto;
    }

    .mvp-why-highlight {
        font-size: 14px;
        padding: 12px;
    }

    /* Full cycle */
    .mvp-full-cycle-section {
        padding: 40px 16px;
    }

    .mvp-full-cycle-section h2 {
        font-size: 24px;
    }

    .mvp-full-cycle-subtitle {
        font-size: 14px;
    }

    .mvp-cycle-container {
        padding-bottom: 30px;
    }

    /* Убираем старые правила */
    .mvp-connector-svg {
        display: none;
    }

    .mvp-cycle-items,
    .cycle-item,
    .mvp-cycle-cta {
        position: static !important;
        transform: none !important;
    }

    .mvp-cycle-items {
        height: auto !important;
    }

    /* Новый Grid-layout */
    .mvp-cycle-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .mvp-cycle-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px 20px;
        align-items: start;
    }

    /* Размещение карточек (по желанию можно оставить по порядку) */
    .cycle-item-1 {
        order: 0;
    }

    .cycle-item-2 {
        order: 1;
    }

    .cycle-item-3 {
        order: 2;
    }

    .cycle-item-4 {
        order: 3;
    }

    .cycle-item-5 {
        order: 4;
    }

    /* Центральная кнопка под всеми карточками */
    .mvp-cycle-cta {
        display: block;
        margin: 40px auto 0;
    }

    /* Немного адаптива для очень узких экранов */
    @media (max-width: 600px) {
        .mvp-cycle-items {
            gap: 20px;
        }
    }

}

@media (max-width: 768px) {
    .mvp-calculator-wrapper {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .mvp-card {
        width: 100%;
        max-width: 400px;
    }
    .mvp-connector-svg {
        display: none;
    }
    .mvp-cycle-items {
        position: static !important;
        height: auto !important;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px 20px;
    }
    .cycle-item {
        position: static !important;
        transform: none !important;
        width: 100%;
    }
    .mvp-cycle-cta {
        position: static !important;
        transform: none !important;
        display: block;
        margin: 30px auto 0;
        text-align: center;
    }
}

