/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f172a;
    color: white;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

/* ================= NAVBAR ================= */

header {
    width: 100%;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    gap: 15px;
}

/* LOGO IMAGE */

.logo img {
    width: 180px;
    height: auto;
    display: block;
}

/* ================= HEADER CONTROLS ================= */

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* ================= LANGUAGE SWITCHER ================= */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px 6px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

.lang-btn:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
}

.lang-btn.active {
    background: #00ff88;
    color: #020617;
}

/* NAVIGATION */

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #00ff88;
}

nav a.nav-active {
    color: #00ff88;
}

/* ================= MENU TOGGLE ================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}
body.light-mode .menu-toggle {
    color: #020617;
}

/* ================= THEME TOGGLE ================= */

.theme-toggle {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.theme-toggle:hover {
    transform: translateY(-4px);
    background: #00ff88;
    color: #020617;
}

body.light-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.08);
    color: #020617;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
        z-index: 3000;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 1500;
    }

    body.light-mode nav {
        background: rgba(255, 255, 255, 0.98);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 35px;
    }

    .logo img {
        width: 150px;
    }

    .lang-btn {
        font-size: 11px;
        padding: 5px 8px;
    }
}

/* Mobile petit — fix header qui se cassait */
@media (max-width: 650px) {

    header {
        padding: 12px 5%;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .logo img {
        width: 120px;
    }

    .header-controls {
        gap: 6px;
    }

    .lang-btn {
        font-size: 10px;
        padding: 4px 7px;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Très petit écran — masquer les labels texte du lang switcher */
@media (max-width: 380px) {
    .lang-switcher {
        padding: 3px 4px;
        gap: 2px;
    }
    .lang-btn {
        font-size: 9px;
        padding: 4px 6px;
    }
}

/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 250px 8% 80px;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span,
.hero-text h1 .accent {
    color: #00ff88;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00ff88;
    color: black;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    border: 5px solid #00ff88;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3);
}

/* ================= SECTION TITLE ================= */

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 45px;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #94a3b8;
}


/* ================= TRAVAUX — PREMIUM GALLERY ================= */

.travaux {
    padding: 70px 8%;
}

/* HEADER */

.travaux-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.travaux-title-block {
    flex: 1;
    min-width: 250px;
}

.travaux-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00ff88;
    margin-bottom: 14px;
    padding: 6px 16px;
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 50px;
    background: rgba(0,255,136,0.06);
}

.travaux-title-block h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
}

.travaux-title-block p {
    font-size: 16px;
    color: #64748b;
    max-width: 400px;
}

/* CATEGORY LABEL */

.gallery-category {
    margin-bottom: 100px;
}

.category-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cat-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00ff88;
    opacity: 0.7;
}

.category-label h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

/* ===== WORK SHOWCASE — LIST + PREVIEW ===== */

.work-showcase {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

/* ---- LEFT : liste ---- */

.work-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid rgba(255,255,255,0.07);
    overflow-y: auto;
    scrollbar-width: none;
}

.work-list::-webkit-scrollbar { display: none; }

.work-list-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    transition: background 0.3s ease, padding-left 0.3s ease;
    overflow: hidden;
}

/* Barre verte gauche */
.work-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #00ff88;
    transform: scaleY(0);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    transform-origin: bottom;
}

.work-list-item:hover::before,
.work-list-item.active::before {
    transform: scaleY(1);
}

.work-list-item:hover {
    background: rgba(0,255,136,0.04);
    padding-left: 34px;
}

.work-list-item.active {
    background: rgba(0,255,136,0.06);
    padding-left: 34px;
}

.wli-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00ff88;
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.work-list-item.active .wli-num,
.work-list-item:hover .wli-num {
    opacity: 1;
}

.wli-name {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.work-list-item.active .wli-name,
.work-list-item:hover .wli-name {
    color: white;
}

.wli-arrow {
    font-size: 12px;
    color: #00ff88;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.work-list-item.active .wli-arrow,
.work-list-item:hover .wli-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---- RIGHT : preview ---- */

.work-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0,0,0,0.15);
    overflow: hidden;
}

