/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #001ec9;
    --primary-red: #e00b00;
    --dark-red: #c21404;
    --dark-gray: #111;
    --light-gray: #ededed;
    --text-dark: #000;
    --text-light: #666;
    --text-accent: #bd9700;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 62px;
    font-weight: 700;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 28px;
}

.text-accent {
    color: var(--text-accent);
}

.text-primary {
    color: var(--primary-blue);
}

.text-danger {
    color: var(--primary-red);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-tagline {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-light);
    font-weight: 400;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

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

.nav-burger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgb(249 249 249 / 64%) 0%, rgb(255 255 255 / 98%) 100%), url(/images/hero-bg.jpg) center center / cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 5px;
}

.hero-overlay {
  background-color: #0052cccf;
  color: #fff;
  padding: 1px;
  text-align: center;
  max-width: max-content;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 63px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hero-title strong {
    display: block;
    color: #00075b;
}

.hero-str {
    float: right;
    background-color: cornsilk;
    margin: -14px;
    padding: inherit;
}

.hero-str2 {
    background-color: #959595;
    color: #ffffff;
    font-size: 55px;
    margin: 46px;
}

.hero-sizes {
    display: block;
    margin-top: 10px;
    font-size: 52px;
}

.hero-btn {
    display: inline-block;
    top: 55px;
    padding: 15px 40px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 30, 201, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 30px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

.about-subtitle {
    font-size: 16px;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.about-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
}

.about-description {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    background: var(--light-gray);
}

.guarantee-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.guarantee-list li:last-child {
    border-bottom: none;
}

.guarantee-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: bold;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0015a0 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: #0017aa;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}
.cta-btn_color {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--white);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================
   WORK PROCESS & TIMELINE
   ============================================ */
.work-process {
    background: var(--white);
    padding: 90px 0 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 330px;
    top: 100px;
    bottom: 180px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-red));
    z-index: 1;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 200px 1fr;
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-time {
    text-align: right;
    padding-right: 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.timeline-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.timeline-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

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

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Альтернативный стиль для старых процессов */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   PROJECTS/GALLERY
   ============================================ */
.projects {
    background: var(--white);
}

.gallery-slider {
    margin-top: 40px;
}

.gallery-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.gallery-slider .swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    display: block;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(232, 232, 232, 0.9);
    border-radius: 50%;
    color: var(--text-dark);
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
    background: rgba(200, 200, 200, 1);
}

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

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

/* ============================================
   CLIENTS/TESTIMONIALS
   ============================================ */
.clients {
    background: var(--light-gray);
}

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

.testimonial-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
    background: var(--white);
}

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

.advantage-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    background: var(--light-gray);
}

.contact-warning {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-warning strong {
    color: var(--primary-red);
}

.contact-form-inner {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 30, 201, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

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

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

.form-privacy {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

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

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

/* ============================================
   CONTACTS SECTION
   ============================================ */
.contacts {
    background: var(--white);
}

.contacts-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 18px;
}

.contact-item strong {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0015a0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 30, 201, 0.3);
}

.map {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
}

.map iframe {
    width: 100%;
    height: 485px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 16px;
    opacity: 0.8;
}

/* ============================================
   EXIT INTENT POPUP - СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ
   ============================================ */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.exit-popup {
    background: #f5f5f5;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: #333;
}

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

.exit-popup-discount {
    background: #ffeb3b;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.exit-popup-title {
    font-size: 32px;
    font-weight: 700;
    color: #001ec9;
    margin: 0 0 20px 0;
}

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

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

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

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

.exit-popup-btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.exit-popup-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

/* ============================================
   SUCCESS POPUP
   ============================================ */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.success-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    padding: 50px 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.success-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
}

.success-popup-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 25px;
}

.success-popup-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
#cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.4s ease;
    display: block;
}

#cookie-consent.show {
    bottom: 0;
}

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

.cc-body {
    flex: 1;
    min-width: 300px;
}

.cc-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333;
}

.cc-text {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cc-link {
    color: #001ec9;
    text-decoration: underline;
}

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

.cc-btn {
    padding: 12px 24px;
    border: gold;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cc-btn--primary {
    background: #cdb450;
    color: #fff;
}

.cc-btn--primary:hover {
    background: #b89f3d;
}

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

.cc-noscript a {
    color: #cdb450;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadein {
    animation: fadeInUp 0.6s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 980px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    h1 {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-sizes {
        font-size: 32px;
    }
    
    h2, .section-title, .about-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline responsive */
    .timeline::before {
        left: 49px;
        height: 330px;
    }

    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }

    .timeline-time {
        display: none;
    }

    .timeline-image {
        grid-column: 1 / 2;
    }

    .timeline-image img {
        width: 100px;
        height: 100px;
    }

    .timeline-content {
        grid-column: 2 / 3;
        padding-top: 0;
    }

    .timeline-title {
        font-size: 18px;
    }

    .timeline-subtitle {
        font-size: 12px;
    }

    .timeline-text {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    h1, .hero-title {
        font-size: 32px;
    }
    
    .hero-sizes {
        font-size: 24px;
    }
    
    h2, .section-title {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }

    .hero-str {
        margin: -14px;
        padding: inherit;
    }

    .hero-str2 {
        font-size: 27px;
        margin: 0px;
    }

    /* ИСПРАВЛЕНО: Popup работает на всех устройствах */
    .exit-popup {
        max-width: 95%;
        padding: 30px 20px;
    }
    
    .exit-popup-title {
        font-size: 24px;
    }
    
    .exit-popup-text {
        font-size: 16px;
    }
    
    .exit-popup-btn {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-inner {
        padding: 30px 20px;
    }

    /* Timeline mobile */
    .timeline-item {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-image {
        margin: 0 auto;
        text-align: center;
    }

    .timeline-content {
        text-align: center;
    }
    
    /* Cookie consent на мобильных */
    .cc-panel {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cc-body {
        min-width: auto;
    }
    
    .cc-actions {
        justify-content: center;
    }
}