/* ═══════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════ */
:root {
    --primary: #3555DC;
    --primary-dark: #2844B8;
    --secondary: #9B9B7A;
    --bg-light: #F8F9FC;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #999999;
    --border: #E5E5E5;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.section {
    padding: 80px 0;
}

.section.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   NAVBAR - VERSION AMÉLIORÉE
   ═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 40px;
}

.navbar.scrolled {
    border-color: var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    top: 15px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

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

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

.nav-links.nav-left {
    flex: 0 0 auto;
}

.nav-links.nav-right {
    flex: 0 0 auto;
    margin-left: auto;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

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

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

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-cta::after {
    display: none !important;
}

/* ════════════════════════════════════════
   DROPDOWN MENU - VERSION BLOCS
   ════════════════════════════════════════ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-dropdown-btn:hover {
    color: var(--primary);
}

.nav-dropdown-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-btn i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    z-index: 999;
    width: 700px;
    max-width: 90vw;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-dropdown-item:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-dropdown-icon {
    width: 45px;
    height: 45px;
    background: rgba(53, 85, 220, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    background: var(--primary);
    color: white;
}

.nav-dropdown-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.nav-dropdown-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

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

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.nav-mobile a {
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 600;
}

.nav-mobile a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-mobile.open {
    display: flex;
}

/* ════════════════════════════════════════
   RESPONSIVE NAVBAR
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-container {
        gap: 30px;
    }

    .nav-links.nav-left {
        display: none;
    }

    .nav-dropdown-menu {
        width: 100vw;
        left: 50vw;
        transform: translateX(-50vw);
        border-radius: 0;
    }

    .nav-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: 95%;
        padding: 12px 20px;
        border-radius: 20px;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links.nav-right {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-mobile {
        left: 10px;
        right: 10px;
        width: auto;
    }

    .nav-mobile.open {
        display: flex;
    }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px; /* ← Augmente pour la navbar flottante */
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(53, 85, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(53, 85, 220, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(53, 85, 220, 0.3);
}

.btn-ghost {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
}

.stat-val {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   CARDS & GRIDS
   ═══════════════════════════════════════ */
.cards-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.cards-grid.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cards-grid.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(53, 85, 220, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ═══════════════════════════════════════
   PROJETS
   ═══════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.project-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-category {
    display: inline-block;
    background: rgba(53, 85, 220, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 12px;
}

.project-link i {
    font-size: 16px;
}

/* ═══════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-gray);
}

.stars {
    color: var(--warning);
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.faq-question span {
    text-align: left;
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.8;
}

.faq-answer ul {
    margin: 15px 0;
    margin-left: 20px;
}

.faq-answer li {
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: #0F1419;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-section a,
.footer-section p {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-logo {
    height: 30px;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 25px;
    max-width: 380px;
    z-index: 999;
    animation: slideUp 0.4s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.cookie-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-decline {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.cookie-decline:hover {
    background: var(--border);
}

.cookie-link {
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
    margin-top: 12px;
    display: block;
    text-align: center;
}

/* ── Galerie Produits ── */
.produit-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.produit-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.produit-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.produit-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.produit-panel {
    display: none;
}

.produit-panel.active {
    display: block;
    animation: fadeInUp 0.35s ease;
}

.produit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.produit-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.produit-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    border: 2px solid var(--border);
    position: relative;
}

.produit-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produit-img-watermark {
    position: absolute;
    bottom: 105px; /* au-dessus des thumbs */
    left: 12px;
    width: 90px;
    height: auto;
    opacity: 0.75;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 10;
}

.produit-main-img:hover .produit-img-watermark {
    opacity: 0.4; /* s'efface légèrement au hover pour ne pas gêner */
}

.produit-main-img:hover img {
    transform: scale(1.04);
}

.produit-thumbs {
    display: flex;
    gap: 10px;
}

.produit-thumbs .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    opacity: 0.6;
}

.produit-thumbs .thumb:hover,
.produit-thumbs .thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.produit-info h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.produit-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.produit-specs {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.produit-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.produit-specs li i {
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

.produit-price {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.produit-price strong {
    color: var(--primary);
    font-size: 26px;
}

.produit-price span {
    font-size: 14px;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .produit-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .produit-specs {
        grid-template-columns: 1fr;
    }
    .produit-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .nav-links.nav-right {
        display: none;
    }

    .nav-burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-links.nav-left {
        display: none;
    }

    .section {
        padding: 50px 0;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .cards-grid.cols-3 {
        grid-template-columns: 1fr;
    }
}

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

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

.visible {
    animation: fadeInUp 0.6s ease-out;
}