﻿/* ===== RESET ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arboria', sans-serif;
            color: #1a1a1a;
            overflow-x: hidden;
            background: #fff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        :root {
            --primary: #FF6B00;
            --primary-light: #FF8C38;
            --primary-dark: #E05E00;
            --accent: #0057FF;
            --dark: #0B0B0F;
            --dark-2: #141419;
            --gray: #6B7280;
            --light-gray: #F3F4F6;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8C38 50%, #FFB347 100%);
            --gradient-dark: linear-gradient(135deg, #0B0B0F 0%, #1a1a2e 100%);
            --gradient-accent: linear-gradient(135deg, #FF6B00 0%, #0057FF 100%);
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
            --shadow-orange: 0 10px 40px rgba(255, 107, 0, 0.3);
            --radius: 16px;
            --radius-lg: 24px;
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 107, 0, 0.2);
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 18px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(11, 11, 15, 0.95);
            backdrop-filter: blur(20px);
            padding: 12px 60px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Arboria', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
        }

        .logo img {
            height: 48px;
            width: auto;
            border-radius: 10px;
        }

        .logo-text span {
            color: var(--primary);
            font-weight: 900;
        }

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

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.9rem;
            transition: 0.3s;
        }

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

        .nav-cta {
            padding: 10px 28px !important;
            background: var(--gradient-primary) !important;
            border-radius: 50px !important;
            color: #fff !important;
            font-weight: 600 !important;
            transition: transform 0.3s, box-shadow 0.3s !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-orange);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translateY(8px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-8px);
        }

        /* ===== HERO TARIFS ===== */
        .hero-tarifs {
            min-height: 55vh;
            background: var(--dark);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 140px 60px 80px;
        }

        .hero-tarifs .hero-bg-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-circle {
            position: absolute;
            border-radius: 50%;
        }

        .hero-circle-1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
        }

        .hero-circle-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 87, 255, 0.06) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-tarifs-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-tarifs-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid rgba(255, 107, 0, 0.2);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .hero-tarifs h1 {
            font-family: 'Arboria', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-tarifs h1 .orange {
            color: var(--primary);
        }

        .hero-tarifs h1 .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-tarifs p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.15rem;
            line-height: 1.8;
            max-width: 650px;
            margin: 0 auto 35px;
        }

        .hero-tarifs-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

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

        .hero-tarifs-stat h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        .hero-tarifs-stat p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin: 0;
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb {
            background: var(--dark-2);
            padding: 14px 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.85rem;
        }

        .breadcrumb-list a {
            color: rgba(255, 255, 255, 0.5);
            transition: 0.3s;
        }

        .breadcrumb-list a:hover {
            color: var(--primary);
        }

        .breadcrumb-list .separator {
            color: rgba(255, 255, 255, 0.3);
        }

        .breadcrumb-list .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* ===== TAB NAVIGATION ===== */
        .service-tabs {
            background: #fff;
            padding: 0 60px;
            border-bottom: 2px solid var(--light-gray);
            position: sticky;
            top: 70px;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }

        .tabs-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .tabs-container::-webkit-scrollbar {
            display: none;
        }

        .tab-btn {
            padding: 18px 24px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            cursor: pointer;
            font-family: 'Arboria', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gray);
            white-space: nowrap;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

        .tab-btn.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .tab-btn i {
            font-size: 1rem;
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 80px 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 50px;
            background: rgba(255, 107, 0, 0.08);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .section-title {
            font-family: 'Arboria', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }

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

        .section-desc {
            color: var(--gray);
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===== PRICING CATEGORY ===== */
        .pricing-category {
            padding: 80px 60px;
            display: none;
        }

        .pricing-category.active {
            display: block;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-category:nth-child(even) {
            background: var(--light-gray);
        }

        .pricing-category-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-category-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            margin: 0 auto 20px;
        }

        .pricing-category-header h2 {
            font-family: 'Arboria', sans-serif;
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 14px;
        }

        .pricing-category-header h2 .orange {
            color: var(--primary);
        }

        .pricing-category-header p {
            color: var(--gray);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===== PRICING GRID ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1300px;
            margin: 0 auto;
            align-items: stretch;
        }

        .pricing-grid-3 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 1100px;
        }

        .pricing-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid #eee;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .pricing-card:hover::before {
            transform: scaleX(1);
        }

        .pricing-card.popular {
            background: var(--dark);
            color: #fff;
            border: 2px solid var(--primary);
            transform: scale(1.04);
        }

        .pricing-popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-primary);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 45px;
            transform: rotate(45deg);
            letter-spacing: 0.5px;
        }

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

        .pricing-card.popular:hover {
            transform: scale(1.04) translateY(-8px);
        }

        .pricing-card-name {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .pricing-card .pricing-desc {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 22px;
            line-height: 1.5;
        }

        .pricing-card.popular .pricing-desc {
            color: rgba(255, 255, 255, 0.5);
        }

        .pricing-amount {
            font-family: 'Arboria', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .pricing-amount .currency {
            font-size: 1.3rem;
            vertical-align: top;
            line-height: 2.2;
        }

        .pricing-amount .period {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--gray);
        }

        .pricing-card.popular .pricing-amount .period {
            color: rgba(255, 255, 255, 0.4);
        }

        .pricing-amount .orange-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricing-divider {
            width: 60px;
            height: 3px;
            background: var(--gradient-primary);
            margin: 20px auto;
            border-radius: 2px;
        }

        .pricing-features {
            margin: 20px 0;
            text-align: left;
            flex-grow: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            color: #555;
            line-height: 1.5;
        }

        .pricing-card.popular .pricing-features li {
            color: rgba(255, 255, 255, 0.7);
            border-bottom-color: rgba(255, 255, 255, 0.06);
        }

        .pricing-features li i {
            color: var(--primary);
            font-size: 0.8rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .pricing-features li i.fa-times-circle {
            color: #ccc;
        }

        .pricing-card.popular .pricing-features li i.fa-times-circle {
            color: rgba(255, 255, 255, 0.2);
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
            margin-top: auto;
            padding: 14px 28px;
            font-size: 0.9rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-family: 'Arboria', sans-serif;
        }

        .btn-orange {
            background: var(--gradient-primary);
            color: #fff;
        }

        .btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-orange);
        }

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

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

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

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

        .btn-white {
            background: #fff;
            color: var(--primary);
            font-weight: 700;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* ===== COMPARISON TABLE ===== */
        .comparison-section {
            padding: 80px 60px;
            background: var(--dark);
        }

        .comparison-section .section-title {
            color: #fff;
        }

        .comparison-section .section-desc {
            color: rgba(255, 255, 255, 0.5);
        }

        .comparison-table-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }

        .comparison-table thead th {
            background: rgba(255, 107, 0, 0.1);
            color: #fff;
            padding: 18px 20px;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 700;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .comparison-table thead th:first-child {
            text-align: left;
        }

        .comparison-table thead th.highlight {
            background: var(--primary);
            color: #fff;
        }

        .comparison-table tbody td {
            padding: 14px 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .comparison-table tbody td:first-child {
            text-align: left;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .comparison-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .comparison-table .check {
            color: var(--primary);
            font-size: 1rem;
        }

        .comparison-table .cross {
            color: rgba(255, 255, 255, 0.15);
            font-size: 0.9rem;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 80px 60px;
            background: var(--light-gray);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius);
            margin-bottom: 14px;
            border: 1px solid #eee;
            overflow: hidden;
            transition: 0.3s;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            gap: 15px;
        }

        .faq-question h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            flex: 1;
        }

        .faq-question i {
            color: var(--primary);
            font-size: 1rem;
            transition: 0.3s;
            flex-shrink: 0;
        }

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

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

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

        .faq-answer p {
            color: var(--gray);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* ===== GUARANTEE SECTION ===== */
        .guarantee-section {
            padding: 80px 60px;
        }

        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .guarantee-card {
            text-align: center;
            padding: 36px 24px;
            border-radius: var(--radius-lg);
            border: 1px solid #eee;
            background: #fff;
            transition: 0.3s;
        }

        .guarantee-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }

        .guarantee-card-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            margin: 0 auto 18px;
        }

        .guarantee-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .guarantee-card p {
            color: var(--gray);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: var(--gradient-primary);
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-banner h2 {
            font-family: 'Arboria', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.15rem;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #060609;
            padding: 60px 60px 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand .logo {
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            padding: 6px 0;
            transition: 0.3s;
        }

        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.85rem;
        }

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

        /* ===== WHATSAPP BUTTON ===== */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--dark);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            z-index: 999;
            border: 1px solid rgba(255, 107, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            cursor: pointer;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ===== CUSTOM NOTE BOX ===== */
        .note-box {
            max-width: 900px;
            margin: 40px auto 0;
            padding: 24px 30px;
            background: rgba(255, 107, 0, 0.06);
            border: 1px solid rgba(255, 107, 0, 0.15);
            border-radius: var(--radius);
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .note-box i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .note-box p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .note-box strong {
            color: var(--dark);
        }

        /* ===== DARK SECTION TITLE ===== */
        .dark-section .section-title {
            color: #fff;
        }

        .dark-section .section-desc {
            color: rgba(255, 255, 255, 0.5);
        }

        .dark-section .pricing-category-header h2 {
            color: #fff;
        }

        .dark-section .pricing-category-header p {
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== RESPONSIVE ===== */
        
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: .3s; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
@media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-card.popular {
                transform: scale(1);
            }

            .pricing-card.popular:hover {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 1024px) {

            .section,
            .pricing-category,
            .faq-section,
            .guarantee-section,
            .comparison-section {
                padding: 60px 30px;
            }

            .navbar {
                padding: 15px 30px;
            }

            .hero-tarifs {
                padding: 120px 30px 60px;
            }

            .hero-tarifs h1 {
                font-size: 2.6rem;
            }

            .breadcrumb {
                padding: 12px 30px;
            }

            .service-tabs {
                padding: 0 30px;
            }

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

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

            .cta-banner {
                padding: 60px 30px;
            }

            .cta-banner h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {

            .section,
            .pricing-category,
            .faq-section,
            .guarantee-section,
            .comparison-section {
                padding: 50px 20px;
            }

            .navbar {
                padding: 12px 20px;
            }

            .hero-tarifs {
                padding: 110px 20px 50px;
                min-height: 45vh;
            }

            .hero-tarifs h1 {
                font-size: 2rem;
            }

            .hero-tarifs p {
                font-size: 1rem;
            }

            .hero-tarifs-stats {
                gap: 25px;
            }

            .nav-links {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(11, 11, 15, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 25px;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                font-size: 1.2rem;
            }

            .hamburger {
                display: flex;
            }

            .service-tabs {
                padding: 0 15px;
            }

            .tab-btn {
                padding: 14px 16px;
                font-size: 0.8rem;
            }

            .tab-btn span.tab-text {
                display: none;
            }

            .breadcrumb {
                padding: 10px 20px;
            }

            .section-title,
            .pricing-category-header h2 {
                font-size: 1.8rem;
            }

            .pricing-grid,
            .pricing-grid-3 {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }

            .pricing-amount {
                font-size: 2.5rem;
            }

            .guarantee-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .footer {
                padding: 40px 20px 25px;
            }

            .cta-banner h2 {
                font-size: 1.6rem;
            }

            .cta-banner p {
                font-size: 0.95rem;
            }

            .comparison-table thead th,
            .comparison-table tbody td {
                padding: 10px 12px;
                font-size: 0.78rem;
            }
        }

        @media (max-width: 480px) {
            .hero-tarifs h1 {
                font-size: 1.7rem;
            }

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

            .pricing-category-header h2 {
                font-size: 1.5rem;
            }

            .tab-btn {
                padding: 12px 10px;
                font-size: 0.75rem;
            }
        }