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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Chakra Petch',  sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo img {
    height: 100px;
    max-width: 370px;
}

.nav-tagline {
    font-size: 13px;
    color: #999;
    line-height: 1.3;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #cccfd8;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #001ec9;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

/* Hero секция */
.hero {
    background-size: cover !important;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%),
                url('images/hero-bg.jpg') no-repeat center;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    color: #0068ed;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #292929;
    font-weight: 900;
}

.hero-str,
.hero-str2 {
    display: block;
    line-height: 1.3;
}

.hero-sizes {
    display: block;
    text-align: right;
    margin-top: 15px;
}

.hero-sizes strong {
    color: #c21404;
    text-decoration: underline;
    font-weight: 700;
}

.hero-btn {
    display: inline-block;
    background: #001ec9;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,30,201,0.2);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,30,201,0.4);
}

/* О нас */
.about {
    padding: 60px 0 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
}

.about-subtitle {
    text-transform: uppercase;
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.about-title {
    font-size: 85px;
    margin-bottom: 30px;
    font-weight: 900;
}

.text-accent {
    color: #c21404;
}

.about-description {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.text-danger {
    color: #ce0e0e;
}

.text-primary {
    color: #4aa6f3;
}

/* Timeline секция - ДОБАВЛЕНО */
.timeline {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 75px;
    top: 100%;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #001ec9, transparent);
}

.timeline-time {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    padding-top: 10px;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.timeline-content {
    padding-top: 10px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #001ec9;
    margin-bottom: 10px;
}

.timeline-subtitle {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.timeline-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .timeline-time {
        text-align: center;
        padding: 10px;
        background: #f0f0f0;
        border-radius: 8px;
    }
}

/* Преимущества */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,30,201,0.05), transparent);
    transition: left 0.5s;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,30,201,0.2);
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #001ec9;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.2) rotate(5deg);
    color: #0028e6;
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #292929;
    transition: color 0.3s ease;
}

.advantage-card:hover .advantage-title {
    color: #001ec9;
}

.advantage-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Гарантии */
.guarantee-section {
    padding: 70px 0;
    background: #fff;
    width: 100%;
}

.guarantee-box {
    background: linear-gradient(135deg, #001ec9 0%, #0028e6 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
    box-shadow: 0 10px 40px rgba(0,30,201,0.3);
}

.guarantee-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.guarantee-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 24px;
    font-weight: 700;
    color: #4aa6f3;
}

/* Процесс работы */
.work-process {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 70px;
    height: 70px;
    background: #001ec9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0,30,201,0.3);
}

