
        * {
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            padding-bottom: 74px;
            overflow-x: hidden;
            font-family: Arial, Helvetica, sans-serif;
            background: #050816;
            color: #fff;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* HEADER */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 24px 0;
            transition: all 0.35s ease;
        }

        .header.scrolled {
            padding: 10px 0;
            background: rgba(5,8,22,0.92);
            backdrop-filter: blur(14px);
            box-shadow: 0 10px 35px rgba(0,0,0,0.22);
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 68px;
            width: auto;
            display: block;
            transition: all 0.35s ease;
        }

        .header.scrolled .logo img {
            height: 48px;
        }

        .menus ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .menus a {
            position: relative;
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: 0.3s;
        }

        .menus a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            border-radius: 50px;
            background: linear-gradient(90deg, #22d3ee, #7c3aed);
            transition: 0.3s;
        }

        .menus a:hover {
            color: #22d3ee;
        }

        .menus a:hover::after {
            width: 100%;
        }

        .menus li:last-child a {
            padding: 14px 24px;
            border-radius: 50px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
            box-shadow: 0 10px 35px rgba(124,58,237,0.35);
        }

        .menus li:last-child a::after {
            display: none;
        }

        .burger {
            display: none;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 14px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .burger span {
            width: 23px;
            height: 2px;
            background: #fff;
            border-radius: 50px;
            transition: 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* SLIDER */

        .slider {
            position: relative;
            width: 100%;
            height: 720px;
            overflow: hidden;
            background: #050816;
        }

        .slide {
            position: absolute;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            color: #fff;
            padding: 160px 20px 80px;
            overflow: hidden;
        }

        .slide.active {
            display: flex;
        }

        .slide-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
            background-color: #0a1122;
            transform: scale(1.08);
        }

        .slide::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(
                180deg,
                rgba(5,8,22,0.78) 0%,
                rgba(5,8,22,0.38) 45%,
                rgba(5,8,22,0.8) 100%
            );
        }

        .slideTitre,
        .slideSousTitre {
            position: relative;
            z-index: 3;
        }

        .slideTitre {
            max-width: 1000px;
            font-size: clamp(38px, 5vw, 72px);
            line-height: 1.05;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1.5px;
            text-shadow: 0 8px 35px rgba(0,0,0,0.55);
        }

        .slideSousTitre {
            margin-top: 18px;
            font-size: clamp(20px, 2vw, 32px);
            color: #dff8ff;
            text-shadow: 0 5px 25px rgba(0,0,0,0.55);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.25);
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 34px;
            cursor: pointer;
            transition: 0.3s;
            backdrop-filter: blur(8px);
        }

        .slider-arrow:hover {
            background: linear-gradient(135deg, #20d6ff, #7b2cff);
            border-color: transparent;
        }

        .slider-prev {
            left: 35px;
        }

        .slider-next {
            right: 35px;
        }

        /* SECTIONS */

        .section {
            padding: 100px 0;
            background: #fff;
            color: #111827;
        }

        .section:nth-of-type(even) {
            background: #f7f8fc;
        }

        .section-label {
            display: inline-block;
            margin-bottom: 14px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section h2 {
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 900;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .section p {
            font-size: 17px;
            line-height: 1.8;
            color: #4b5563;
        }

        .image-card {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.16);
        }

        .presentation-services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 28px 0 32px;
        }

        .presentation-service-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            background: #f7f8fc;
            text-decoration: none;
            color: #111827;
            font-weight: 700;
            font-size: 14px;
            line-height: 1.3;
            transition: 0.25s;
        }

        .presentation-service-item:hover {
            background: #fff;
            color: #111827;
            box-shadow: 0 14px 35px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }

        .presentation-service-item .mini-icon {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 11px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .presentation-service-item .mini-icon svg {
            width: 18px;
            height: 18px;
        }

        @media screen and (max-width: 420px) {
            .presentation-services {
                grid-template-columns: 1fr;
            }
        }

        .btn-gradient,
        .btn-outline-gradient {
            display: inline-block;
            margin-top: 18px;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            border: none;
            transition: 0.3s;
        }

        .btn-gradient {
            color: #fff;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            box-shadow: 0 14px 35px rgba(124,58,237,0.35);
        }

        .btn-gradient:hover {
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-gradient {
            color: #5b34ff;
            border: 2px solid #5b34ff;
            background: #fff;
        }

        .btn-outline-gradient:hover {
            color: #fff;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            border-color: transparent;
        }

        .project-card {
            height: 100%;
            padding: 38px 34px;
            border-radius: 28px;
            background: #fff;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 80px rgba(0,0,0,0.13);
        }

        .project-logo {
            max-height: 64px;
            max-width: 190px;
            margin-bottom: 22px;
        }

        .project-card h3 {
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .section.devis {
            background: linear-gradient(135deg, #07111f, #140b2f);
        }

        .devis-box {
            max-width: 950px;
            margin: auto;
            padding: 60px;
            border-radius: 35px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(15px);
            color: #fff;
            box-shadow: 0 25px 80px rgba(0,0,0,0.25);
        }

        .devis-box h2,
        .devis-box p {
            color: #fff;
            text-align: center;
        }

        .form-control {
            min-height: 55px;
            border-radius: 16px;
            border: 1px solid #e5e7eb;
            padding: 14px 18px;
        }

        textarea.form-control {
            min-height: 150px;
        }

        .form-control:focus {
            box-shadow: 0 0 0 4px rgba(34,211,238,0.18);
            border-color: #22d3ee;
        }

        .contact a {
            color: #5b34ff;
            font-weight: 700;
            text-decoration: none;
        }

        .map-box {
            height: 400px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.14);
        }

        .map-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* FOOTER */

        .footer {
            padding: 55px 0;
            text-align: center;
            background: #050816;
            color: #fff;
        }

        .footer-logo img {
            height: 70px;
            margin-bottom: 18px;
        }

        .footer p {
            margin: 6px 0;
            color: #d1d5db;
        }

        .footer .small {
            font-size: 13px;
            color: #8b92a3;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 15px;
            transition: 0.3s;
            position: relative;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .form-select {
            min-height: 55px;
            border-radius: 16px;
            border: 1px solid #e5e7eb;
            padding: 14px 18px;
            font-size: 15px;
        }

        .form-select:focus {
            box-shadow: 0 0 0 4px rgba(34,211,238,0.18);
            border-color: #22d3ee;
        }

        .is-invalid {
            border-color: #dc2626 !important;
            box-shadow: 0 0 0 4px rgba(220,38,38,0.15) !important;
        }

        /* MOBILE */

        @media screen and (max-width: 991px) {

            .header {
                padding: 12px 0;
                background: rgba(5,8,22,0.94);
                backdrop-filter: blur(14px);
            }

            .header .container {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }

            .logo img,
            .header.scrolled .logo img {
                height: 48px;
            }

            .burger {
                display: flex;
            }

            .menus {
                position: fixed;
                top: 72px;
                left: 15px;
                right: 15px;
                display: none;
                background: rgba(5,8,22,0.98);
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: 22px;
                padding: 24px;
                box-shadow: 0 25px 70px rgba(0,0,0,0.45);
            }

            .menus.open {
                display: block;
            }

            .menus ul {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }

            .menus li {
                width: 100%;
            }

            .menus a {
                display: block;
                width: 100%;
                padding: 15px 0;
                font-size: 16px;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }

            .menus a::after {
                display: none;
            }

            .menus li:last-child a {
                margin-top: 18px;
                padding: 15px 20px;
                border-bottom: 0;
            }

            .slider {
                height: 560px;
            }

            .slide {
                padding: 120px 25px 60px;
                background-position: center;
            }

            .slideTitre {
                font-size: 34px;
                line-height: 1.15;
                letter-spacing: -0.8px;
            }

            .slideSousTitre {
                font-size: 20px;
            }

            .slider-arrow {
                width: 42px;
                height: 42px;
                font-size: 24px;
            }

            .slider-prev {
                left: 12px;
            }

            .slider-next {
                right: 12px;
            }

            .section {
                padding: 70px 0;
            }

            .project-card {
                padding: 32px;
            }

            .devis-box {
                padding: 38px 24px;
                border-radius: 24px;
            }

            .map-box {
                height: 320px;
            }
        }

        @media screen and (max-width: 576px) {

            .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .slider {
                height: 520px;
            }

            .slideTitre {
                font-size: 29px;
            }

            .slideSousTitre {
                font-size: 18px;
            }

            .section {
                padding: 55px 0;
            }

            .section h2 {
                font-size: 30px;
            }

            .section p {
                font-size: 16px;
            }

            .btn-gradient,
            .btn-outline-gradient {
                width: 100%;
                text-align: center;
                padding: 15px 22px;
            }

            .project-card {
                padding: 26px;
                border-radius: 22px;
            }

            .project-logo {
                max-width: 180px;
            }

            .devis-box {
                padding: 30px 20px;
            }

            .footer-links {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* ACTIVE NAV LINK */

        .menus a.active {
            color: #22d3ee;
        }

        .menus a.active::after {
            width: 100%;
        }

        .menus li:last-child a.active {
            color: #fff;
        }

        /* PAGE HERO (sous-pages) */

        .page-hero {
            padding: 170px 0 80px;
            background: linear-gradient(135deg, #07111f, #140b2f);
            color: #fff;
            text-align: center;
        }

        .page-hero .section-label {
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-hero h1 {
            font-size: clamp(34px, 5vw, 56px);
            font-weight: 900;
            letter-spacing: -1px;
            margin: 10px 0 16px;
        }

        .page-hero p {
            color: #c9d4e8;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .page-hero .breadcrumb {
            margin-bottom: 18px;
        }

        .page-hero .breadcrumb a {
            color: #8fe9ff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }

        .page-hero .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* PAGE HERO — variante deux colonnes avec illustration (prestations) */

        .page-hero-split {
            text-align: left;
            padding: 160px 0 90px;
        }

        .page-hero-split .section-label,
        .page-hero-split h1,
        .page-hero-split p {
            margin-left: 0;
        }

        .page-hero-split p {
            margin: 10px 0 26px;
        }

        .page-hero-split .btn-gradient {
            margin-top: 0;
        }

        .hero-illustration {
            max-width: 460px;
            margin: 0 auto;
            filter: drop-shadow(0 25px 60px rgba(0,0,0,0.35));
        }

        @media screen and (max-width: 991px) {
            .page-hero-split {
                text-align: center;
                padding: 150px 0 60px;
            }

            .page-hero-split .section-label,
            .page-hero-split p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-illustration {
                max-width: 340px;
                margin-top: 20px;
            }
        }

        /* ICONES DE PRESTATIONS */

        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-bottom: 20px;
            box-shadow: 0 12px 25px rgba(124,58,237,0.25);
        }

        .service-icon svg {
            width: 26px;
            height: 26px;
        }

        .service-offer-card {
            position: relative;
            overflow: hidden;
        }

        .service-offer-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
        }

        /* SAAS SHOWCASE (Soowebo / Cavalisio) */

        /* ZONE D'INTERVENTION (page contact) */

        .zone-intervention {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .zone-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 50px;
            background: #f7f8fc;
            color: #374151;
            font-size: 13.5px;
            font-weight: 700;
        }

        .zone-badge-accent {
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
        }

        .saas-showcase {
            margin-top: 50px;
            padding: 40px;
            border-radius: 24px;
            background: #f7f8fc;
            text-align: center;
        }

        .saas-showcase p {
            font-weight: 700;
            color: #374151;
            margin-bottom: 22px;
        }

        .saas-logos {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .saas-logos img {
            max-height: 60px;
            width: auto;
            opacity: 0.85;
            transition: 0.3s;
        }

        .saas-logos a:hover img {
            opacity: 1;
            transform: translateY(-3px);
        }

        .realisation-card {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        .realisation-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 80px rgba(0,0,0,0.13);
        }

        .realisation-shot {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10.5;
            overflow: hidden;
            background: #eef1f8;
        }

        .realisation-shot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        .realisation-body {
            padding: 26px 28px 30px;
        }

        .realisation-body .cat {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #7c3aed;
        }

        .realisation-body h3 {
            font-size: 21px;
            font-weight: 900;
            margin-bottom: 10px;
            color: #111827;
        }

        .realisation-body p {
            font-size: 15px;
            margin-bottom: 14px;
        }

        .realisation-body .visit {
            display: inline-block;
            font-weight: 800;
            color: #5b34ff;
            text-decoration: none;
            font-size: 14px;
        }

        .realisation-card-link:hover .visit {
            text-decoration: underline;
        }

        /* ACTUALITES */

        .actu-card-link {
            text-decoration: none;
            display: block;
            height: 100%;
            color: inherit;
        }

        .actu-card {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        .actu-card-link:hover .actu-card,
        .actu-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 80px rgba(0,0,0,0.13);
        }

        .actu-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #eef1f8;
        }

        .actu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .actu-body {
            padding: 26px 28px 30px;
        }

        .actu-date {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #7c3aed;
        }

        .actu-body h3 {
            font-size: 20px;
            font-weight: 900;
            color: #111827;
            margin-bottom: 10px;
        }

        .actu-excerpt {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .actu-body .lire-plus {
            font-weight: 800;
            color: #5b34ff;
            text-decoration: none;
            font-size: 14px;
        }

        /* EMPTY STATE */

        .empty-state {
            text-align: center;
            padding: 70px 30px;
            background: #f7f8fc;
            border-radius: 30px;
        }

        .empty-state .icon {
            font-size: 46px;
            margin-bottom: 18px;
        }

        .empty-state h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 12px;
        }

        .empty-state p {
            max-width: 500px;
            margin: 0 auto;
        }

        /* PRESTATIONS */

        .service-block {
            padding-bottom: 60px;
        }

        .service-offer-card {
            height: 100%;
            padding: 34px;
            border-radius: 24px;
            background: #fff;
            box-shadow: 0 15px 45px rgba(0,0,0,0.06);
        }

        .service-offer-card h4 {
            font-size: 19px;
            font-weight: 900;
            margin-bottom: 12px;
        }

        .service-offer-card p {
            font-size: 15px;
            margin-bottom: 14px;
        }

        .service-offer-card ul {
            padding-left: 18px;
            margin: 0;
            color: #4b5563;
            font-size: 14.5px;
            line-height: 1.9;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .process-step {
            flex: 1 1 220px;
            max-width: 260px;
            text-align: center;
            padding: 10px 16px;
        }

        .process-step .num {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 20px;
            margin: 0 auto 16px;
        }

        .process-step h4 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 14px;
        }

        .section.devis-cta {
            background: linear-gradient(135deg, #07111f, #140b2f);
            color: #fff;
        }

        .devis-cta h2,
        .devis-cta p {
            color: #fff;
        }

        /* ARTICLE DETAIL */

        .article-hero-img {
            max-width: 900px;
            margin: 0 auto 45px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.16);
        }

        .article-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 17px;
            line-height: 1.9;
            color: #374151;
        }

        .article-content p {
            margin-bottom: 18px;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 18px;
            padding-left: 22px;
        }

        .article-content li {
            margin-bottom: 6px;
        }

        .article-content a {
            color: #5b34ff;
            font-weight: 700;
        }

        .article-content h3 {
            font-size: 21px;
            font-weight: 900;
            color: #111827;
            margin: 40px 0 14px;
        }

        .article-content h3:first-child {
            margin-top: 0;
        }

        .article-content code {
            background: #f3f4f6;
            padding: 2px 7px;
            border-radius: 6px;
            font-size: 14px;
        }

        .article-content img {
            max-width: 100%;
            border-radius: 20px;
            margin: 20px 0;
        }

        .realisation-card-link {
            text-decoration: none;
            display: block;
            height: 100%;
            color: inherit;
        }

        .realisation-card-link:hover .realisation-card {
            transform: translateY(-6px);
            box-shadow: 0 28px 80px rgba(0,0,0,0.13);
        }

        /* CATEGORY FILTER — pastille glissante façon interrupteur */

        .filtre-categories {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-bottom: 50px;
        }

        .filtre-pill {
            position: absolute;
            z-index: 0;
            border-radius: 50px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            box-shadow: 0 10px 25px rgba(124,58,237,0.3);
            transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        top 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .filtre-btn {
            position: relative;
            z-index: 1;
            padding: 10px 22px;
            border-radius: 50px;
            border: 2px solid #e5e7eb;
            background: transparent;
            color: #4b5563;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: color 0.25s, border-color 0.25s;
        }

        .filtre-btn:hover {
            border-color: #7c3aed;
            color: #7c3aed;
        }

        .filtre-btn.active {
            border-color: transparent;
            color: #fff;
        }

        .filtre-btn.active:hover {
            color: #fff;
        }

        @media (prefers-reduced-motion: reduce) {
            .filtre-pill {
                transition: none;
            }
        }

        /* STATS STRIP (fiche réalisation) */

        .stats-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            margin: 10px auto 50px;
            padding: 35px 20px;
            max-width: 800px;
            background: #f7f8fc;
            border-radius: 24px;
        }

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

        .stat-num {
            font-size: 34px;
            font-weight: 900;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 13px;
            color: #6b7280;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .realisation-shot-full img {
            width: 100%;
            display: block;
        }

        .tags-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            max-width: 800px;
            margin: 10px auto 0;
        }

        .tag-badge {
            display: inline-block;
            padding: 7px 16px;
            border-radius: 50px;
            background: #f7f8fc;
            color: #4b5563;
            font-size: 13px;
            font-weight: 700;
        }

        @media screen and (max-width: 576px) {
            .page-hero {
                padding: 140px 0 55px;
            }

            .realisation-body,
            .actu-body {
                padding: 22px 22px 26px;
            }

            .stats-strip {
                gap: 30px;
                padding: 28px 16px;
            }

            .stat-num {
                font-size: 28px;
            }
        }

        /* ===========================================================
           BARRE CTA FIXE (On vous rappelle / Devis)
           =========================================================== */

        .cta-bar {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 999;
            display: flex;
            background: rgba(5,8,22,0.97);
            backdrop-filter: blur(14px);
            border-top: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 -10px 35px rgba(0,0,0,0.35);
        }

        .cta-bar-btn {
            flex: 1 1 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            padding: 16px 10px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            cursor: pointer;
            transition: 0.25s;
        }

        .cta-bar-btn svg {
            width: 19px;
            height: 19px;
            flex-shrink: 0;
        }

        .cta-bar-rappel {
            color: #dff8ff;
        }

        .cta-bar-rappel:hover {
            background: rgba(255,255,255,0.06);
        }

        .cta-bar-devis {
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
        }

        .cta-bar-devis:hover {
            color: #fff;
            filter: brightness(1.08);
        }

        @media screen and (min-width: 768px) {
            .cta-bar {
                left: 50%;
                right: auto;
                bottom: 24px;
                transform: translateX(-50%);
                width: auto;
                border-radius: 50px;
                border: 1px solid rgba(255,255,255,0.1);
                overflow: hidden;
            }

            .cta-bar-btn {
                flex: 0 0 auto;
                padding: 16px 32px;
            }
        }

        @media screen and (max-width: 400px) {
            .cta-bar-btn span {
                font-size: 12.5px;
            }

            .cta-bar-btn {
                padding: 14px 6px;
                gap: 6px;
            }
        }

        /* ===========================================================
           MODAL "ON VOUS RAPPELLE"
           =========================================================== */

        .modal-rappel-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(3,5,14,0.72);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-rappel-overlay.open {
            display: flex;
        }

        .modal-rappel {
            position: relative;
            width: 100%;
            max-width: 420px;
            background: linear-gradient(160deg, #0d1526, #1a1030);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 28px;
            padding: 44px 32px 36px;
            box-shadow: 0 30px 90px rgba(0,0,0,0.5);
            color: #fff;
            text-align: center;
        }

        .modal-rappel h3 {
            font-size: 24px;
            font-weight: 900;
            margin: 8px 0 10px;
        }

        .modal-rappel p {
            color: #c9d4e8;
            font-size: 15px;
            margin-bottom: 24px;
        }

        .modal-rappel .form-control {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
        }

        .modal-rappel .form-control::placeholder {
            color: #9aa4b8;
        }

        .modal-rappel .form-control:focus {
            background: rgba(255,255,255,0.1);
        }

        .modal-rappel-close {
            position: absolute;
            top: 14px;
            right: 18px;
            background: none;
            border: none;
            color: #9aa4b8;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            transition: 0.2s;
        }

        .modal-rappel-close:hover {
            color: #fff;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
        }

        @media screen and (max-width: 480px) {
            .modal-rappel {
                padding: 38px 22px 28px;
                border-radius: 22px;
            }
        }

        /* Bouton outline utilisable sur fond sombre (devis-box, hero...) */

        .btn-outline-light {
            color: #fff;
            border: 2px solid rgba(255,255,255,0.5);
            background: transparent;
        }

        .btn-outline-light:hover {
            color: #fff;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            border-color: transparent;
        }

        /* ===========================================================
           PAGE DEVIS DÉDIÉE
           =========================================================== */

        .section.devis-page {
            background: #fff;
        }

        .devis-box-light {
            background: #fff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            backdrop-filter: none;
            color: #111827;
        }

        .devis-box-light .form-control,
        .devis-box-light .form-select {
            background: #fff;
            color: #111827;
        }

        .devis-alt.devis-alt-light p {
            color: #4b5563;
        }

        .devis-box-teaser h2,
        .devis-box-teaser p {
            color: #fff;
        }

        .devis-teaser-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 22px;
        }

        .devis-alt {
            margin-top: 40px;
        }

        .devis-alt p {
            color: #c9d4e8;
            margin-bottom: 16px;
        }

        @media screen and (max-width: 576px) {
            .devis-teaser-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .devis-teaser-actions .btn-gradient,
            .devis-teaser-actions .btn-outline-light {
                width: 100%;
                text-align: center;
            }
        }

        /* ===========================================================
           BANDEAU COOKIES
           =========================================================== */

        .cookie-banner {
            position: fixed;
            left: 50%;
            bottom: -200px;
            transform: translateX(-50%);
            z-index: 9500;
            width: calc(100% - 32px);
            max-width: 560px;
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 22px;
            background: #fff;
            border: 1px solid #eceef3;
            border-radius: 18px;
            box-shadow: 0 20px 55px rgba(15,20,35,0.16);
            opacity: 0;
            transition: opacity 0.4s ease, bottom 0.4s ease;
            pointer-events: none;
        }

        .cookie-banner.show {
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-banner p {
            flex: 1 1 auto;
            margin: 0;
            font-size: 13.5px;
            line-height: 1.6;
            color: #4b5563;
        }

        .cookie-banner p a {
            color: #7c3aed;
            font-weight: 700;
            text-decoration: none;
        }

        .cookie-banner p a:hover {
            text-decoration: underline;
        }

        .cookie-banner-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 9px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: 0.2s;
        }

        .cookie-btn-refuser {
            background: transparent;
            color: #6b7280;
        }

        .cookie-btn-refuser:hover {
            color: #111827;
        }

        .cookie-btn-accepter {
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
        }

        .cookie-btn-accepter:hover {
            filter: brightness(1.08);
        }

        @media screen and (max-width: 560px) {
            .cookie-banner {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                gap: 14px;
                padding: 20px;
                width: calc(100% - 24px);
            }

            .cookie-banner-actions {
                justify-content: center;
            }

            .cookie-btn {
                flex: 1 1 auto;
            }
        }

        /* ===========================================================
           HERO ANIMÉ (accueil)
           =========================================================== */

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 2;
            overflow: hidden;
            pointer-events: none;
            mix-blend-mode: screen;
            transition: transform 0.3s ease-out;
            will-change: transform;
        }

        .hero-grid {
            position: absolute;
            inset: -20%;
            background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
            background-size: 34px 34px;
            opacity: 0.6;
        }

        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
        }

        .hero-blob.b1 {
            width: 420px;
            height: 420px;
            top: -140px;
            left: -110px;
            background: #22d3ee;
            opacity: 0.35;
        }

        .hero-blob.b2 {
            width: 480px;
            height: 480px;
            bottom: -180px;
            right: -130px;
            background: #7c3aed;
            opacity: 0.4;
        }

        .hero-blob.b3 {
            width: 300px;
            height: 300px;
            top: 30%;
            left: 55%;
            background: #20d6ff;
            opacity: 0.22;
        }

        .hero-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #dff8ff;
            opacity: 0;
        }

        .hero-icon {
            position: absolute;
            color: #dff8ff;
            opacity: 0.16;
        }

        .hero-icon svg {
            width: 100%;
            height: 100%;
        }

        .hero-icon.i1 { width: 68px; height: 68px; top: 16%; left: 7%; }
        .hero-icon.i2 { width: 52px; height: 52px; top: 66%; left: 12%; }
        .hero-icon.i3 { width: 60px; height: 60px; top: 20%; right: 9%; }
        .hero-icon.i4 { width: 46px; height: 46px; top: 64%; right: 14%; }
        .hero-icon.i5 { width: 40px; height: 40px; top: 42%; left: 3%; }
        .hero-icon.i6 { width: 44px; height: 44px; bottom: 10%; right: 4%; }

        .slide .slideTitre,
        .slide .slideSousTitre {
            opacity: 0;
        }

        /* Animations, désactivées si l'utilisateur préfère moins de mouvement */
        @media (prefers-reduced-motion: no-preference) {
            .hero-grid {
                animation: heroGridDrift 46s linear infinite;
            }

            .hero-blob.b1 {
                animation: heroBlob1 19s ease-in-out infinite;
            }

            .hero-blob.b2 {
                animation: heroBlob2 23s ease-in-out infinite;
            }

            .hero-blob.b3 {
                animation: heroBlob3 16s ease-in-out infinite;
            }

            .hero-particle {
                animation: heroParticle linear infinite;
            }

            .hero-icon {
                animation: heroIconFloat ease-in-out infinite;
            }

            .hero-icon.i1 { animation-duration: 9s; }
            .hero-icon.i2 { animation-duration: 11s; animation-delay: 1s; }
            .hero-icon.i3 { animation-duration: 10s; animation-delay: 0.4s; }
            .hero-icon.i4 { animation-duration: 8s; animation-delay: 1.6s; }
            .hero-icon.i5 { animation-duration: 12s; animation-delay: 0.8s; }
            .hero-icon.i6 { animation-duration: 10.5s; animation-delay: 2.2s; }

            .slide.active .slide-bg {
                animation: heroKenBurns 12s ease-out forwards;
            }

            .slide.active .slideTitre {
                animation: heroTextIn 0.9s ease forwards;
            }

            .slide.active .slideSousTitre {
                animation: heroTextIn 0.9s ease forwards 0.18s;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .slide .slideTitre,
            .slide .slideSousTitre {
                opacity: 1;
            }
        }

        @keyframes heroGridDrift {
            from { background-position: 0 0; }
            to { background-position: 220px 220px; }
        }

        @keyframes heroBlob1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(60px, 40px) scale(1.15); }
        }

        @keyframes heroBlob2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-55px, -35px) scale(1.1); }
        }

        @keyframes heroBlob3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-45px, 45px); }
        }

        @keyframes heroParticle {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            12% { opacity: 0.7; }
            88% { opacity: 0.7; }
            100% { transform: translateY(-160px) translateX(18px); opacity: 0; }
        }

        @keyframes heroIconFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(8deg); }
        }

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

        @keyframes heroKenBurns {
            from { transform: scale(1.08); }
            to { transform: scale(1.18); }
        }

        /* Indicateur de scroll animé, bas du hero */

        .hero-scroll-cue {
            position: absolute;
            left: 50%;
            bottom: 28px;
            transform: translateX(-50%);
            z-index: 4;
            width: 26px;
            height: 42px;
            border: 2px solid rgba(255,255,255,0.45);
            border-radius: 50px;
            pointer-events: none;
        }

        .hero-scroll-cue span {
            display: block;
            width: 5px;
            height: 5px;
            margin: 7px auto 0;
            border-radius: 50%;
            background: #fff;
        }

        @media (prefers-reduced-motion: no-preference) {
            .hero-scroll-cue span {
                animation: heroScrollCue 1.8s ease-in-out infinite;
            }
        }

        @keyframes heroScrollCue {
            0% { transform: translateY(0); opacity: 1; }
            70% { transform: translateY(14px); opacity: 0; }
            100% { transform: translateY(0); opacity: 0; }
        }

        @media screen and (max-width: 767px) {
            .hero-icon.i1, .hero-icon.i2, .hero-icon.i3, .hero-icon.i4, .hero-icon.i5, .hero-icon.i6 {
                opacity: 0.1;
            }

            .hero-blob.b3 {
                display: none;
            }

            .hero-scroll-cue {
                bottom: 16px;
            }
        }

        /* ===========================================================
           APPARITIONS AU SCROLL
           =========================================================== */

        .reveal {
            opacity: 0;
            transform: translateY(34px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ===========================================================
           ESPACE CLIENT /flux/ — thème clair dédié
           =========================================================== */

        body.flux-page {
            background: #f7f8fc;
            color: #1f2937;
            padding-bottom: 0;
        }

        .flux-topbar {
            background: #fff;
            border-bottom: 1px solid #eceef3;
            padding: 18px 0;
        }

        .flux-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #111827;
            font-weight: 800;
            font-size: 15px;
        }

        .flux-logo img {
            height: 34px;
            width: auto;
        }

        .flux-section {
            padding: 50px 0 80px;
        }

        .flux-section h1 {
            font-size: 30px;
            font-weight: 900;
            color: #111827;
        }

        .flux-card-link {
            text-decoration: none;
            display: block;
            height: 100%;
            color: inherit;
        }

        .flux-card {
            position: relative;
            overflow: hidden;
            height: 100%;
            background: #fff;
            border-radius: 20px;
            padding: 28px 26px 24px;
            box-shadow: 0 15px 40px rgba(15,20,35,0.06);
            transition: 0.25s;
        }

        .flux-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
        }

        .flux-card-link:hover .flux-card {
            transform: translateY(-4px);
            box-shadow: 0 22px 55px rgba(15,20,35,0.11);
        }

        .flux-card-date {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #7c3aed;
        }

        .flux-card h3 {
            font-size: 18px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 10px;
        }

        .flux-card p {
            font-size: 14.5px;
            color: #4b5563;
            margin-bottom: 14px;
        }

        .flux-card-lire {
            font-size: 13.5px;
            font-weight: 800;
            color: #5b34ff;
        }

        .flux-back-link {
            color: #5b34ff;
            font-weight: 700;
            text-decoration: none;
            font-size: 14px;
        }

        .flux-back-link:hover {
            text-decoration: underline;
        }

        .flux-detail-card {
            position: relative;
            overflow: hidden;
            background: #fff;
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 20px 60px rgba(15,20,35,0.08);
        }

        .flux-detail-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
        }

        .flux-detail-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-bottom: 22px;
            box-shadow: 0 12px 25px rgba(124,58,237,0.25);
        }

        .flux-detail-icon svg {
            width: 26px;
            height: 26px;
        }

        .flux-detail-accroche {
            color: #374151;
            font-size: 17px;
            font-weight: 600;
            line-height: 1.6;
            margin: 0 0 30px;
            padding: 18px 22px;
            border-radius: 14px;
            background: #f7f8fc;
            border-left: 4px solid #7c3aed;
        }

        .flux-footer {
            padding: 30px 0;
            text-align: center;
            color: #9aa4b8;
            font-size: 13px;
        }

        .flux-footer a {
            color: #7c3aed;
            font-weight: 700;
            text-decoration: none;
        }

        .flux-footer a:hover {
            text-decoration: underline;
        }

        @media screen and (max-width: 576px) {
            .flux-detail-card {
                padding: 34px 24px;
            }

            .flux-detail-accroche {
                padding: 16px 18px;
                font-size: 16px;
            }

            .flux-section {
                padding: 36px 0 60px;
            }
        }

        /* ===========================================================
           OFFRES SITE VITRINE (accueil)
           =========================================================== */

        .pricing-card {
            position: relative;
            height: 100%;
            background: #fff;
            border-radius: 28px;
            padding: 42px 38px;
            box-shadow: 0 20px 55px rgba(15,20,35,0.07);
            border: 1px solid #eceef3;
            transition: 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 28px 70px rgba(15,20,35,0.1);
        }

        .pricing-card-premium {
            border: 2px solid transparent;
            background:
                linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #22d3ee, #7c3aed) border-box;
            box-shadow: 0 25px 65px rgba(124,58,237,0.18);
        }

        .pricing-card-premium:hover {
            box-shadow: 0 32px 80px rgba(124,58,237,0.24);
        }

        .pricing-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            background: #f7f8fc;
            color: #374151;
            font-size: 12.5px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
        }

        .pricing-badge-premium {
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
        }

        .pricing-card h3 {
            font-size: 23px;
            font-weight: 900;
            color: #111827;
            margin-bottom: 8px;
        }

        .pricing-tagline {
            color: #6b7280;
            font-size: 14.5px;
            margin-bottom: 24px;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: 12px;
            flex-wrap: wrap;
        }

        .pricing-old {
            font-size: 18px;
            font-weight: 700;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .pricing-new {
            font-size: 40px;
            font-weight: 900;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricing-new small {
            font-size: 16px;
            font-weight: 800;
            -webkit-text-fill-color: #7c3aed;
        }

        .pricing-launch {
            display: inline-block;
            margin: 12px 0 26px;
            padding: 5px 14px;
            border-radius: 50px;
            background: #fef3c7;
            color: #92400e;
            font-size: 12px;
            font-weight: 800;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
        }

        .pricing-features li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 13px;
            font-size: 14.5px;
            color: #374151;
            line-height: 1.5;
        }

        .pricing-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: -1px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #22d3ee, #7c3aed);
            color: #fff;
            font-size: 12px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pricing-cta {
            display: block;
            width: 100%;
            text-align: center;
            margin-top: 0;
        }

        .pricing-note {
            margin-top: 22px;
            color: #6b7280;
            font-size: 13.5px;
        }

        .pricing-addon {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 44px;
            padding: 30px 34px;
            border-radius: 22px;
            background: #f7f8fc;
            border: 1px dashed #d1d5db;
        }

        .pricing-addon-icon {
            flex-shrink: 0;
            width: 54px;
            height: 54px;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 8px 20px rgba(15,20,35,0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7c3aed;
        }

        .pricing-addon-icon svg {
            width: 26px;
            height: 26px;
        }

        .pricing-addon-text {
            flex: 1 1 auto;
        }

        .pricing-addon-text h4 {
            font-size: 17px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 4px;
        }

        .pricing-addon-text p {
            font-size: 14px;
            color: #6b7280;
            margin: 0;
        }

        .pricing-addon-price {
            flex-shrink: 0;
            text-align: right;
        }

        .pricing-addon-amount {
            display: block;
            font-size: 26px;
            font-weight: 900;
            color: #111827;
        }

        .pricing-addon-amount small {
            font-size: 13px;
            font-weight: 700;
            color: #6b7280;
        }

        .pricing-addon-period {
            font-size: 13px;
            color: #9ca3af;
            font-weight: 700;
        }

        @media screen and (max-width: 767px) {
            .pricing-addon {
                flex-direction: column;
                text-align: center;
                padding: 26px 22px;
            }

            .pricing-addon-price {
                text-align: center;
            }
        }

        @media screen and (max-width: 576px) {
            .pricing-card {
                padding: 32px 24px;
            }

            .pricing-new {
                font-size: 34px;
            }
        }