.preview-frame {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-frame img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    transition: opacity 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Classe ajoutée par JS pendant le changement */
.preview-frame img.switching {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
}

.preview-counter {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
}

.preview-counter span:first-child {
    color: #00ff88;
    font-size: 16px;
}

.preview-sep { opacity: 0.3; }

/* Glow derrière le preview */
.work-preview::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,255,136,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .work-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .work-list {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        max-height: 300px;
        overflow-y: auto;
    }
    .work-preview {
        padding: 30px 20px;
    }
    .preview-frame {
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .travaux { padding: 50px 5%; }
    .travaux-header { flex-direction: column; align-items: flex-start; gap: 25px; margin-bottom: 50px; }
    .travaux-title-block h2 { font-size: 38px; }
    .gallery-category { margin-bottom: 40px; }
    .work-list-item { padding: 18px 20px; gap: 14px; }
    .wli-name { font-size: 14px; }
}

@media (max-width: 480px) {
    .travaux-title-block h2 { font-size: 30px; }
    .work-list-item { padding: 16px 18px; }
    .wli-name { font-size: 13px; }
    .preview-frame { max-width: 260px; }
}

/* ================= CONTACT ================= */

.contact {
    padding: 60px 8%;
    text-align: center;
}

.map-container {
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ================= PUBLICITE ================= */

.advertisement {
    padding: 70px 8%;
    position: relative;
    overflow: hidden;
}

.ad-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 70px;
    backdrop-filter: blur(12px);
    position: relative;
}

.ad-container::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 136, 0.15);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(80px);
    z-index: 0;
}

.ad-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ad-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.ad-content h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ad-content p {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
}

.ad-btn { font-size: 16px; }

.ad-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.image-wrapper {
    width: 450px;
    height: 450px;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    animation: floating 5s ease-in-out infinite;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.image-wrapper:hover img { transform: scale(1.08); }

@keyframes floating {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 1000px) {
    .ad-container { flex-direction: column; text-align: center; padding: 50px 30px; }
    .ad-content p { margin: auto auto 35px; }
    .ad-content h2 { font-size: 40px; }
    .image-wrapper { width: 350px; height: 350px; }
}

@media (max-width: 650px) {
    .advertisement { padding: 100px 5%; }
    .ad-content h2 { font-size: 32px; }
    .image-wrapper { width: 280px; height: 280px; }
    .ad-container { border-radius: 25px; }
}

/* ================= PARTNERS ================= */

.partners { padding: 60px 8%; }

/* Flex row — logos seuls sans boîte */
.partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 36px;
    margin-top: 40px;
}

.partner-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.partner-card img {
    width: auto;
    max-width: 155px;
    max-height: 72px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.75);
    opacity: 0.55;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.partner-card:hover img {
    filter: grayscale(100%) brightness(1.1);
    opacity: 1;
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .partners-container {
        gap: 22px 28px;
    }
    .partner-card img {
        max-width: 110px;
        max-height: 52px;
    }
}

@media (max-width: 480px) {
    .partners-container {
        gap: 18px 22px;
    }
    .partner-card img {
        max-width: 85px;
        max-height: 42px;
    }
}

/* ================= FOOTER ================= */

footer {
    background: #020617;
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 8% 50px;
}

.footer-content h3 {
    margin-bottom: 20px;
    color: #00ff88;
}

.footer-info p { margin-bottom: 15px; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover { color: #00ff88; }

.social-icons { display: flex; gap: 20px; }

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #0f172a;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #00ff88;
    color: black;
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 25px;
    color: #94a3b8;
}

/* ================= RESPONSIVE HERO ================= */

@media (max-width: 950px) {
    .hero { flex-direction: column; text-align: center; padding-top: 160px;}
    .hero-text h1 { font-size: 45px; }
    .hero-image img { width: 320px; height: 420px; }
    nav ul { gap: 20px; }
}

@media (max-width: 650px) {
    .hero{
        padding-top: 130px;
    }
    .hero-text h1 { font-size: 35px; }
    .section-title h2 { font-size: 35px; }
}

/* ================= PRICING HERO ================= */

.pricing-hero {
    padding: 130px 8% 60px;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: bold;
}

.pricing-hero h1 {
    font-size: 60px;
    max-width: 950px;
    margin: auto;
    line-height: 1.2;
    margin-bottom: 30px;
}

.pricing-hero p {
    color: #cbd5e1;
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
}

@media (max-width: 768px) {
    .pricing-hero { margin-top: 30px; }
    .pricing-hero h1 { font-size: 38px; }
}

/* ================= PRICING CARDS ================= */

.pricing-section { padding: 20px 8% 70px; }

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 45px 35px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #00ff88;
    box-shadow: 0 20px 45px rgba(0, 255, 136, 0.15);
}

.pricing-icon {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    background: rgba(0, 255, 136, 0.12);
    color: #00ff88;
    margin-bottom: 30px;
}

.pricing-card h3 { font-size: 28px; margin-bottom: 20px; }

.price {
    font-size: 40px;
    color: #00ff88;
    font-weight: bold;
    margin-bottom: 25px;
}

.pricing-card p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 35px;
}

.premium-card { border: 1px solid rgba(0, 255, 136, 0.25); }

@media (max-width: 768px) {
    .price { font-size: 32px; }
}