.process-step:hover .process-number {
    transform: rotate(360deg) scale(1.15);
    background: linear-gradient(135deg, #001ec9 0%, #4aa6f3 100%);
    box-shadow: 0 8px 25px rgba(0,30,201,0.5);
}

.process-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-step:hover .process-step-title {
    color: #001ec9;
}

.process-step-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Статистика */
.stats-section {
    background: #efefef;
    padding: 60px 0;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 60px;
    font-weight: 900;
    color: #4600d0;
    margin-bottom: 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    font-size: 18px;
    color: #7a7a7a;
}

/* CTA блок */
.cta-block {
    background: linear-gradient(135deg, #c21404 0%, #e01b05 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.cta-btn::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    padding-right: 60px;
}

.cta-btn:hover::after {
    opacity: 1;
    right: 25px;
}

/* Секция проектов */
.projects {
    padding: 45px 0 0;
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Галерея Swiper */
.gallery-slider {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px 60px;
    position: relative;
}

.gallery-slider .swiper-wrapper {
    align-items: center;
}

.gallery-slider .swiper-slide {
    width: 700px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    transform: scale(0.9);
}

.gallery-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slider .swiper-slide-prev,
.gallery-slider .swiper-slide-next {
    opacity: 0.5;
}

.gallery-slider img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    background: #e8e8e8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: #c7c7c7;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #222;
}

/* Клиенты */
.clients {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
}

.testimonial-item {
    position: relative;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    cursor: zoom-in;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: scale(1.15);
    z-index: 100;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.testimonial-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 980px) {
    .testimonials-grid {
        padding: 10px;
        gap: 20px;
    }
    
    .testimonial-item:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .testimonial-item:hover {
        transform: scale(1.05);
    }
}

/* Форма */
.contact-form {
    background: linear-gradient(135deg, #ededed 0%, #ededed 100%);
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 40px auto 0;
    box-shadow: 0 10px 40px rgb(227 227 227 / 30%);
}

.contact-warning {
    max-width: 800px;
    margin: 20px auto 40px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.contact-warning strong {
    color: #ce0e0e;
    font-weight: 500;
}

.contact-form-inner {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #000;
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #000;
    opacity: 0.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #001ec9;
}

#phone {
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    font-size: 16px;
}

.form-submit-btn {
    background: #001ec9;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    font-weight: 500;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,30,201,0.3);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-privacy {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Контакты */
.contacts {
    padding: 15px 0;
    text-align: center;
    width: 100%;
}

.contacts-info {
    font-size: 20px;
    margin: 30px 0;
}

.contact-item {
    margin: 10px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.1);
}

.map {
    width: 100%;
    height: 485px;
    background: #e5e3df;
    margin-top: 40px;
    border-radius: 8px;
}

/* Футер */
.footer {
    background: #001ec9;
    color: #fff;
    padding: 60px 0 15px;
    width: 100%;
}

.footer-nav {
    margin-bottom: 40px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 40px;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4aa6f3;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #4aa6f3;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-content {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
}

.footer-text {
    font-size: 18px;
    line-height: 1.6;
}

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.exit-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-popup-overlay.active {
    display: flex;
}

.success-popup {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    text-align: center;
}

.success-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-popup-close:hover {
    background: #f0f0f0;
    color: #000;
    transform: rotate(90deg);
}

.success-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-popup-title {
    font-size: 36px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.success-popup-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.exit-popup {
    background: #fff;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    text-align: center;
}

.exit-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-close:hover {
    background: #f0f0f0;
    color: #000;
    transform: rotate(90deg);
}

.exit-popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.exit-popup-title {
    font-size: 36px;
    font-weight: 700;
    color: #001ec9;
    margin-bottom: 20px;
    line-height: 1.2;
}

.exit-popup-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.exit-popup-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.exit-popup-benefits li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.exit-popup-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4aa6f3;
    font-size: 22px;
    font-weight: 700;
}

.exit-popup-btn {
    display: inline-block;
    background: linear-gradient(135deg, #c21404 0%, #e01b05 100%);
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(194, 20, 4, 0.3);
    border: none;
    cursor: pointer;
}

.exit-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(194, 20, 4, 0.4);
}

.exit-popup-discount {
    background: #ffe600;
    color: #000;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #001ec9 0%, #0028e6 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    width: 100%;
}

#cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cc-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cc-body {
    flex: 1;
}

.cc-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cc-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.cc-link {
    color: #4aa6f3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cc-link:hover {
    color: #fff;
}

.cc-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cc-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cc-btn--primary {
    background: #fff;
    color: #001ec9;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
}

.cc-noscript {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #001ec9;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 9998;
}

.cc-noscript a {
    color: #4aa6f3;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 980px) {
    .nav-menu {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-tagline {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 36px;
    }

    .guarantee-title {
        font-size: 28px;
    }

    .guarantee-box {
        padding: 35px 25px;
    }

    .cta-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

    .advantages-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .gallery-slider {
        padding: 0 60px 60px;
    }
    
    .gallery-slider .swiper-slide {
        width: 600px;
    }
    
    .gallery-slider img {
        height: 400px;
    }

    .cc-panel {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .cc-title {
        font-size: 18px;
    }
    
    .cc-text {
        font-size: 14px;
    }
    
    .cc-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cc-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 640px) {
    .nav-logo img {
        height: 45px;
    }

    .hero-title {
        font-size: 36px;
    }

    .about-title {
        font-size: 38px;
    }

    .advantage-card {
        padding: 25px 20px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .guarantee-list li {
        font-size: 16px;
        padding-left: 30px;
    }

    .cta-title {
        font-size: 26px;
    }

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

    .stat-number {
        font-size: 36px;
        min-height: 60px;
    }

    .stat-text {
        font-size: 16px;
    }

    .gallery-slider {
        padding: 0 40px 60px;
    }
    
    .gallery-slider .swiper-slide {
        width: 100%;
    }
    
    .gallery-slider img {
        height: 300px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .exit-popup {
        padding: 40px 25px;
    }

    .exit-popup-title {
        font-size: 28px;
    }

    .exit-popup-text {
        font-size: 16px;
    }

    .exit-popup-icon {
        font-size: 48px;
    }

    .success-popup {
        padding: 40px 25px;
    }

    .success-popup-title {
        font-size: 28px;
    }

    .success-popup-text {
        font-size: 16px;
    }

    .success-popup-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .cc-panel {
        padding: 15px;
    }
    
    .cc-title {
        font-size: 16px;
    }
    
    .cc-text {
        font-size: 13px;
    }
    
    .cc-btn {
        font-size: 15px;
        padding: 12px 20px;
    }
}