  /* ===== Стили страницы (без изменений) ===== */
        :root {
            --primary: #FF5100;
            --primary-dark: #E04500;
            --primary-light: #FFF0E8;
            --bg-main: #FFFFFF;
            --bg-soft: #FAFAFA;
            --bg-dark: #1A1A2E;
            --text-dark: #1A1A2E;
            --text-body: #4A4A5A;
            --text-muted: #8E8E9A;
            --border: #EBEBEF;
            --gradient-primary: linear-gradient(135deg, #FF5100 0%, #FF8C42 100%);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 9999px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
            --shadow-glow: 0 8px 40px rgba(255, 81, 0, 0.2);
            --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
.mar-4 {margin-top:20px;}
        body {
            font-family: 'Golos Text', 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background: var(--bg-main);
       
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


/* ===== THANK YOU BLOCK ===== */
.thankyou {

    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #FFF8F4 0%, #FFF0E8 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: 0 8px 40px rgba(255, 81, 0, 0.15);
    animation: thankyou-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

/* Декоративные круги */
.thankyou::before {
    content: '✓';
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 120px;
    color: rgba(255, 81, 0, 0.06);
    font-weight: 900;
    pointer-events: none;
}

.thankyou::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 81, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Основной текст */
.thankyou {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Иконка галочки */
.thankyou::before {
    /* Переопределяем для декоративной галочки */
    content: '✓';
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 120px;
    color: rgba(255, 81, 0, 0.06);
    font-weight: 900;
    pointer-events: none;
    z-index: 0;
}

/* Галочка сверху */
.thankyou .check-icon {
    display:block;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    line-height: 56px;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(255, 81, 0, 0.3);
    animation: check-bounce 0.6s ease 0.3s forwards;
    opacity: 0;margin:0 auto;margin-bottom:20px;
    transform: scale(0);
    position: relative;
    z-index: 1;
}

/* Анимация появления блока */
@keyframes thankyou-pop {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Анимация галочки */
@keyframes check-bounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-30deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ===== DARK VERSION (для тёмного фона) ===== */
.thankyou.dark {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-color: var(--primary);
    backdrop-filter: blur(12px);
    color: #fff;
}

.thankyou.dark::before {
    color: rgba(255, 81, 0, 0.12);
}

.thankyou.dark::after {
    background: radial-gradient(circle, rgba(255, 81, 0, 0.1) 0%, transparent 70%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .thankyou {
        padding: 28px 20px;
        font-size: 16px;
    }
	.hero-visual {display:none !important;}
    .thankyou .check-icon {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .thankyou {
        padding: 24px 16px;
        font-size: 14px;
        border-radius: var(--radius-md);
    }
    
    .thankyou .check-icon {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 18px;
        margin-bottom: 12px;
    }
}
/* Стили для кастомного чекбокса */

.custom-checkbox input.error + .checkbox {
  background: red;
  border: 2px solid red;
}

.custom-checkbox {
  position: relative;
display: block;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(69, 53, 47, 1);
  padding-left: 30px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover {
  color: rgba(29, 26, 25, 1);
}

.hidden-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox {
  position: absolute;
  top: 10px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid rgba(255, 81, 0, 1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover .checkbox {
  border-color: rgba(225, 51, 0, 1);
}
.note {
  font-size: 11px;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.5);
}

.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.checkmark {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  background-color: rgba(255, 81, 0, 1);
  border-radius: 2px;
}
.form-supject {
  opacity: 0;
  display: none;
  pointer-events: none;
}
.hidden-checkbox:checked ~ .checkbox {
  background-color: rgba(255, 81, 0, 1);
  border-color: rgba(255, 81, 0, 1);
}

.hidden-checkbox:checked ~ .checkbox .checkmark {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox a {
  color: rgba(255, 81, 0, 1);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.custom-checkbox a:hover {
  color: rgba(225, 51, 0, 1);
  text-decoration: none;
}

/* Стиль для неактивного состояния */
.custom-checkbox.error .checkbox {
  border-color: #ff0048;
}

.custom-checkbox.error {
  color: #ff0048;
}

.hidden-text {
            display: none;
        }
        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: var(--transition);
        }
        .header.scrolled { box-shadow: var(--shadow-sm); }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1200px;
            margin: 0 auto;
            gap: 16px;
        }
        .header-logo img { height: 32px; }
        .header-contacts { display: flex; align-items: center; gap: 20px; }
        .header-phone { font-size: 15px; font-weight: 700; color: var(--text-dark); text-decoration: none; white-space: nowrap; }
        .header-phone:hover { color: var(--primary); }
        .header-email { font-size: 14px; color: var(--text-muted); text-decoration: none; white-space: nowrap; }
        .header-email:hover { color: var(--primary); }
        .header-cta {
            background: var(--gradient-primary);
            color: #fff;
            padding: 10px 22px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255,81,0,0.25);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }
        .header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: #fff; }
        @media (max-width: 992px) { .header-email { display: none; } }
        @media (max-width: 768px) { .header-phone { display: none; } .header-cta { padding: 8px 16px; font-size: 13px; } }

        /* ===== HERO ===== */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(160deg, #FFFFFF 0%, #FFF8F4 50%, #FFF0E8 100%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(255,81,0,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 24px;
        }
        .pulse-dot {
            width: 8px; height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse-dot 1.5s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,81,0,0.4); }
            50% { box-shadow: 0 0 0 8px rgba(255,81,0,0); }
        }
        .hero-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 18px;
            color: var(--text-body);
            margin-bottom: 32px;
            max-width: 500px;
            line-height: 1.7;
        }
        .hero-price-block {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        .hero-price { font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; }
        .hero-old-price { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
        .hero-discount-badge {
            background: var(--primary);
            color: #fff;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 14px;
            animation: badge-shake 2s infinite;
        }
        @keyframes badge-shake {
            0%, 100% { transform: rotate(0); }
            25% { transform: rotate(-3deg); }
            75% { transform: rotate(3deg); }
        }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 16px 32px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 6px 25px rgba(255,81,0,0.3);
            border: none;
            cursor: pointer;
            animation: btn-glow 2s infinite;
        }
        @keyframes btn-glow {
            0%, 100% { box-shadow: 0 6px 25px rgba(255,81,0,0.3); }
            50% { box-shadow: 0 8px 35px rgba(255,81,0,0.5); }
        }
        .btn-primary-glow:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,81,0,0.5); color: #fff; }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--border);
            padding: 16px 32px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
        .hero-visual { display: flex; justify-content: center; align-items: center; }
        .hero-visual-card {
       margin-top: 60px;
            max-width: 550px;
        }
        .hero-visual-card img { width: 100%; height: auto; display: block; }
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-subtitle { max-width: 100%; }
            .hero-buttons { justify-content: center; }
            .hero-price-block { justify-content: center; }
            .hero-visual { order: -1; }
            .hero { padding: 120px 0 60px; }
        }

        /* ===== WHAT INSIDE ===== */
        .what-inside { padding: 80px 0; background: var(--bg-soft); }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 900;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .section-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 600px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .feature-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 32px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,81,0,0.2); }
        .feature-card .feature-icon {
            width: 48px; height: 48px;
            background: var(--primary-light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 20px;
            color: var(--primary);
        }
        .feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
        .feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

        /* ===== TRUST ===== */
        .trust-block { padding: 80px 0; background: var(--bg-main); }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 48px;
        }
        .trust-card {
            background: var(--bg-soft);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            text-align: center;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .trust-card .trust-num { font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px; }
        .trust-card .trust-label { color: var(--text-muted); font-size: 14px; }
        .trust-clients {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 48px;
            flex-wrap: wrap;
            align-items: center;
        }
        .trust-clients img {
            height: 50px;
            opacity: 0.7;
            transition: var(--transition);
            filter: grayscale(100%);
        }
        .trust-clients img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
        @media (max-width: 768px) {
            .trust-grid { grid-template-columns: 1fr; }
            .trust-clients { gap: 24px; }
            .trust-clients img { height: 36px; }
        }

        /* ===== COMPARISON ===== */
        .comparison {
            padding: 80px 0;
            background: linear-gradient(135deg, #FFF8F4 0%, #FFF0E8 100%);
        }
        .comparison-table {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-top: 48px;
        }
        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            padding: 16px 24px;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }
        .comparison-row.header-row {
            background: var(--bg-dark);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
        }
        .comparison-row.header-row .highlight-col { color: var(--primary); }
        .comparison-row:last-child { border-bottom: none; }
        .comparison-row .label { font-weight: 600; color: var(--text-dark); }
        .comparison-row .others { color: var(--text-muted); }
        .comparison-row .us { color: var(--primary); font-weight: 700; }
        .check-green { color: #22C55E; }
        .cross-red { color: #EF4444; }

        @media (max-width: 768px) {
            .comparison-table {
                background: transparent;
                box-shadow: none;
                border-radius: 0;
            }
            .comparison-row.header-row {
                display: none;
            }
            .comparison-row {
                display: block;
                background: #fff;
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-sm);
                border: 1px solid var(--border);
                padding: 16px 20px;
                margin-bottom: 16px;
            }
            .comparison-row .label {
                display: block;
                font-size: 14px;
                color: var(--text-muted);
                font-weight: 400;
                margin-bottom: 8px;
                padding-bottom: 6px;
                border-bottom: 1px dashed var(--border);
            }
            .comparison-row .label::before {
                content: 'Параметр: ';
                font-weight: 600;
                color: var(--text-dark);
            }
            .comparison-row .others {
                display: block;
                font-size: 14px;
                padding: 4px 0;
                color: var(--text-body);
            }
            .comparison-row .others::before {
                content: 'Другие студии: ';
                font-weight: 600;
                color: var(--text-dark);
            }
            .comparison-row .us {
                display: block;
                font-size: 14px;
                padding: 4px 0;
                color: var(--primary);
                font-weight: 700;
            }
            .comparison-row .us::before {
                content: 'Mode Web: ';
                font-weight: 600;
                color: var(--text-dark);
            }
        }

        /* ===== PRICING ===== */
        .pricing { padding: 80px 0; background: var(--bg-main); }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 48px;
        }
        .pricing-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            border: 2px solid var(--border);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }
        .pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-glow);
            transform: scale(1.03);
        }
        .pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
        .pricing-card .popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #fff;
            padding: 6px 20px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 13px;
            white-space: nowrap;
        }
        .pricing-card .plan-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
        .pricing-card .plan-price { font-size: 42px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
        .pricing-card .plan-price small { font-size: 16px; font-weight: 500; color: var(--text-muted); }
        .pricing-card .plan-old-price { color: var(--text-muted); text-decoration: line-through; font-size: 16px; margin-bottom: 24px; }
        .pricing-card .plan-features { list-style: none; text-align: left; margin-bottom: 32px; }
        .pricing-card .plan-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
        .pricing-card .plan-features li i { color: #22C55E; font-size: 12px; flex-shrink: 0; }
        .pricing-card .btn-plan {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--gradient-primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }
        .pricing-card .btn-plan:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); color: #fff; }
        .pricing-card.featured .btn-plan { animation: btn-glow 2s infinite; }

        /* ===== CLIENTS ===== */
        .clients-logos { padding: 80px 0; background: var(--bg-soft); }
        .logos-marquee { margin-top: 48px; overflow: hidden; }
        .logos-track {
            display: flex;
            gap: 60px;
            animation: scroll-logos 30s linear infinite;
            align-items: center;
        }
        .logos-track img {
            height: 255px;
            opacity: 0.5;
            transition: var(--transition);
            filter: grayscale(100%);
            flex-shrink: 0;
        }
        .logos-track img:hover { opacity: 1; filter: grayscale(0%); }
        @keyframes scroll-logos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (max-width: 768px) { .logos-track { gap: 30px; animation-duration: 20s; } .logos-track img { height: 200px; } }

        /* ===== PROCESS ===== */
        .process { padding: 80px 0; background: var(--bg-main); }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .process-step { text-align: center; position: relative; }
        .process-step .step-number {
            width: 56px; height: 56px;
            background: var(--gradient-primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 20px;
            margin: 0 auto 16px;
        }
        .process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
        .process-step p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
        @media (max-width: 768px) { .process-steps { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

        /* ===== FAQ ===== */
        .faq { padding: 80px 0; background: var(--bg-soft); }
        .faq-list { max-width: 800px; margin: 48px auto 0; }
        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-dark);
            transition: var(--transition);
        }
        .faq-question:hover { color: var(--primary); }
        .faq-question .faq-icon { transition: transform 0.3s ease; font-size: 14px; color: var(--text-muted); }
        .faq-item.active .faq-question .faq-icon { transform: rotate(45deg); color: var(--primary); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
        .faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }
        .faq-answer p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

        /* ===== SERVICE BLOCKS ===== */
        .service-block {
            padding: 80px 0;
            background: var(--bg-main);
            border-bottom: 1px solid var(--border);
        }
        .service-block.alt-bg { background: var(--bg-soft); }

        .service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        .service-grid.reverse { direction: rtl; }
        .service-grid.reverse > * { direction: ltr; }

        .service-content { max-width: 600px; }
        .service-content .section-subtitle { margin-bottom: 24px; }

        .service-features {
            list-style: none;
            margin-bottom: 32px;
        }
        .service-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 15px;
            color: var(--text-body);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .service-features li i {
            color: var(--primary);
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .service-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .service-visual-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            text-align: center;
            width: 100%;
            max-width: 100%;
            position: relative;
            overflow: hidden;
            min-height: 340px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        /* Фоновые изображения для карточек */
        .service-visual-card.with-bg {
            background-size: cover;
            background-position: center;
            color: #fff;
        }
        .service-visual-card.with-bg::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.55);
            z-index: 1;
        }
        .service-visual-card.with-bg > * {
            position: relative;
            z-index: 2;
        }
        .service-visual-card.with-bg .big-icon { color: #fff; }
        .service-visual-card.with-bg .price-tag { color: #fff; }
        .service-visual-card.with-bg .price-tag small { color: rgba(255,255,255,0.7); }
        .service-visual-card.with-bg .sub-text { color: rgba(255,255,255,0.8); }
        .service-visual-card.with-bg .pdf-preview {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border-color: rgba(255,255,255,0.2);
        }
        .service-visual-card.with-bg .pdf-preview .pdf-label { color: rgba(255,255,255,0.7); }
        .service-visual-card.with-bg .pdf-preview .pdf-value { color: #fff; }
        .service-visual-card.with-bg .seo-plan {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            border-color: rgba(255,255,255,0.15);
            color: #fff;
        }
        .service-visual-card.with-bg .seo-plan .plan-name { color: #fff; }
        .service-visual-card.with-bg .seo-plan .plan-price { color: #fff; }
        .service-visual-card.with-bg .seo-plan .plan-price small { color: rgba(255,255,255,0.7); }
        .service-visual-card.with-bg .seo-plan .btn-plan-small { background: var(--gradient-primary); color: #fff; }
        .service-visual-card.with-bg .seo-plan:hover {
            background: rgba(255,255,255,0.2);
            border-color: var(--primary);
        }
        .service-visual-card.with-bg ul li { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.1); }
        .service-visual-card.with-bg .btn-demo {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
        }
        .service-visual-card.with-bg .btn-demo:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        .service-visual-card.with-bg .pdf-preview .pdf-row { border-bottom-color: rgba(255,255,255,0.1); }

        .service-visual-card .big-icon {
            font-size: 56px;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .service-visual-card .price-tag {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
        }
        .service-visual-card .price-tag small {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-muted);
        }
        .service-visual-card .sub-text {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 8px;
        }
        .service-visual-card .btn-demo {
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-primary);
            color: #fff;
            padding: 12px 28px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .service-visual-card .btn-demo:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
            color: #fff;
        }
.white {color:#fff !important;}
        .pdf-preview {
            background: var(--bg-soft);
            border-radius: var(--radius-md);
            padding: 20px;
            margin-top: 20px;
            border: 1px dashed var(--border);
        }
        .pdf-preview .pdf-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 13px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .pdf-preview .pdf-row:last-child { border-bottom: none; }
        .pdf-preview .pdf-label { color: var(--text-muted); }
        .pdf-preview .pdf-value { font-weight: 600; color: var(--text-dark); }

        .seo-pricing-mini {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 32px;
        }
        .seo-plan {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 24px 20px;
            text-align: center;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .seo-plan:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }
        .seo-plan .plan-name { font-weight: 700; font-size: 16px; }
        .seo-plan .plan-price { font-size: 24px; font-weight: 900; color: var(--primary); margin: 8px 0; }
        .seo-plan .plan-price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }
        .seo-plan .btn-plan-small {
            display: inline-block;
            margin-top: 12px;
            padding: 8px 20px;
            background: var(--gradient-primary);
            color: #fff;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .seo-plan .btn-plan-small:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
            color: #fff;
        }

        /* Стили для списка в CRM на тёмном фоне */
        .service-visual-card.with-bg .crm-features-list {
            list-style: none;
            margin-top: 16px;
            text-align: left;
            font-size: 13px;
            color: rgba(255,255,255,0.9);
        }
        .service-visual-card.with-bg .crm-features-list li {
            padding: 4px 0;
            border-bottom: none;
        }
        .service-visual-card.with-bg .crm-tags span {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            color: #fff;
        }

        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .service-grid.reverse { direction: ltr; }
            .service-content { max-width: 100%; }
            .seo-pricing-mini { grid-template-columns: 1fr; }
            .service-visual-card { padding: 24px; }
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 80px 0;
            background: var(--bg-dark);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%; right: -50%;
            width: 100%; height: 200%;
            background: radial-gradient(circle, rgba(255,81,0,0.1) 0%, transparent 70%);
            animation: pulse 15s infinite linear;
        }
        @keyframes pulse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .cta-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
        .cta-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 16px; }
        .cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 16px; }
        .cta-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto 16px; flex-wrap: wrap; justify-content: center; }
        .cta-form input {
            flex: 1;
            min-width: 200px;
            padding: 16px 20px;
            border-radius: var(--radius-full);
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: var(--transition);
        }
        .cta-form input::placeholder { color: rgba(255,255,255,0.4); }
        .cta-form input:focus { border-color: var(--primary); }
        .cta-form .btn-submit {
            padding: 16px 32px;
            background: var(--gradient-primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }
        .cta-form .btn-submit:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
        .cta-note { font-size: 12px; color: rgba(255,255,255,0.4); }
        .cta-note a { color: rgba(255,255,255,0.6); text-decoration: underline; }

        /* ===== FOOTER ===== */
        .footer {
            background: #0d0d1a;
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
            border-top: 3px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.03em;
        }

        .footer-col p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255,255,255,0.6);
            margin-bottom: 16px;
        }

        .footer-logo img {
            height: 36px;
            margin-bottom: 12px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
            color: rgba(255,255,255,0.6);
            font-size: 18px;
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul a:hover {
            color: var(--primary);
            transform: translateX(4px);
        }

        .footer-col ul a i {
            font-size: 12px;
            color: var(--primary);
        }

        .footer-contacts-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .footer-contacts-list li i {
            color: var(--primary);
            font-size: 16px;
            margin-top: 4px;
            min-width: 18px;
        }

        .footer-contacts-list a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contacts-list a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--primary);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }

        /* ===== VIDEO WIDGET ===== */
        .video-widget {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }
        .video-widget__container {
            position: relative;
            width: 220px;
            height: 290px;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(255,255,255,0.3);
        }
        .video-widget[data-state="opened"] .video-widget__container {
            width: 340px;
            height: 440px;
            border-radius: var(--radius-lg);
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
        }
        .video-widget__video { width: 100%; height: 100%; object-fit: cover; display: block; }
        .video-widget__close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 28px;
            height: 28px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            cursor: pointer;
            z-index: 2;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .video-widget__close::before,
        .video-widget__close::after {
            content: '';
            position: absolute;
            width: 14px;
            height: 2px;
            background: #fff;
            border-radius: 1px;
        }
        .video-widget__close::before { transform: rotate(45deg); }
        .video-widget__close::after { transform: rotate(-45deg); }
        .video-widget__close:hover { background: rgba(255,81,0,0.8); }
        .video-widget__label {
            position: absolute;
            top: -36px;
            left: 0;
            background: #fff;
            color: var(--text-dark);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 12px;
            white-space: nowrap;
            box-shadow: var(--shadow-md);
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .video-widget { bottom: 90px; left: 12px; }
            .video-widget__container { width: 140px; height: 190px; }
            .video-widget[data-state="opened"] .video-widget__container { width: 200px; height: 260px; }
            .video-widget__label { display: none; }
        }

        /* ===== MOBILE BOTTOM BAR ===== */
        .mobile-bar {
            display: none;
            position: fixed;
            bottom: 0; left: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border);
            z-index: 998;
            padding: 15px 0 env(safe-area-inset-bottom, 15px);
        }
        .mobile-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-around;
            max-width: 500px;
            margin: 0 auto;
        }
        .mobile-bar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 10px;
            font-weight: 600;
            transition: var(--transition);
        }
        .mobile-bar-item i { font-size: 20px; }
        .mobile-bar-item.active { color: var(--primary); }
        .mobile-bar-cta {
            background: var(--gradient-primary);
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 12px;
            text-decoration: none;
            box-shadow: var(--shadow-glow);
        }
        @media (max-width: 768px) { .mobile-bar { display: block; } body { padding-bottom: 80px; } }

        /* ===== FancyBox Overrides ===== */
        .fancybox-content {
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            max-width: 500px;
            width: 90%;
        }
        .fancybox-close-small {
            top: 12px;
            right: 12px;
            background: var(--bg-soft);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .fancybox-close-small:hover {
            background: var(--primary-light);
            color: var(--primary);
        }
        .fancybox-close-small svg {
            width: 14px;
            height: 14px;
        }
        .modal-form h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
            text-align: center;
        }
        .modal-form p {
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 24px;
            font-size: 14px;
        }
        .modal-form input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            font-size: 15px;
            outline: none;
            transition: var(--transition);
        }
        .modal-form input:focus { border-color: var(--primary); }
        .modal-form .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--gradient-primary);
            color: #fff;
            border: none;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
        }
        .modal-form .btn-submit:hover { box-shadow: var(--shadow-glow); }

        /* ===== COOKIE CONSENT ===== */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(12px);
            padding: 16px 24px;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            border-top: 2px solid rgba(255, 81, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .cookie-consent.show {
            transform: translateY(0);
        }
        .cookie-consent p {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            margin: 0;
            text-align: center;
            flex: 1;
            min-width: 200px;
        }
        .cookie-consent p a {
            color: var(--primary);
            text-decoration: underline;
        }
        .cookie-consent .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .cookie-consent .btn-cookie-accept {
            background: var(--gradient-primary);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
        }
        .cookie-consent .btn-cookie-accept:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
        }
        .cookie-consent .btn-cookie-decline {
            background: transparent;
            color: rgba(255,255,255,0.6);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
        }
        .cookie-consent .btn-cookie-decline:hover {
            background: rgba(255,255,255,0.05);
            color: #fff;
        }
        @media (max-width: 768px) {
            .cookie-consent {
                padding: 16px;
                gap: 12px;
            }
            .cookie-consent p {
                font-size: 13px;
                text-align: center;
                width: 100%;
            }
            .cookie-consent .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .text-center { text-align: center; }
        .mb-48 { margin-bottom: 48px; }