/* ================= MINI TITLE ================= */

.mini-title {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #00ff88;
    font-size: 22px;
}

/* ================= LEGAL PAGE ================= */

.legal-page {
    min-height: 100vh;
    padding: 130px 8% 60px;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.legal-container {
    max-width: 1000px;
    margin: auto;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 60px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.legal-container h1 { font-size: 55px; margin-bottom: 15px; color: white; line-height: 1.2; }
.legal-update { color: #00ff88; margin-bottom: 40px; font-weight: 600; }
.legal-container h2 { margin-top: 55px; margin-bottom: 18px; color: #00ff88; font-size: 32px; }
.legal-container h3 { margin-top: 30px; margin-bottom: 15px; color: white; font-size: 24px; }
.legal-container p { color: #cbd5e1; line-height: 1.9; margin-bottom: 18px; font-size: 17px; }
.legal-list { margin-top: 25px; padding-left: 25px; }
.legal-list li { color: #cbd5e1; margin-bottom: 22px; line-height: 1.8; }
.legal-list strong { color: white; }
.legal-container a { color: #00ff88; text-decoration: none; transition: 0.3s; }
.legal-container a:hover { opacity: 0.8; }

@media (max-width: 900px) {
    .legal-page { padding: 180px 5% 80px; }
    .legal-container { padding: 40px 30px; }
    .legal-container h1 { font-size: 40px; }
    .legal-container h2 { font-size: 28px; }
}

@media (max-width: 600px) {
    .legal-page { padding: 130px 5% 80px; }
    .legal-container { padding: 30px 22px; }
    .legal-container h1 { font-size: 34px; }
    .legal-container h2 { font-size: 24px; }
    .legal-container p, .legal-list li { font-size: 16px; }
}

/* ================= COOKIE BANNER ================= */

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px 35px;
    z-index: 9999;
    transition: 0.5s ease;
}

.cookie-banner.show { transform: translateX(-50%) translateY(0); }

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text { display: flex; align-items: center; gap: 22px; }

.cookie-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: rgba(0, 255, 136, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ff88;
    font-size: 30px;
    flex-shrink: 0;
}

.cookie-text h3 { font-size: 24px; margin-bottom: 8px; }
.cookie-text p { color: #cbd5e1; line-height: 1.7; max-width: 700px; }
.cookie-buttons { display: flex; gap: 15px; flex-shrink: 0; }

.cookie-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.accept-btn { background: #00ff88; color: #0f172a; }
.accept-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 255, 136, 0.25); }
.decline-btn { background: rgba(255, 255, 255, 0.08); color: white; }
.decline-btn:hover { background: rgba(255, 255, 255, 0.15); }

@media (max-width: 900px) {
    .cookie-content { flex-direction: column; align-items: flex-start; }
    .cookie-buttons { width: 100%; }
    .cookie-btn { flex: 1; }
}

@media (max-width: 600px) {
    .cookie-banner { bottom: 20px; padding: 22px; }
    .cookie-text { flex-direction: column; align-items: flex-start; }
    .cookie-text h3 { font-size: 21px; }
    .cookie-buttons { flex-direction: column; }
}

/* ================= PRICING NOTICE ================= */

.pricing-notice {
    padding: 70px 8%;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.pricing-notice-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
    width: 100%;
}

.pricing-notice-content h2 { font-size: 36px; line-height: 1.3; margin: 20px 0; }
.pricing-notice-content p { color: #cbd5e1; line-height: 1.9; margin-bottom: 18px; font-size: 16px; }

.notice-badge {
    display: inline-block;
    padding: 12px 22px;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.pricing-notice-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 16px 35px;
    background: #00ff88;
    color: #020617;
    border-radius: 60px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s ease;
}

.pricing-notice-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.25);
}

.pricing-notice-box { display: flex; flex-direction: column; gap: 25px; }

.notice-card {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.notice-card:hover { transform: translateY(-8px); border-color: rgba(0, 255, 136, 0.25); }

.notice-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: rgba(0, 255, 136, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ff88;
    font-size: 28px;
    margin-bottom: 22px;
}

.notice-card h3 { font-size: 20px; margin-bottom: 12px; color: white; }
.notice-card p { color: #cbd5e1; line-height: 1.8; font-size: 15px; }

@media (max-width: 992px) {
    .pricing-notice-container { grid-template-columns: 1fr; gap: 40px; }
    .pricing-notice-content h2 { font-size: 30px; }
}

@media (max-width: 768px) {
    .pricing-notice { padding: 50px 5%; }
    .pricing-notice-content h2 { font-size: 26px; line-height: 1.3; }
    .pricing-notice-content p { font-size: 16px; }
    .notice-card { padding: 25px; }
    .notice-card h3 { font-size: 22px; }
    .pricing-notice-btn { width: 100%; }
}

@media (max-width: 500px) {
    .pricing-notice-content h2 { font-size: 22px; }
    .pricing-notice-btn { width: 100%; }
}

/* ================= PORTFOLIO FILTER ================= */

.portfolio-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.filter-btn:hover { background: rgba(0, 255, 136, 0.18); transform: translateY(-3px); }
.filter-btn.active { background: #00ff88; color: #020617; box-shadow: 0 10px 25px rgba(0, 255, 136, 0.25); }

@media (max-width: 768px) {
    .portfolio-filter { gap: 10px; }
    .filter-btn { padding: 12px 22px; font-size: 14px; }
}

/* ================= PREMIUM CONTACT ================= */

.premium-contact {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    overflow: hidden;
}

.premium-contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.contact-info h2 { font-size: 52px; color: white; line-height: 1.2; margin: 25px 0; }
.contact-info p { color: #cbd5e1; line-height: 1.8; margin-bottom: 30px; }

.contact-badge {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }

.contact-item { display: flex; align-items: center; gap: 12px; color: #cbd5e1; font-size: 16px; }
.contact-item i { color: #00ff88; width: 20px; }

.contact-form-box {
    width: 100%;
    padding: 40px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-form { width: 100%; display: flex; flex-direction: column; gap: 20px; }

.input-box { width: 100%; }

.input-box input,
.input-box select,
.input-box textarea {
    width: 100%;
    padding: 18px;
    border: none;
    outline: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    transition: border 0.3s;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
    border: 1px solid #00ff88;
}

.input-box textarea { height: 160px; resize: none; }

.premium-submit {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: #00ff88;
    color: #020617;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.premium-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.25);
}

.premium-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .premium-contact-container { grid-template-columns: 1fr; }
    .contact-info h2 { font-size: 34px; }
    .contact-form-box { padding: 25px; }
}

@media (max-width: 480px) {
    .premium-contact { padding: 45px 15px; }
    .contact-info h2 { font-size: 28px; }
    .contact-form-box { padding: 20px; }
}

/* ================= SUCCESS POPUP ================= */

.success-popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 99999;
}

.success-popup.active { opacity: 1; visibility: visible; }

.popup-content {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 45px 30px;
    text-align: center;
    backdrop-filter: blur(14px);
    transform: translateY(40px);
    transition: 0.4s ease;
}

.success-popup.active .popup-content { transform: translateY(0); }

.popup-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 255, 136, 0.12);
    border-radius: 50%;
}

.popup-icon i { font-size: 38px; color: #00ff88; }
.popup-content h3 { color: white; font-size: 32px; margin-bottom: 15px; }
.popup-content p { color: #cbd5e1; line-height: 1.8; margin-bottom: 30px; }

.popup-content button {
    border: none;
    background: #00ff88;
    color: #020617;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.popup-content button:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2); }

@media (max-width: 480px) {
    .popup-content { padding: 35px 22px; }
    .popup-content h3 { font-size: 26px; }
    .popup-icon { width: 75px; height: 75px; }
    .popup-icon i { font-size: 30px; }
}

/* ================= WEBSITE PRICING ================= */

.website-pricing {
    padding: 60px 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-subtitle {
    text-align: center;
    margin-top: -35px;
    margin-bottom: 50px;
    opacity: 0.8;
    font-size: 17px;
}

.website-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.website-card {
    width: 340px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
}

.website-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35); }
.website-card h3 { font-size: 30px; margin-bottom: 15px; }
.website-card h1 { font-size: 55px; margin-bottom: 30px; color: #00ff88; }
.website-card ul { margin-bottom: 30px; padding: 0; }
.website-card ul li { list-style: none; margin-bottom: 15px; line-height: 1.6; display: flex; align-items: center; gap: 10px; }

.website-card button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #00ff88;
    color: #020617;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.website-card button:hover { transform: scale(1.03); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }

.basic-card  { border: 2px solid #00ff88; }
.pro-card    { border: 2px solid #b5c901; transform: scale(1.05); }
.premium-card{ border: 2px solid #ea580c; transform: scale(1.05); }

.pro-card:hover    { transform: translateY(-10px) scale(1.05); }
.premium-card:hover{ transform: translateY(-10px) scale(1.05); }

.basic-badge   { position: absolute; top: -15px; right: 20px; background: #00ff88;  color: #020617; padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: bold; letter-spacing: 1px; }
.pro-badge     { position: absolute; top: -15px; right: 20px; background: #b5c901; color: white;   padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: bold; letter-spacing: 1px; }
.premium-badge { position: absolute; top: -15px; right: 20px; background: #ea580c; color: white;   padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: bold; letter-spacing: 1px; }

@media (max-width: 1100px) {
    .website-container { flex-direction: column; align-items: center; }
    .website-card { width: 100%; max-width: 400px; }
    .pro-card, .premium-card { transform: scale(1); }
    .pro-card:hover, .premium-card:hover { transform: translateY(-10px); }
}

/* ================= FAQ ================= */

.faq-section { padding: 60px 10%; }
.faq-title { text-align: center; font-size: 42px; margin-bottom: 20px; }
.faq-subtitle { text-align: center; font-size: 17px; margin-bottom: 60px; opacity: 0.8; }
.faq-container { max-width: 900px; margin: auto; }

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-item:hover { transform: translateY(-5px); border-color: #00ff88; }

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.faq-question:hover { color: #00ff88; }
.faq-question span:last-child { font-size: 28px; font-weight: bold; color: #00ff88; transition: 0.3s ease; flex-shrink: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 30px 30px; line-height: 1.8; opacity: 0.85; }

.faq-item.active { border-color: #00ff88; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question span:last-child { transform: rotate(45deg); }

@media (max-width: 768px) {
    .faq-title { font-size: 34px; }
    .faq-question { font-size: 16px; padding: 22px; }
    .faq-answer p { padding: 0 22px 22px; }
}

/* ================= WHY CHOOSE US ================= */

.why-us-section { padding: 60px 10%; }
.why-us-title { text-align: center; font-size: 42px; margin-bottom: 20px; }
.why-us-subtitle { text-align: center; font-size: 17px; opacity: 0.8; max-width: 750px; margin: 0 auto 70px; line-height: 1.7; }
.why-us-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.why-us-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-us-card:hover { transform: translateY(-10px); border-color: #00ff88; }

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0, 255, 136, 0.08);
    margin-bottom: 25px;
    border: 1px solid #00ff88;
}

.why-icon i { font-size: 32px; color: #00ff88; }
.why-us-card h3 { font-size: 24px; margin-bottom: 18px; }
.why-us-card p { line-height: 1.8; opacity: 0.85; }

@media (max-width: 768px) { .why-us-title { font-size: 34px; } }

/* ================= COMPARISON TABLE ================= */

.comparison-section { padding: 60px 10%; }
.comparison-title { text-align: center; font-size: 42px; margin-bottom: 20px; }
.comparison-subtitle { text-align: center; font-size: 17px; opacity: 0.8; max-width: 800px; margin: 0 auto 60px; line-height: 1.7; }
.comparison-table-container { overflow-x: auto; }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.comparison-table thead { background: rgba(255, 255, 255, 0.03); }
.comparison-table th { padding: 25px 20px; text-align: center; font-size: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.comparison-table td { padding: 22px 20px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s ease; }
.comparison-table td:first-child { text-align: left; font-weight: 600; }
.comparison-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.basic-column { color: #00ff88; }
.pro-column { color: #b5c901; }
.premium-column { color: #ea580c; }
.comparison-table td:nth-child(2) { border-left: 1px solid rgba(0, 255, 136, 0.15); }
.comparison-table td:nth-child(3) { border-left: 1px solid rgba(181, 201, 1, 0.15); }
.comparison-table td:nth-child(4) { border-left: 1px solid rgba(234, 88, 12, 0.15); }

@media (max-width: 768px) {
    .comparison-title { font-size: 34px; }
    .comparison-table th, .comparison-table td { padding: 18px 14px; font-size: 14px; }
}

/* ================= REFUND SECTION ================= */

.refund-section { padding: 60px 10%; }
.refund-title { text-align: center; font-size: 42px; margin-bottom: 20px; }
.refund-subtitle { text-align: center; font-size: 17px; opacity: 0.8; max-width: 750px; margin: 0 auto 70px; line-height: 1.7; }
.refund-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.refund-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.refund-card:hover { transform: translateY(-10px); border-color: #00ff88; }
.refund-card h3 { font-size: 24px; margin-bottom: 18px; color: #00ff88; }
.refund-card p { line-height: 1.8; opacity: 0.85; }

@media (max-width: 768px) { .refund-title { font-size: 34px; } }

/* ================= CTA SECTION ================= */

.cta-section { padding: 70px 10%; }

.cta-container {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 30px;
    padding: 80px 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-container h2 { font-size: 48px; margin-bottom: 25px; line-height: 1.3; }
.cta-container p { max-width: 750px; margin: 0 auto 40px; line-height: 1.8; font-size: 18px; opacity: 0.85; }
.cta-buttons { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-btn { padding: 16px 35px; border-radius: 12px; text-decoration: none; font-weight: bold; transition: 0.3s ease; font-size: 16px; }
.primary-btn { background: #00ff88; color: #000; }
.primary-btn:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3); }
.secondary-btn { border: 1px solid rgba(255, 255, 255, 0.1); color: white; background: rgba(255, 255, 255, 0.03); }
.secondary-btn:hover { border-color: #00ff88; color: #00ff88; transform: translateY(-5px); }

@media (max-width: 768px) {
    .cta-container { padding: 60px 25px; }
    .cta-container h2 { font-size: 34px; }
    .cta-buttons { flex-direction: column; }
    .cta-btn { width: 100%; }
}

/* ================= STATS SECTION ================= */

.stats-section { padding: 60px 10%; }
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }

.stats-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stats-card:hover { transform: translateY(-10px); border-color: #00ff88; }
.stats-card h2 { font-size: 55px; margin-bottom: 15px; color: #00ff88; }
.stats-card p { font-size: 17px; opacity: 0.85; }

@media (max-width: 768px) { .stats-card h2 { font-size: 42px; } }

/* ================= TESTIMONIALS ================= */

.testimonials-section { padding: 60px 10%; }
.testimonials-title { text-align: center; font-size: 42px; margin-bottom: 20px; }
.testimonials-subtitle { text-align: center; font-size: 17px; opacity: 0.8; max-width: 750px; margin: 0 auto 70px; line-height: 1.7; }
.testimonials-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 22px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover { transform: translateY(-10px); border-color: #00ff88; }
.testimonial-top { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; }

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    font-weight: bold;
    font-size: 22px;
}

.testimonial-info h3 { font-size: 20px; margin-bottom: 5px; }
.testimonial-info span { font-size: 14px; opacity: 0.7; }
.testimonial-stars { color: #00ff88; font-size: 22px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card p { line-height: 1.8; opacity: 0.85; }

@media (max-width: 768px) { .testimonials-title { font-size: 34px; } }

/* ================= PROMO POPUP ================= */

.promo-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease;
    z-index: 999999;
}

.promo-overlay.show { opacity: 1; visibility: visible; }

.promo-banner {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    overflow: hidden;
    padding: 60px 50px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(40px) scale(0.94);
    transition: transform 0.45s ease;
}

.promo-overlay.show .promo-banner { transform: translateY(0) scale(1); }

.promo-banner::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.12);
    top: -150px;
    right: -140px;
    filter: blur(80px);
    z-index: 0;
}

.promo-content { position: relative; z-index: 2; }
.promo-badge { display: inline-block; padding: 10px 22px; border-radius: 50px; background: rgba(0, 255, 136, 0.12); border: 1px solid rgba(0, 255, 136, 0.25); color: #00ff88; font-size: 14px; font-weight: bold; letter-spacing: 1px; margin-bottom: 28px; }
.promo-content h1 { font-size: 62px; line-height: 1.05; margin-bottom: 18px; color: white; }
.promo-content h2 { font-size: 24px; color: #00ff88; margin-bottom: 25px; font-weight: 600; }
.promo-content p { font-size: 18px; line-height: 1.9; color: #cbd5e1; max-width: 620px; margin-bottom: 40px; }
.promo-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 34px;
    border-radius: 50px;
    background: #00ff88;
    color: #020617;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.35s ease;
}

.promo-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 255, 136, 0.28); }

.promo-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: 0.35s ease;
}

.promo-close:hover { background: rgba(0, 255, 136, 0.15); color: #00ff88; transform: rotate(90deg); }

@media (max-width: 768px) {
    .promo-banner { padding: 45px 28px; }
    .promo-content h1 { font-size: 40px; }
    .promo-content h2 { font-size: 20px; }
    .promo-content p { font-size: 16px; }
    .promo-btn { width: 100%; }
}

@media (max-width: 480px) {
    .promo-banner { padding: 38px 22px; border-radius: 28px; }
    .promo-content h1 { font-size: 34px; }
    .promo-content h2 { font-size: 18px; }
    .promo-close { width: 42px; height: 42px; font-size: 22px; }
}

/* ========================================
   LIGHT MODE — COMPLET & PROPRE
   (remplace tous les anciens blocs light mode)
   ======================================== */

body.light-mode {
    background: #f8fafc;
    color: #020617;
}

body.light-mode header {
    background: rgba(255, 255, 255, 0.92);
}

body.light-mode nav a { color: #020617; }
body.light-mode .menu-toggle { color: #020617; }

body.light-mode .lang-switcher {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .lang-btn { color: #334155; }
body.light-mode .lang-btn.active { background: #00ff88; color: #020617; }

body.light-mode .theme-toggle { background: rgba(0, 0, 0, 0.08); color: #020617; }

/* HERO */
body.light-mode .hero { background: linear-gradient(135deg, #ffffff, #e2e8f0); }
body.light-mode .hero-text p { color: #334155; }

/* SECTION TITLE */
body.light-mode .section-title p { color: #64748b; }

/* TRAVAUX */
body.light-mode .work-card { background: white; border-color: #e2e8f0; }

/* SLIDER BUTTONS */
body.light-mode .slider-btn { background: rgba(0, 0, 0, 0.06); color: #020617; }

/* PUBLICITE */
body.light-mode .advertisement { background: #f1f5f9; }
body.light-mode .ad-container { background: rgba(0, 0, 0, 0.03); border-color: rgba(0, 0, 0, 0.08); }
body.light-mode .ad-content h2 { color: #020617; }
body.light-mode .ad-content p { color: #334155; }

/* PARTNERS */
/* partner-card — pas de boîte, rien à overrider en light mode */

/* CONTACT SIMPLE */
body.light-mode .contact h2,
body.light-mode .contact p { color: #020617; }

/* FOOTER */
body.light-mode footer { background: #e2e8f0; }
body.light-mode .footer-content h3 { color: #00b860; }
body.light-mode .footer-info p { color: #334155; }
body.light-mode .footer-links a { color: #334155; }
body.light-mode .copyright { color: #64748b; border-color: #cbd5e1; }
body.light-mode .social-icons a { background: #cbd5e1; color: #020617; }

/* COOKIE BANNER */
body.light-mode .cookie-banner { background: rgba(255, 255, 255, 0.97); border-color: rgba(0,0,0,0.08); }
body.light-mode .cookie-text h3 { color: #020617; }
body.light-mode .cookie-text p { color: #334155; }
body.light-mode .decline-btn { background: rgba(0,0,0,0.08); color: #020617; }

/* PRICING HERO */
body.light-mode .pricing-hero { background: linear-gradient(135deg, #ffffff, #e2e8f0); }
body.light-mode .pricing-hero h1 { color: #020617; }
body.light-mode .pricing-hero p { color: #334155; }

/* PRICING CARDS */
body.light-mode .pricing-card { background: white; border-color: #e2e8f0; }
body.light-mode .pricing-card h3 { color: #020617; }
body.light-mode .pricing-card p { color: #334155; }

/* WEBSITE CARDS */
body.light-mode .website-card { background: white; color: #020617; }
body.light-mode .website-card h3 { color: #020617; }
body.light-mode .website-card ul li { color: #020617; }
body.light-mode .website-pricing { border-color: #e2e8f0; }
body.light-mode .section-subtitle { color: #334155; }

/* FAQ */
body.light-mode .faq-item { background: white; border-color: #e2e8f0; }
body.light-mode .faq-question { color: #020617; }
body.light-mode .faq-answer p { color: #334155; }

/* WHY US */
body.light-mode .why-us-card { background: white; border-color: #e2e8f0; }
body.light-mode .why-us-title,
body.light-mode .why-us-subtitle { color: #020617; }
body.light-mode .why-us-card h3 { color: #020617; }
body.light-mode .why-us-card p { color: #334155; }

/* COMPARISON */
body.light-mode .comparison-table { background: white; }
body.light-mode .comparison-table thead { background: #f1f5f9; }
body.light-mode .comparison-table th { color: #020617; border-color: #e2e8f0; }
body.light-mode .comparison-table td { color: #020617; border-color: #f1f5f9; }
body.light-mode .comparison-title,
body.light-mode .comparison-subtitle { color: #020617; }

/* REFUND */
body.light-mode .refund-card { background: white; border-color: #e2e8f0; }
body.light-mode .refund-card p { color: #334155; }
body.light-mode .refund-title,
body.light-mode .refund-subtitle { color: #020617; }

/* CTA */
body.light-mode .cta-container { background: linear-gradient(135deg, rgba(0,255,136,0.06), rgba(0,0,0,0.02)); }
body.light-mode .cta-container h2 { color: #020617; }
body.light-mode .cta-container p { color: #334155; }
body.light-mode .secondary-btn { color: #020617; border-color: rgba(0,0,0,0.15); background: rgba(0,0,0,0.03); }

/* STATS */
body.light-mode .stats-card { background: white; border-color: #e2e8f0; }
body.light-mode .stats-card p { color: #334155; }

/* TESTIMONIALS */
body.light-mode .testimonial-card { background: white; border-color: #e2e8f0; }
body.light-mode .testimonial-info h3 { color: #020617; }
body.light-mode .testimonial-info span { color: #64748b; }
body.light-mode .testimonial-card p { color: #334155; }

/* PRICING NOTICE — ANALYSE & RÉVISIONS */
body.light-mode .pricing-notice { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
body.light-mode .pricing-notice-content h2 { color: #020617 !important; }
body.light-mode .pricing-notice-content p { color: #334155 !important; }
body.light-mode .notice-badge { background: rgba(0,255,136,0.12); border-color: rgba(0,255,136,0.25); color: #00b860; }
body.light-mode .pricing-notice-btn { background: #00cc70; color: #ffffff; }
body.light-mode .notice-card { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 8px 25px rgba(0,0,0,0.07); }
body.light-mode .notice-card h3 { color: #020617 !important; }
body.light-mode .notice-card p { color: #334155 !important; }
body.light-mode .notice-card .notice-icon i { color: #00b860; }
body.light-mode .notice-icon { background: rgba(0,255,136,0.1); }
body.light-mode .notice-icon i { color: #00b860; }

/* FORMULAIRE CONTACT */
body.light-mode .premium-contact { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
body.light-mode .contact-info h2 { color: #020617; }
body.light-mode .contact-info p { color: #334155; }
body.light-mode .contact-badge { background: rgba(0,255,136,0.12); border-color: rgba(0,255,136,0.25); color: #00b860; }
body.light-mode .contact-item { color: #334155; }
body.light-mode .contact-item i { color: #00b860; }
body.light-mode .contact-form-box { background: #ffffff; border-color: #e2e8f0; box-shadow: 0 10px 35px rgba(0,0,0,0.08); }

body.light-mode .input-box input,
body.light-mode .input-box select,
body.light-mode .input-box textarea {
    background: #f1f5f9;
    color: #020617;
    border: 1px solid #cbd5e1;
}

body.light-mode .input-box input::placeholder,
body.light-mode .input-box textarea::placeholder { color: #64748b; }

body.light-mode .input-box select option { background: #ffffff; color: #020617; }

body.light-mode .input-box input:focus,
body.light-mode .input-box select:focus,
body.light-mode .input-box textarea:focus { border-color: #00cc70; }

body.light-mode .premium-submit { background: #00cc70; color: #020617; }
body.light-mode .premium-submit:hover { background: #00b860; }

/* LEGAL PAGES */
body.light-mode .legal-page { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
body.light-mode .legal-container { background: white; border-color: #e2e8f0; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
body.light-mode .legal-container h1,
body.light-mode .legal-container h3 { color: #020617; }
body.light-mode .legal-container p { color: #334155; }
body.light-mode .legal-list li { color: #334155; }
body.light-mode .legal-list strong { color: #020617; }

/* POPUP SUCCESS */
body.light-mode .popup-content { background: rgba(255,255,255,0.97); border-color: #e2e8f0; }
body.light-mode .popup-content h3 { color: #020617; }
body.light-mode .popup-content p { color: #334155; }

/* FILTER BUTTONS */
body.light-mode .filter-btn { background: rgba(0,0,0,0.06); color: #020617; }
body.light-mode .filter-btn.active { background: #00ff88; color: #020617; }


/* ===== LIGHT MODE — TRAVAUX PREMIUM ===== */
body.light-mode .travaux-title-block h2 { color: #020617; }
body.light-mode .travaux-title-block p { color: #64748b; }
body.light-mode .category-label { border-color: rgba(0,0,0,0.08); }
body.light-mode .category-label h3 { color: #020617; }

/* Work showcase */
body.light-mode .work-showcase {
    background: #ffffff;
    border-color: #e2e8f0;
}
body.light-mode .work-list {
    border-color: #e2e8f0;
}
body.light-mode .work-list-item {
    border-color: #f1f5f9;
}
body.light-mode .work-list-item:hover,
body.light-mode .work-list-item.active {
    background: rgba(0,204,112,0.05);
}
body.light-mode .wli-name {
    color: rgba(2,6,23,0.55);
}
body.light-mode .work-list-item.active .wli-name,
body.light-mode .work-list-item:hover .wli-name {
    color: #020617;
}
body.light-mode .work-preview {
    background: #f8fafc;
}
body.light-mode .preview-frame {
    background: transparent;
}
body.light-mode .preview-counter {
    color: rgba(2,6,23,0.3);
}

/* ===== WEBSITE CARD BTN — WhatsApp link styled as button ===== */
.website-card-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #00ff88;
    color: #020617 !important;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.website-card-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #020617 !important;
}

body.light-mode .website-card-btn {
    color: #020617 !important;
}

/* ===== LIGHT MODE — PARTNERS ===== */
body.light-mode .partner-card img {
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.5;
}
body.light-mode .partner-card:hover img {
    filter: grayscale(100%) brightness(0.2);
    opacity: 0.85;
}