/* ============================================
   ПОДКЛЮЧЕНИЕ ЛОКАЛЬНЫХ ШРИФТОВ
   ============================================ */

/* Roboto Regular */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/wp-content/themes/esalanding/assets/fonts/Roboto-Regular.ttf') format('truetype');
}

/* Roboto Bold */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/wp-content/themes/esalanding/assets/fonts/Roboto-Bold.ttf') format('truetype');
}

/* Raleway Regular */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/wp-content/themes/esalanding/assets/fonts/Raleway-v4020-Regular.otf') format('opentype');
}

/* Raleway Bold */
@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/wp-content/themes/esalanding/assets/fonts/Raleway-v4020-Bold.otf') format('opentype');
}

/* ============================================
   ОСНОВНЫЕ СТИЛИ
   ============================================ */
* {
    /* margin: 0; */
    /* padding: 0; */
    box-sizing: border-box;
    max-width: 100%;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Применяем шрифты */
body,
p,
span,
div,
.text,
input,
button,
textarea {
    font-family: 'Roboto', 'Arial', sans-serif;
}

/* Заголовки и меню */
h1,
h2,
h3,
h4,
.menu-item a,
.title,
.service-title,
.case-title,
.gift-title,
.faq-question {
    font-family: 'Raleway', 'Arial', sans-serif;
    font-weight: 600;
}

/* Жирное начертание */
strong,
b,
.bold {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    transition: all 0.3s;
}

/* ============================================
   ФИКСИРОВАННАЯ ШАПКА
   ============================================ */
.header-wrapper {
    transition: all 0.3s ease;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-placeholder {
    display: none;
}

/* ========== ВЕРХНЯЯ ПАНЕЛЬ ========== */
.top-bar {
    background-color: #20282d;
    color: white;
    width: 100%;
    padding: 8px 0;
    position: relative;
    min-height: 80px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 80px;
}

/* Логотип - с отступом от края 30px */
.logo-wrapper {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
}

.logo {
    width: 70px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Группа правых блоков - прижата к правому краю */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
    margin-left: auto;
    padding-right: 20px;
}

/* Каждый правый блок */
.top-bar-item {
    flex-shrink: 0;
}

/* Стили для блоков адреса, телефона, времени работы */
.address-block,
.phones-block,
.hours-block {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.skew-text {
    display: inline-block;
    transform: skewX(-8deg);
    font-style: italic;
    font-size: 12px;
}

.skew-icon {
    transform: skewX(-8deg);
    font-size: 18px;
    color: #80D2E8;
    flex-shrink: 0;
}

.blue-text {
    color: #80D2E8;
}

/* ========== МЕНЮ ========== */
.menu-container {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.menu-wrapper {
    width: 100%;
    position: relative;
}

.main-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.menu-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.menu-item-first {
    position: relative;
}

.menu-item-last {
    flex: 1;
}

.menu-item>a {
    display: block;
    padding: 16px 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    /* white-space: nowrap; */
    letter-spacing: 0.2px;
}

.menu-item>a:hover {
    color: #2c6e8f;
    border-bottom-color: #2c6e8f;
}

.menu-item>a i {
    font-size: 11px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.menu-item:hover>a i {
    transform: rotate(180deg);
}

/* Подменю */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.submenu-item a:hover {
    background: #f8f9fa;
    color: #2c6e8f;
    border-left-color: #2c6e8f;
    padding-left: 25px;
}

.submenu-item.long-text a {
    white-space: normal;
    line-height: 1.4;
}

/* ============================================
   ГЛАВНЫЙ СЛАЙДЕР
   ============================================ */
.slider-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
    background: #0a0f14;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #0a0f14;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0f14;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide picture,
.slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

/* Стрелки слайдера */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid #80D2E8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #80D2E8;
    transform: translateY(-50%) scale(1.1);
    color: #0a0f14;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* Точки навигации */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #80D2E8;
    transform: scale(1.2);
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ СЛАЙДЕРА ========== */
@media (max-width: 768px) {
    .slider-section {
        height: auto;
        padding: 15px 0;
    }

    .slider-container {
        padding: 0 15px;
        height: auto;
    }

    .slider {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .slide {
        position: relative;
        width: 100%;
        height: auto;
        display: none;
    }

    .slide.active {
        display: block;
        position: relative;
    }

    .slide picture,
    .slide img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow-left {
        left: 25px;
    }

    .slider-arrow-right {
        right: 25px;
    }

    .slider-dots {
        bottom: -5px;
    }
}

/* ============================================
   БЛОК "О КОМПАНИИ"
   ============================================ */
.about-company {
    background: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.about-title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.title-letter {
    transform: skew(-15deg);
    display: inline-block;
    margin-right: 10px;
}

.title-text {
    transform: skew(-15deg);
    display: inline-block;
    color: #80D2E8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.questions-block {
    display: flex;
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.gradient-stripe {
    position: absolute;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #80D2E8, rgba(128, 210, 232, 0.2));
}

.question-text {
    font-size: 18px;
    color: #80D2E8;
    font-style: italic;
    margin-bottom: 15px;
}

.info-description {
    background: rgba(128, 210, 232, 0.05);
    border: 1px solid rgba(128, 210, 232, 0.15);
    border-radius: 8px;
    padding: 30px;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(128, 210, 232, 0.08);
    border-radius: 8px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(128, 210, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #80D2E8;
}

.achievement-icon i {
    font-size: 24px;
    color: #80D2E8;
}

.achievement-count {
    font-size: 32px;
    color: #80D2E8;
}

.achievement-text {
    color: #ffffff;
}

/* Слайдер "О компании" */
.main-slide-container {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.main-slide.active {
    opacity: 1;
    z-index: 1;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #80D2E8;
    color: #80D2E8;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.about-slider-arrow-left {
    left: 15px;
}

.about-slider-arrow-right {
    right: 15px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
}

.thumb.active {
    border-color: #80D2E8;
    opacity: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .main-slide-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 15px;
    }
}

/* ============================================
   БЛОК "СПИСОК УСЛУГ"
   ============================================ */
.services-list-block {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 80px 0;
}

.services-list-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-list-title {
    font-family: 'Raleway', sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

.services-list-title-main {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.list-title-word {
    transform: skew(-15deg);
    padding: 0 20px;
}

.list-title-word-1 {
    color: #80D2E8;
}

.list-title-word-2 {
    color: #ffffff;
}

.services-grid-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-skew-block {
    transform: skewX(-15deg);
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.service-skew-block:hover {
    border-color: #80D2E8;
    background: rgba(128, 210, 232, 0.1);
    transform: skewX(-15deg) scale(1.02);
}

.skew-content {
    transform: skewX(15deg);
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
}

.service-subitem {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.service-subitem::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #80D2E8;
}

.service-subitem p {
    font-size: 14px;
    color: #cccccc;
}

.service-price-info {
    margin-top: auto;
    padding: 15px;
    border-top: 1px solid rgba(128, 210, 232, 0.3);
    text-align: center;
    transform: skewX(15deg);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-label {
    color: #ffffff;
}

.price-value {
    color: #ff3b30;
    font-weight: 700;
    font-size: 18px;
}

.promo-stars-wrapper {
    margin-top: 15px;
    text-align: center;
}

.promo-text {
    font-size: 18px;
    font-weight: 900;
    color: #FF3B30;
    text-transform: uppercase;
}

.star {
    font-size: 20px;
}

.star-blue {
    color: #80D2E8;
}

.star-red {
    color: #FF3B30;
}

.star-white {
    color: #ffffff;
}

@media (max-width: 992px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-row {
        grid-template-columns: 1fr;
    }

    .services-list-title {
        font-size: 32px;
    }

    .services-list-title-main {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   СУПЕРОФФЕР
   ============================================ */
.super-offer {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 80px 0;
}

.super-offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.super-offer-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.super-offer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.super-offer-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.super-offer-title-line:first-child {
    color: #ffffff;
}

.super-offer-title-line:nth-child(2) {
    color: #80D2E8;
}

.price-line {
    color: #ffffff;
    font-size: 30px;
}

.red-price {
    color: #ff3b30;
}

.order-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 20px 50px;
    cursor: pointer;
}

.order-button .button-text {
    transform: skewX(15deg);
    font-size: 22px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .super-offer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   НАШИ КЕЙСЫ
   ============================================ */
.cases-section {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cases-carousel-container {
    position: relative;
    width: 100%;
    padding: 40px 0 70px;
}

.cases-carousel-wrapper {
    /* overflow: hidden; */
    margin: 0 -15px;
    padding: 0 15px;
}

.cases-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.case-card {
    flex: 0 0 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 210, 232, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: #80D2E8;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.case-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
}

.case-image-wrapper {
    flex: 0 0 320px;
    width: 320px;
    height: 320px;
}

.case-image-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(5deg);
    transition: all 0.4s ease;
}

.case-card:hover .case-image-container {
    transform: rotate(3deg) scale(1.02);
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    flex: 1;
}

.case-tag {
    display: inline-block;
    background: rgba(128, 210, 232, 0.2);
    border: 1px solid rgba(128, 210, 232, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #80D2E8;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.case-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.case-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 12px;
}

.case-meta {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(128, 210, 232, 0.2);
    margin-bottom: 25px;
}

.case-price {
    font-size: 28px;
    font-weight: 700;
    color: #C9F31D;
}

.case-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #80D2E8;
}

.case-detail-btn {
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 12px 28px;
    border-radius: 40px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #80D2E8;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.case-detail-btn:hover {
    background: #80D2E8;
    color: #0a0f14;
}

.cases-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #80D2E8;
    border-radius: 50%;
    color: #80D2E8;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cases-carousel-arrow:hover {
    background: #80D2E8;
    color: #0a0f14;
}

.cases-carousel-arrow-left {
    left: 10px;
}

.cases-carousel-arrow-right {
    right: 10px;
}

.cases-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.cases-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-dot.active {
    background: #80D2E8;
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .case-card-inner {
        flex-direction: column;
        text-align: center;
    }

    .case-image-wrapper {
        margin: 0 auto;
    }

    .case-meta {
        justify-content: center;
    }
}

/* ============================================
   НАМ ДОВЕРЯЮТ
   ============================================ */
.trust-section {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 60px 0;
}

.trust-title {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    transform: skewX(-15deg);
    margin-bottom: 60px;
}

.trust-title-letter {
    color: #80D2E8;
    margin-right: 15px;
}

.trust-title-word {
    color: #ffffff;
}

.trust-carousel-container {
    overflow: hidden;
}

.trust-carousel-track {
    display: flex;
    gap: 30px;
    animation: trustScroll 40s linear infinite;
    width: fit-content;
}

.trust-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes trustScroll {
    100% {
        transform: translateX(calc(-230px * 15));
    }
}

.trust-carousel-slide {
    flex: 0 0 200px;
    text-align: center;
}

.trust-logo-wrapper {
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px 8px 0 0;
}

.trust-logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.trust-caption {
    background: #1a2835;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    border-top: 2px solid #80D2E8;
    border-radius: 0 0 8px 8px;
}

/* ============================================
   ПОДАРКИ НОВЫМ КЛИЕНТАМ
   ============================================ */
.gift-section {
    background: #0a0f14;
    padding: 60px 0;
}

.gift-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gift-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 210, 232, 0.25);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gift-card:hover {
    transform: translateY(-5px);
    border-color: #80D2E8;
}

.gift-card-inner {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gift-badge {
    display: inline-block;
    background: rgba(128, 210, 232, 0.15);
    border: 1px solid rgba(128, 210, 232, 0.4);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #80D2E8;
    width: fit-content;
    margin-bottom: 20px;
}

.gift-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.gift-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.gift-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(128, 210, 232, 0.1);
}

.gift-old-price {
    font-size: 13px;
    color: #ff6b6b;
    text-decoration: line-through;
    min-width: 65px;
}

.gift-text {
    font-size: 13px;
    color: #e0e0e0;
    flex: 1;
}

.gift-free-block {
    text-align: center;
    padding: 15px 0 5px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.gift-free-label {
    display: block;
    font-size: 11px;
    color: #aaaaaa;
    text-transform: uppercase;
}

.gift-free-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #C9F31D;
    font-style: italic;
    transform: skewX(-8deg);
}

.gift-special-text p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.gift-highlight {
    color: #C9F31D;
    font-weight: 700;
}

.gift-telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #80D2E8;
    border-radius: 40px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #80D2E8;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gift-telegram-btn:hover {
    background: #80D2E8;
    color: #0a0f14;
}

@media (max-width: 900px) {
    .gift-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gift-grid-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ДОВОЛЬНЫЕ КЛИЕНТЫ
   ============================================ */
.happy-clients-section {
    background: #0a0f14;
    padding: 60px 0;
}

.clients-carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0 50px;
}

.clients-carousel-wrapper {
    overflow: hidden;
    margin: 0 -15px;
    padding: 0 15px;
}

.clients-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.client-card {
    flex: 0 0 calc((100% - 75px) / 4);
    background-color: #000;
    border: 1px solid rgba(128, 210, 232, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: #80D2E8;
}

.client-photo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.client-card:hover .client-photo {
    transform: scale(1.08);
}

.client-info {
    padding: 15px;
    background: #000000;
    text-align: center;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #80D2E8;
    margin-bottom: 6px;
}

.client-company {
    font-size: 12px;
    color: #cccccc;
}

.clients-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #80D2E8;
    border-radius: 50%;
    color: #80D2E8;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.clients-carousel-arrow:hover {
    background: #80D2E8;
    color: #0a0f14;
}

.clients-carousel-arrow-left {
    left: -10px;
}

.clients-carousel-arrow-right {
    right: -10px;
}

.clients-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.clients-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.clients-dot.active {
    background: #80D2E8;
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .client-card {
        flex: 0 0 calc((100% - 50px) / 3);
    }
}

@media (max-width: 900px) {
    .client-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media (max-width: 600px) {
    .client-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   ПОРТФОЛИО
   ============================================ */
.portfolio-section {
    background: #0a0f14;
    padding: 60px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 210, 232, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: #80D2E8;
}

.portfolio-image-wrapper {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.08);
}

.portfolio-item-title {
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    background: #000000;
}

.portfolio-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.portfolio-more-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 20px 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portfolio-more-button .button-text {
    transform: skewX(15deg);
    font-size: 22px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.portfolio-more-button:hover {
    background: rgba(128, 210, 232, 0.1);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ВИДЕООТЗЫВЫ КЛИЕНТОВ
   ============================================ */
.video-testimonials-section {
    background: #0a0f14;
    padding: 60px 0;
}

.video-carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0 60px;
}

.video-carousel-wrapper {
    overflow: hidden;
    margin: 0 -15px;
    padding: 0 15px;
}

.video-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.video-testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 210, 232, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #80D2E8;
}

.video-preview-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(128, 210, 232, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button-overlay i {
    font-size: 28px;
    color: white;
    margin-left: 5px;
}

.play-button-overlay:hover {
    background: #80D2E8;
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #000000;
    border-top: 1px solid rgba(128, 210, 232, 0.2);
}

.author-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0;
    border: 2px solid #80D2E8;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #80D2E8;
    margin: 0 0 5px 0;
}

.testimonial-author p {
    font-size: 12px;
    color: #cccccc;
    margin: 0;
}

@media (max-width: 1024px) {
    .video-testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .video-testimonial-card {
        flex: 0 0 100%;
    }

    .play-button-overlay {
        width: 50px;
        height: 50px;
    }

    .play-button-overlay i {
        font-size: 20px;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: #0a0f14;
    padding: 60px 0 0 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-main-title {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
}

.faq-title-part--blue {
    color: #80D2E8;
    margin-right: 15px;
}

.faq-title-part--white {
    color: #ffffff;
}

.faq-subtitle {
    text-align: center;
    font-size: 20px;
    color: #80D2E8;
    font-style: italic;
    margin-bottom: 50px;
}

.faq-accordion-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-column-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-column-number {
    color: #80D2E8;
    font-weight: 800;
    font-size: 24px;
    background: rgba(128, 210, 232, 0.1);
    padding: 5px 12px;
    border-radius: 30px;
    border: 1px solid #80D2E8;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(128, 210, 232, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    padding: 18px 20px 18px 55px;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: '+';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #80D2E8;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 210, 232, 0.1);
    border-radius: 50%;
    border: 1px solid #80D2E8;
}

.faq-item[open] {
    background: rgba(128, 210, 232, 0.05);
    border-color: #80D2E8;
}

.faq-item[open] .faq-question {
    color: #80D2E8;
}

.faq-item[open] .faq-question::before {
    content: '−';
    background: #80D2E8;
    color: #0a0f14;
}

.faq-answer {
    padding: 0 20px 20px 55px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

.faq-marquee-container {
    width: 100%;
    overflow: hidden;
    height: 45px;
    background-color: #80D2E8;
    margin-top: 60px;
    position: relative;
}

.faq-marquee-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    align-items: center;
    animation: faqMarqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.faq-marquee-text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    padding: 0 40px;
    flex-shrink: 0;
}

@keyframes faqMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

@media (max-width: 992px) {
    .faq-accordion-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-main-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .faq-accordion-container {
        grid-template-columns: 1fr;
    }

    .faq-main-title {
        font-size: 30px;
    }

    .faq-marquee-container {
        height: 38px;
    }

    .faq-marquee-text {
        font-size: 13px;
        padding: 0 25px;
    }
}

/* ============================================
   ИГОРЬ КУЗЬМИН - ОСНОВАТЕЛЬ
   ============================================ */
.founder-section {
    background: #0a0f14;
    padding: 60px 0;
}

.founder-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.photo-frame {
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(128, 210, 232, 0.3);
}

.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-tag {
    display: inline-block;
    background: rgba(128, 210, 232, 0.15);
    border: 1px solid rgba(128, 210, 232, 0.4);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #80D2E8;
    margin-bottom: 20px;
}

.founder-name {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.founder-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.desc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.desc-item i {
    font-size: 20px;
    color: #80D2E8;
    min-width: 28px;
}

.desc-item p {
    font-size: 16px;
    color: #e0e0e0;
}

.desc-item strong {
    color: #80D2E8;
}

.founder-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 18px 45px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.founder-button .button-text {
    transform: skewX(15deg);
    font-size: 18px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.founder-button:hover {
    background: rgba(128, 210, 232, 0.1);
}

.button-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 12px;
}

.founder-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(128, 210, 232, 0.05);
    padding: 20px 35px;
    border-radius: 60px;
    border: 1px solid rgba(128, 210, 232, 0.15);
}

.result-number {
    font-size: 42px;
    font-weight: 800;
    color: #80D2E8;
}

.result-label {
    font-size: 13px;
    color: #cccccc;
    text-transform: uppercase;
}

.result-divider {
    width: 2px;
    height: 50px;
    background: rgba(128, 210, 232, 0.3);
}

@media (max-width: 900px) {
    .founder-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .photo-frame {
        margin: 0 auto;
    }

    .desc-item {
        text-align: left;
    }

    .founder-button-wrapper {
        text-align: center;
    }
}

/* ============================================
   ДИПЛОМЫ И СЕРТИФИКАТЫ
   ============================================ */
.diploma-section {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 80px 0;
}

.diploma-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.diploma-subtitle p {
    font-size: 18px;
    font-style: italic;
    color: #ffffff;
}

.diploma-count {
    color: #C9F31D;
    font-weight: 700;
}

.diploma-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 15px 0 40px;
}

.diploma-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.diploma-slide {
    flex: 0 0 calc((100% - 60px) / 4);
}

.diploma-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 210, 232, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.diploma-image-wrapper {
    aspect-ratio: 2 / 3;
    padding: 10px;
}

.diploma-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diploma-carousel-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #80D2E8;
    border-radius: 50%;
    color: #80D2E8;
    cursor: pointer;
}

.diploma-carousel-arrow-left {
    left: 5px;
}

.diploma-carousel-arrow-right {
    right: 5px;
}

.diploma-carousel-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.diploma-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.diploma-dot.active {
    background: #80D2E8;
}

@media (max-width: 992px) {
    .diploma-slide {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .diploma-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* ============================================
   ШВЕЙЦАРСКИЙ ПАТЕНТ
   ============================================ */
.patent-project {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 100px 0;
}

.patent-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.patent-badge {
    margin-bottom: 20px;
}

.badge-text,
.badge-company {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(128, 210, 232, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
    margin-right: 10px;
}

.badge-company {
    color: #C9F31D;
    background: rgba(201, 243, 29, 0.1);
}

.patent-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
}

.title-line:first-child {
    color: #80D2E8;
}

.title-line.accent {
    color: #C9F31D;
    font-size: 46px;
}

.patent-description {
    margin-bottom: 30px;
}

.description-text {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 20px;
}

.description-quote {
    font-size: 20px;
    color: #80D2E8;
    font-style: italic;
    padding-left: 25px;
    border-left: 3px solid #C9F31D;
}

.patent-features {
    list-style: none;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #ffffff;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: rgba(128, 210, 232, 0.1);
    border: 1px solid #80D2E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #80D2E8;
}

.patent-order-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 20px 40px;
    cursor: pointer;
}

.patent-order-button .button-text {
    transform: skewX(15deg);
    font-size: 18px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.patent-image-container {
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.patent-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .patent-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .patent-image-container {
        margin: 0 auto;
    }

    .feature-item {
        justify-content: center;
    }
}

/* ============================================
   СТАРТОВЫЙ ПРОДУКТ
   ============================================ */
.startup-product-section {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 80px 0;
}

.startup-row {
    margin-bottom: 40px;
}

.startup-row-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.startup-text-block,
.startup-image-block {
    transform: skewX(-10deg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s;
    min-height: 320px;
}

.startup-text-block:hover,
.startup-image-block:hover {
    border-color: #80D2E8;
}

.startup-text-block .skew-content {
    transform: skewX(10deg);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.startup-number {
    font-size: 48px;
    font-weight: 800;
    color: #80D2E8;
    border-bottom: 3px solid #80D2E8;
    display: inline-block;
    margin-bottom: 20px;
}

.startup-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.startup-description p {
    font-size: 15px;
    color: #cccccc;
}

.startup-price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(128, 210, 232, 0.3);
}

.startup-price .price-value {
    color: #80D2E8;
    font-size: 24px;
}

.startup-image-block {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.startup-image-block img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    transform: skewX(10deg) scale(1.05);
    transition: transform 0.5s ease;
}

.startup-image-block:hover img {
    transform: skewX(10deg) scale(1.15);
}

.audit-promo-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px;
    border-radius: 12px;
    border-left: 3px solid #80D2E8;
}

.audit-star {
    font-size: 28px;
    color: #C9F31D;
}

.audit-description {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

.audit-description .old-price {
    color: #ff6b6b;
    text-decoration: line-through;
    text-wrap: nowrap;
}

.startup-telegram-order-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 14px 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    width: 100%;
}

.startup-telegram-order-button i,
.startup-telegram-order-button .button-text {
    transform: skewX(15deg);
}

.startup-telegram-order-button .button-text {
    font-size: 16px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.startup-telegram-order-button:hover {
    background: rgba(128, 210, 232, 0.1);
}

@media (max-width: 992px) {
    .startup-row-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   СОЗДАНИЕ И ПРОДВИЖЕНИЕ САЙТОВ
   ============================================ */
.creation-promo-section {
    background: #0a0f14;
    padding: 60px 0;
}

.creation-title .list-title-word {
    color: #ffffff;
}

.creation-subtitle {
    text-align: center;
    font-size: 22px;
    font-style: italic;
    color: #80D2E8;
    margin-bottom: 40px;
}

.creation-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(128, 210, 232, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.creation-left {
    padding: 40px;
}

.creation-about-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.accent-text {
    color: #80D2E8;
    font-weight: 700;
}

.creation-services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px 0;
}

.creation-services-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

.creation-services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #80D2E8;
}

.creation-detail-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 18px 45px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.creation-detail-button .button-text {
    transform: skewX(15deg);
    font-size: 18px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.creation-detail-button:hover {
    background: rgba(128, 210, 232, 0.1);
}

.accordion-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: max-height 0.5s ease;
    overflow: hidden;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 210, 232, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.accordion-title {
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

.accordion-icon i {
    font-size: 16px;
    color: #80D2E8;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.creation-right {
    background: rgba(128, 210, 232, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.creation-logo {
    width: 280px;
    height: 310px;
    background: rgba(128, 210, 232, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #80D2E8;
}

.creation-logo .custom-logo-link {
    display: inline-flex;
    justify-content: center;
}

.creation-logo img {
    max-width: 80%;
    height: 80%;
    object-fit: contain;
}


@media (max-width: 992px) {
    .creation-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .creation-right {
        order: -1;
    }
}

/* ============================================
   ОТЗЫВЫ КЛИЕНТОВ
   ============================================ */
.reviews-section {
    background: #0a0f14;
    padding: 60px 0;
}

.reviews-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.yandex-widget-container {
    background: #0a0f14;
    display: inline-block;
    line-height: 0;
    font-size: 0;
    overflow: visible;
    width: 100%;
}

.widget-invert {
    background: #0a0f14;
    overflow: hidden;
    filter: invert(0.92) hue-rotate(180deg) brightness(1.1);
    display: inline-block;
    line-height: 0;
    width: 100%;
}

.widget-invert iframe {
    /* width: calc(100% + 4px); */
    max-width: none;
    height: 600px;
    display: block;
    background: #0a0f14;
    /* margin-left: -2px; */
    border: none;
}

@media (max-width: 860px) {
    .widget-invert iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .widget-invert iframe {
        height: 450px;
    }
}

/* ============================================
   ПОДВАЛ
   ============================================ */
.site-footer {
    position: relative;
    color: #ffffff;
    border-top: 3px solid #80D2E8;
    overflow: hidden;
    background: #1a1a2e;
    /* ← светлее чем #0a0f14 */
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/footer-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* ← было 0.6, уменьшил до 0.3 - намного светлее */
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.3) 0%, rgba(10, 15, 20, 0.2) 100%);
    /* ← уменьшил opacity */
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    /* grid-template-columns: 1.6fr 1fr; */
    grid-template-columns: 1.6fr 350px;
    gap: 50px;
    padding: 70px 20px 50px;
    max-width: unset;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-item {
    margin-bottom: 12px;
}

.footer-menu-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-menu-item a::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #80D2E8;
}

.footer-menu-item a:hover {
    color: #80D2E8;
    transform: translateX(8px);
}

.footer-logo {
    max-width: 160px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 15px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-consult-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 14px 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-consult-button .button-text {
    transform: skewX(15deg);
    font-size: 14px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.footer-consult-button:hover {
    background: rgba(128, 210, 232, 0.2);
}

.footer-right {
    position: relative;
    z-index: 2;
}

.footer-form-block {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 210, 232, 0.5);
    border-radius: 20px;
    padding: 70px 25px 30px;
    position: relative;
}

.footer-girl-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #80D2E8;
}

.footer-girl-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(128, 210, 232, 0.4);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
}

.footer-input:focus {
    outline: none;
    border-color: #80D2E8;
}

.footer-submit-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 14px 20px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-submit-button .button-text {
    transform: skewX(15deg);
    font-size: 14px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.footer-submit-button:hover {
    background: rgba(128, 210, 232, 0.2);
}

.footer-policy-links {
    text-align: center;
    margin: 15px 0;
    font-size: 12px;
}

.policy-link {
    color: #ffffff;
    text-decoration: none;
}

.policy-link:hover {
    color: #80D2E8;
}

.policy-separator {
    color: #80D2E8;
    margin: 0 8px;
}

.footer-contact-info {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(128, 210, 232, 0.4);
    border-bottom: 1px solid rgba(128, 210, 232, 0.4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ffffff;
}

.contact-item i {
    color: #80D2E8;
    font-size: 18px;
    width: 15px;
}

.contact-phones a {
    color: #ffffff;
    text-decoration: none;
}

.contact-phones a:hover {
    color: #80D2E8;
}

.footer-director-button {
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 12px 20px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-director-button .button-text,
.footer-director-button i {
    transform: skewX(15deg);
}

.footer-director-button .button-text {
    font-size: 14px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.footer-director-button i {
    font-size: 16px;
    color: #80D2E8;
}

.footer-director-button:hover {
    background: rgba(128, 210, 232, 0.2);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(128, 210, 232, 0.3);
    padding: 20px 0;
    text-align: center;
}

.copyright-text {
    font-size: 14px;
    color: #ffffff;
}

.disclaimer-text {
    font-size: 11px;
    color: #dddddd;
    max-width: 900px;
    margin: 10px auto 0;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-menu-item {
        margin-bottom: 0;
    }
}

/* ============================================
   БУРГЕР-МЕНЮ
   ============================================ */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #80D2E8;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #20282d;
    z-index: 999;
    overflow-y: auto;
    padding: 100px 20px 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
    display: block;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(128, 210, 232, 0.2);
}

.mobile-menu-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu-item>a i {
    color: #80D2E8;
    transition: transform 0.3s;
}

.mobile-menu-item.active>a i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0 0 15px 20px;
    margin: 0;
    display: none;
}

.mobile-menu-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu-item a {
    display: block;
    padding: 12px 0;
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    border-left: 2px solid #80D2E8;
    padding-left: 15px;
}

.mobile-submenu-item a:hover {
    color: #80D2E8;
}

.mobile-contacts {
    margin: 30px 0 20px;
}

.mobile-contact-item {
    margin-bottom: 15px;
}

.mobile-contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-contact-item i {
    color: #80D2E8;
    width: 25px;
}

.mobile-callback-btn {
    width: 100%;
    transform: skewX(-15deg);
    background: transparent;
    border: 2px solid #80D2E8;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.mobile-callback-btn i,
.mobile-callback-btn span {
    transform: skewX(15deg);
}

.mobile-callback-btn span {
    font-size: 16px;
    font-weight: 700;
    color: #80D2E8;
    text-transform: uppercase;
}

.mobile-callback-btn i {
    font-size: 18px;
    color: #80D2E8;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .menu-container .main-menu {
        display: none;
    }
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ ФИКСЫ
   ============================================ */
body.admin-bar .header-wrapper {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header-wrapper {
        top: 46px;
    }
}

.slider-section {
    margin-top: 0;
    padding-top: 0;
}

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.wrapper_informer_metrica {
    margin-bottom: 15px;
}

.wrapper-rewiews {
    filter: invert(0.92) hue-rotate(180deg) brightness(1.1);
}

/* ============================================
   ДОВОЛЬНЫЕ КЛИЕНТЫ - ИСПРАВЛЕННЫЙ
   ============================================ */
.happy-clients-section {
    background: #0a0f14;
    padding: 60px 0;
    position: relative;
}

.clients-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 50px;
}

/* Обертка для карточек - с отступами для стрелок */
.clients-carousel-wrapper {
    overflow: hidden;
    margin: 0 60px;
    /* Увеличенный отступ, чтобы стрелки не наезжали */
    padding: 0;
}

.clients-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* Карточка клиента */
.client-photo-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    padding: 15px;
    text-align: center;
}

.client-name {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #80D2E8;
    margin-bottom: 5px;
}

.client-company {
    font-size: 12px;
    color: #cccccc;
}

/* Стрелки - за пределами карточек, не наезжают */
.clients-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(128, 210, 232, 0.2);
    border: 2px solid #80D2E8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.clients-carousel-arrow:hover {
    background: #80D2E8;
}

.clients-carousel-arrow i {
    color: white;
    font-size: 18px;
}

/* Стрелки снаружи контейнера с карточками */
.clients-carousel-arrow-left {
    left: -20px;
}

.clients-carousel-arrow-right {
    right: -20px;
}

/* Точки */
.clients-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.clients-carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(128, 210, 232, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clients-carousel-dots .dot.active {
    background: #80D2E8;
    width: 25px;
    border-radius: 5px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .client-card {
        flex: 0 0 calc(33.333% - 17px);
    }

    .clients-carousel-wrapper {
        margin: 0 50px;
    }

    .clients-carousel-arrow-left {
        left: -15px;
    }

    .clients-carousel-arrow-right {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .client-card {
        flex: 0 0 calc(50% - 13px);
    }

    .clients-carousel-wrapper {
        margin: 0 40px;
    }

    .clients-carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .clients-carousel-arrow-left {
        left: -10px;
    }

    .clients-carousel-arrow-right {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .client-card {
        flex: 0 0 100%;
    }

    .clients-carousel-wrapper {
        margin: 0 35px;
    }
}

/* Бегущая строка с префиксами uw */
.uw-marquee-container {
    width: 100%;
    height: 45px;
    background-color: #C9F31D;
    overflow: hidden;
    position: relative;
}

.uw-marquee-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    align-items: center;
    animation: uw-marquee-animation 30s linear infinite;
    white-space: nowrap;
}

.uw-word {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    color: #000000;
    text-transform: uppercase;
    padding: 0 40px;
    flex-shrink: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes uw-marquee-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Адаптивность для бегущей строки */
@media (max-width: 992px) {
    .uw-marquee-container {
        height: 80px;
    }

    .uw-word {
        font-size: 22px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .uw-marquee-container {
        height: 35px;
    }

    .uw-word {
        font-size: 20px;
        padding: 0 25px;
    }
}

@media (max-width: 576px) {
    .uw-marquee-container {
        height: 30px;
    }

    .uw-word {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .uw-marquee-container {
        height: 28px;
    }

    .uw-word {
        font-size: 16px;
        padding: 0 15px;
    }
}

.phones-block a {
    color: #fff;
    text-decoration: none;
}


.events-section {
    background: linear-gradient(135deg, #0a0f14 0%, #1a2835 100%);
    padding: 60px 0;
}

.events-section .services-list-title {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
}

.events-section .list-title-word-1 {
    color: #80D2E8;
}

.events-section .list-title-word-2 {
    color: #ffffff;
}

.events-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.events-detail-slider {
    flex: 1;
    overflow: hidden;
}

.events-detail-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.events-detail-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.events-detail-card {
    display: flex;
    gap: 30px;
    padding: 10px;
    align-items: flex-start;
}

.events-detail-left {
    flex: 0.9;
    min-width: 0;
}

.events-main-photo {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Фото не обрезается, а вписывается целиком */
.events-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.events-thumbnails-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.thumb-scroll-btn {
    width: 28px;
    height: 50px;
    background: rgba(128, 210, 232, 0.2);
    border: 1px solid rgba(128, 210, 232, 0.5);
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-size: 12px;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-scroll-btn:hover {
    background: #80D2E8;
}

.thumb-scroll-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.events-thumbnails-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.events-thumbnails-container::-webkit-scrollbar {
    height: 3px;
}

.events-thumbnails-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.events-thumbnails-container::-webkit-scrollbar-thumb {
    background: #80D2E8;
    border-radius: 3px;
}

.events-thumbnails {
    display: flex;
    gap: 8px;
    min-width: min-content;
}

.events-thumbnails .thumb {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    flex-shrink: 0;
    background: #1a1a2e;
}

.events-thumbnails .thumb.active {
    opacity: 1;
    border: 2px solid #80D2E8;
    transform: scale(1.02);
}

.events-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-detail-right {
    flex: 1.1;
    padding: 0 10px;
    max-height: 450px;
    overflow-y: auto;
}

.events-detail-right::-webkit-scrollbar {
    width: 4px;
}

.events-detail-right::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.events-detail-right::-webkit-scrollbar-thumb {
    background: #80D2E8;
    border-radius: 4px;
}

.events-detail-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #80D2E8;
    margin-bottom: 15px;
    line-height: 1.3;
}

.events-detail-date,
.events-detail-location {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.events-detail-date i,
.events-detail-location i {
    color: #80D2E8;
    width: 16px;
}

.events-detail-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
    margin-top: 15px;
}

.events-detail-prev,
.events-detail-next {
    width: 50px;
    height: 50px;
    background: rgba(128, 210, 232, 0.2);
    border: 2px solid rgba(128, 210, 232, 0.6);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 22px;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-detail-prev:hover,
.events-detail-next:hover {
    background: #80D2E8;
    transform: scale(1.05);
}

.events-detail-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.events-detail-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(128, 210, 232, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.events-detail-dots .dot.active {
    background: #80D2E8;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .events-detail-card {
        gap: 20px;
    }

    .events-main-photo {
        height: 300px;
    }

    .events-detail-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 40px 0;
    }

    .events-section .services-list-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .events-slider-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .events-detail-prev,
    .events-detail-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .events-detail-card {
        flex-direction: column;
        gap: 15px;
    }

    .events-main-photo {
        height: 250px;
    }

    .events-detail-right {
        max-height: none;
        overflow-y: visible;
        padding: 0;
    }

    .events-detail-title {
        font-size: 18px;
    }

    .events-thumbnails .thumb {
        width: 55px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .events-main-photo {
        height: 200px;
    }

    .events-thumbnails .thumb {
        width: 45px;
        height: 35px;
    }
}

.header-wrapper .skew-text a:hover {
    color: #80D2E8;
}

.header-wrapper .skew-text {
    text-align: end;
}

.header-wrapper.header-fixed .logo img {
    width: 50px;
}

.header-wrapper.header-fixed .top-bar,
.header-wrapper.header-fixed .top-bar-container {
    min-height: 40px;
}

@media (max-width:860px) {
    .logo-wrapper {
        display: none;
    }
}

@media (max-width:760px) {
    .esa_header_address {
        display: none;
    }
}

@media (max-width:760px) {
    .esa_header_schedule {
        display: none;
    }
}

.top-bar-item.esa_header_address {
    display: none;
}

.cky-notice-des *,
.cky-preference-content-wrapper *,
.cky-accordion-header-des *,
.cky-gpc-wrapper .cky-gpc-desc * {
    font-size: 12px !important;
    line-height: 15px !important;
}

.cky-notice .cky-title {
    font-size: 14px !important;
}

.cky-btn {
    padding: 0 !important;
    font-size: 12px !important;
}

.cky-consent-container {
    width: 400px !important;
}

section.page_section {
    max-width: 1200px;
    margin: 70px auto;
}

/* стили футера */
.personal_data {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-block: 5px;
    font-weight: 600;
    font-size: 14px;
}

.wrapper_pd {
    margin: 10px auto 20px auto;
}

/* ============================================
   СОВРЕМЕННЫЙ ДИЗАЙН ДЛЯ СТРАНИЦЫ РАЗРАБОТКИ ПРИЛОЖЕНИЙ
   ============================================ */

/* Импорт шрифта Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

.mobile-apps-page {
    background: #0a0a0a;
    color: #ffffff;
}

.mobile-apps-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Секции с разными темными фонами */
.mobile-apps-page .apps-hero {
    background: #0a0c10;
}

.mobile-apps-page .problems-section {
    background: #050505;
}

.mobile-apps-page .difference-section {
    background: #0b0e16;
}

.mobile-apps-page .super-offer-apps {
    background: #0d1118;
}

.mobile-apps-page .cases-apps-section {
    background: #06080c;
}

.mobile-apps-page .leadmagnet-section {
    background: #0c1017;
}

.mobile-apps-page .pricing-constructor {
    background: #0e121a;
}

.mobile-apps-page .expertise-section {
    background: #080b12;
}

.mobile-apps-page .geo-trigger {
    background: #0a0e15;
}

.mobile-apps-page .faq-apps-section {
    background: #040608;
}

.mobile-apps-page .founder-apps-section {
    background: #0b1018;
}

.mobile-apps-page .final-cta {
    background: #020304;
}

/* Шрифты */
.mobile-apps-page,
.mobile-apps-page p,
.mobile-apps-page span,
.mobile-apps-page li,
.mobile-apps-page .problem-card p,
.mobile-apps-page .advantage-card p,
.mobile-apps-page .price-desc {
    font-family: 'Inter', sans-serif;
}

.mobile-apps-page h1,
.mobile-apps-page h2,
.mobile-apps-page h3,
.mobile-apps-page h4,
.mobile-apps-page .section-header h2,
.mobile-apps-page .problem-card h3,
.mobile-apps-page .advantage-card h3,
.mobile-apps-page .price-card h3,
.mobile-apps-page .exp-item h3,
.mobile-apps-page .faq-question span:first-child {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-weight: 700;
}

/* Акцентный цвет */
.mobile-apps-page .accent {
    color: #80D2E8;
}

/* Секция-заголовок */
.mobile-apps-page .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.mobile-apps-page .section-header h2 {
    font-size: 44px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.mobile-apps-page .section-subtitle {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.7;
}

/* Герой */
.mobile-apps-page .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.mobile-apps-page .hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.mobile-apps-page .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.8;
}

.mobile-apps-page .hero-price-trigger {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-apps-page .price-badge,
.mobile-apps-page .time-badge,
.mobile-apps-page .stack-badge {
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
}

.mobile-apps-page .price-badge {
    background: rgba(128, 210, 232, 0.15);
    border: 1px solid #80D2E8;
    color: #80D2E8;
}

.mobile-apps-page .time-badge,
.mobile-apps-page .stack-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-apps-page .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-apps-page .hero-features span {
    font-size: 14px;
    opacity: 0.7;
}

.mobile-apps-page .hero-buttons {
    display: flex;
    gap: 16px;
}

/* Кнопки */
.mobile-apps-page .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.mobile-apps-page .btn-primary {
    background: #80D2E8;
    border: none;
    color: #0a0c10;
}

.mobile-apps-page .btn-primary:hover {
    background: #C9F31D;
    transform: translateY(-2px);
}

.mobile-apps-page .btn-secondary {
    background: transparent;
    border: 1px solid #80D2E8;
    color: #80D2E8;
}

.mobile-apps-page .btn-secondary:hover {
    background: rgba(128, 210, 232, 0.1);
    transform: translateY(-2px);
}

/* Проблематика */
.mobile-apps-page .problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mobile-apps-page .problem-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.mobile-apps-page .problem-card:hover {
    transform: translateY(-4px);
    background: rgba(128, 210, 232, 0.05);
}

.mobile-apps-page .problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.mobile-apps-page .problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mobile-apps-page .problem-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 16px;
}

.mobile-apps-page .solution {
    font-size: 13px;
    color: #C9F31D;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Преимущества */
.mobile-apps-page .advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mobile-apps-page .advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-apps-page .advantage-card:hover {
    transform: translateY(-4px);
    background: rgba(128, 210, 232, 0.05);
}

.mobile-apps-page .advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mobile-apps-page .advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mobile-apps-page .advantage-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.7;
}

/* Супер-оффер */
.mobile-apps-page .offer-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(128, 210, 232, 0.2);
}

.mobile-apps-page .offer-badge {
    display: inline-block;
    background: #80D2E8;
    color: #0a0c10;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.mobile-apps-page .offer-card h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.mobile-apps-page .offer-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 32px;
    list-style: none;
}

.mobile-apps-page .offer-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 28px;
}

.mobile-apps-page .offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9F31D;
}

.mobile-apps-page .offer-list li.highlight {
    color: #C9F31D;
    font-weight: 600;
}

.mobile-apps-page .offer-price {
    margin-bottom: 24px;
}

.mobile-apps-page .old-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 16px;
}

.mobile-apps-page .new-price {
    font-size: 42px;
    font-weight: 800;
    color: #C9F31D;
}

.mobile-apps-page .btn-offer {
    background: transparent;
    border: 2px solid #C9F31D;
    color: #C9F31D;
    padding: 14px 40px;
}

.mobile-apps-page .btn-offer:hover {
    background: #C9F31D;
    color: #0a0c10;
}

/* Кейсы */
.mobile-apps-page .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mobile-apps-page .case-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-apps-page .case-card:hover {
    transform: translateY(-8px);
    background: rgba(128, 210, 232, 0.05);
}

.mobile-apps-page .case-image {
    height: 220px;
    overflow: hidden;
}

.mobile-apps-page .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mobile-apps-page .case-card:hover .case-image img {
    transform: scale(1.05);
}

.mobile-apps-page .case-content {
    padding: 24px;
}

.mobile-apps-page .case-tag {
    display: inline-block;
    background: rgba(128, 210, 232, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #80D2E8;
    margin-bottom: 12px;
}

.mobile-apps-page .case-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.mobile-apps-page .case-problem,
.mobile-apps-page .case-solution,
.mobile-apps-page .case-result {
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.mobile-apps-page .case-detail-btn {
    background: transparent;
    border: 1px solid #80D2E8;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #80D2E8;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.mobile-apps-page .case-detail-btn:hover {
    background: #80D2E8;
    color: #0a0c10;
}

/* Лид-магнит */
.mobile-apps-page .leadmagnet-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mobile-apps-page .leadmagnet-icon {
    font-size: 60px;
    margin-bottom: 24px;
}

.mobile-apps-page .leadmagnet-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.mobile-apps-page .audit-list {
    list-style: none;
    margin: 32px 0;
    text-align: left;
    display: inline-block;
}

.mobile-apps-page .audit-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 28px;
}

.mobile-apps-page .audit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9F31D;
    font-weight: bold;
}

.mobile-apps-page .btn-leadmagnet {
    background: #80D2E8;
    color: #0a0c10;
    border: none;
    padding: 14px 40px;
}

.mobile-apps-page .telegram-offer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-apps-page .tg-link {
    display: inline-block;
    margin-top: 12px;
    color: #80D2E8;
    text-decoration: none;
    font-weight: 600;
}

/* Цены */
.mobile-apps-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-apps-page .price-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-apps-page .price-card:hover {
    transform: translateY(-4px);
    background: rgba(128, 210, 232, 0.05);
}

.mobile-apps-page .price-card.featured {
    border: 1px solid #80D2E8;
    background: rgba(128, 210, 232, 0.05);
}

.mobile-apps-page .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #80D2E8;
    color: #0a0c10;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-apps-page .price-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.mobile-apps-page .price-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.5;
}

.mobile-apps-page .price-card .price {
    font-size: 36px;
    font-weight: 800;
    color: #80D2E8;
    margin-bottom: 8px;
}

.mobile-apps-page .term {
    font-size: 13px;
    opacity: 0.6;
}

.mobile-apps-page .additional-services {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-apps-page .additional-services p {
    margin: 8px 0;
    opacity: 0.7;
}

/* Экспертность */
.mobile-apps-page .expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mobile-apps-page .exp-item {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
}

.mobile-apps-page .exp-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 20px;
}

.mobile-apps-page .exp-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.mobile-apps-page .exp-item p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
}

/* Гео-триггер */
.mobile-apps-page .geo-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mobile-apps-page .geo-tab {
    background: transparent;
    border: 1px solid rgba(128, 210, 232, 0.4);
    color: #80D2E8;
    padding: 12px 32px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-apps-page .geo-tab:hover {
    background: rgba(128, 210, 232, 0.1);
}

.mobile-apps-page .geo-tab.active {
    background: #80D2E8;
    color: #0a0c10;
}

.mobile-apps-page .geo-content {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
}

.mobile-apps-page .geo-content.active {
    display: block;
}

.mobile-apps-page .geo-address {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.mobile-apps-page .geo-metro {
    opacity: 0.7;
}

/* FAQ */
.mobile-apps-page .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.mobile-apps-page .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.mobile-apps-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-apps-page .faq-question:hover {
    background: rgba(128, 210, 232, 0.05);
}

.mobile-apps-page .faq-question span:first-child {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 18px;
}

.mobile-apps-page .faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.mobile-apps-page .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.mobile-apps-page .faq-answer {
    display: none;
    padding: 0 24px 24px;
    opacity: 0.8;
    line-height: 1.6;
}

.mobile-apps-page .faq-item.active .faq-answer {
    display: block;
}

/* Основатель */
.mobile-apps-page .founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 48px;
    align-items: center;
}

.mobile-apps-page .founder-photo img {
    width: 100%;
    border-radius: 24px;
}

.mobile-apps-page .founder-text h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.mobile-apps-page .founder-title {
    color: #80D2E8;
    margin-bottom: 24px;
}

.mobile-apps-page .founder-text p {
    margin-bottom: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

.mobile-apps-page .btn-founder {
    background: transparent;
    border: 1px solid #80D2E8;
    color: #80D2E8;
    margin-top: 16px;
}

/* Финальный CTA */
.mobile-apps-page .final-cta {
    text-align: center;
    padding: 80px 0;
}

.mobile-apps-page .final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.mobile-apps-page .final-cta p {
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.8;
}

.mobile-apps-page .btn-final {
    background: #C9F31D;
    color: #0a0c10;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
}

.mobile-apps-page .final-contacts {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.mobile-apps-page .final-contacts a {
    color: #80D2E8;
    text-decoration: none;
    font-weight: 500;
}

/* Адаптив */
@media (max-width: 1024px) {
    .mobile-apps-page .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .mobile-apps-page .hero-buttons {
        justify-content: center;
    }

    .mobile-apps-page .hero-features {
        justify-content: center;
    }

    .mobile-apps-page .hero-price-trigger {
        justify-content: center;
    }

    .mobile-apps-page .problems-grid,
    .mobile-apps-page .advantages-grid,
    .mobile-apps-page .pricing-grid,
    .mobile-apps-page .expertise-grid,
    .mobile-apps-page .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-apps-page .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-apps-page .founder-photo {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-apps-page .section-header h2 {
        font-size: 32px;
    }

    .mobile-apps-page .hero-content h1 {
        font-size: 36px;
    }

    .mobile-apps-page .problems-grid,
    .mobile-apps-page .advantages-grid,
    .mobile-apps-page .pricing-grid,
    .mobile-apps-page .expertise-grid,
    .mobile-apps-page .cases-grid {
        grid-template-columns: 1fr;
    }

    .mobile-apps-page .offer-card {
        padding: 32px 20px;
    }

    .mobile-apps-page .new-price {
        font-size: 32px;
    }

    .mobile-apps-page .final-cta h2 {
        font-size: 32px;
    }

    .mobile-apps-page .final-contacts {
        flex-direction: column;
        gap: 12px;
    }

    .mobile-apps-page .geo-tab {
        padding: 8px 20px;
        font-size: 14px;
    }

    /* Минимальные стили для страницы мобильных приложений */
    .mobile-apps-page .apps-hero {
        background: #0a0c10;
    }

    .mobile-apps-page .problems-section {
        background: #050505;
    }

    .mobile-apps-page .difference-section {
        background: #0b0e16;
    }

    .mobile-apps-page .super-offer-apps {
        background: #0d1118;
    }

    .mobile-apps-page .cases-apps-section {
        background: #06080c;
    }

    .mobile-apps-page .leadmagnet-section {
        background: #0c1017;
    }

    .mobile-apps-page .pricing-constructor {
        background: #0e121a;
    }

    .mobile-apps-page .expertise-section {
        background: #080b12;
    }

    .mobile-apps-page .geo-trigger {
        background: #0a0e15;
    }

    .mobile-apps-page .faq-apps-section {
        background: #040608;
    }

    .mobile-apps-page .founder-apps-section {
        background: #0b1018;
    }

    .mobile-apps-page .final-cta {
        background: #020304;
    }

    .mobile-apps-page .problem-card .solution {
        color: #C9F31D;
    }

    .mobile-apps-page .hero-price-trigger span {
        padding: 8px 20px;
        border-radius: 40px;
        font-size: 14px;
    }

    .mobile-apps-page .price-badge {
        background: rgba(128, 210, 232, 0.15);
        border: 1px solid #80D2E8;
        color: #80D2E8;
    }

    .mobile-apps-page .time-badge,
    .mobile-apps-page .stack-badge {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* ============================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ БЛОКА "О КОМПАНИИ"
   ============================================ */

    /* Левый блок по высоте равен правому */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: stretch;
    }

    .about-info {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .about-info .questions-block {
        flex-shrink: 0;
    }

    .about-info .info-description {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .about-info .achievements {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Большая картинка на всю ширину слайдера */
    .main-slide-container {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .main-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s;
    }

    .main-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .main-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Миниатюры — картинка доходит до их края */
    .thumbnails {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .thumb {
        width: 70px;
        height: 70px;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        opacity: 0.6;
        flex-shrink: 0;
    }

    .thumb.active {
        border-color: #80D2E8;
        opacity: 1;
    }

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ============================================
   БЛОК "ЧЕМ МЫ ОТЛИЧАЕМСЯ"
   ============================================ */
    .difference-section {
        background: #0a0e17;
        padding: 80px 0;
    }

    .difference-section .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .difference-section .section-header h2 {
        font-family: 'Raleway', sans-serif;
        font-style: italic;
        font-size: 44px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.3;
    }

    .difference-section .accent {
        color: #80D2E8;
    }

    .comparison-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .comparison-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(128, 210, 232, 0.2);
        border-radius: 20px;
        padding: 30px;
        transition: all 0.3s ease;
    }

    .comparison-card:hover {
        transform: translateY(-5px);
        border-color: #80D2E8;
        background: rgba(128, 210, 232, 0.05);
    }

    .card-category {
        font-family: 'Raleway', sans-serif;
        font-style: italic;
        font-size: 20px;
        font-weight: 700;
        color: #80D2E8;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 2px solid rgba(128, 210, 232, 0.3);
    }

    .card-other,
    .card-us {
        margin-bottom: 16px;
    }

    .card-other .label,
    .card-us .label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .card-other .label {
        color: rgba(255, 255, 255, 0.5);
    }

    .card-us .label {
        color: #C9F31D;
    }

    .card-other .value {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

    .card-us .value {
        display: block;
        font-size: 14px;
        color: #ffffff;
        line-height: 1.5;
    }

    .card-us .value.accent-text {
        color: #80D2E8;
        font-weight: 500;
    }

    @media (max-width: 992px) {
        .comparison-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .difference-section {
            padding: 50px 0;
        }

        .difference-section .section-header h2 {
            font-size: 32px;
        }

        .comparison-grid {
            grid-template-columns: 1fr;
        }

        .comparison-card {
            padding: 24px;
        }
    }

