/* ===== 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-icon {
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            font-weight: 900;
        }

        .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;
            position: relative;
        }

        .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 ===== */
        .hero {
            min-height: 100vh;
            background: var(--dark);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 60px 80px;
        }

        .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-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-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-badge i {
            font-size: 0.75rem;
        }

        .hero-title {
            font-family: 'Arboria', sans-serif;
            font-size: 3.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 24px;
        }

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

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

        .hero-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 520px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .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-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-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

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

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }

        .hero-stat h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Arboria', sans-serif;
        }

        .hero-stat p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-top: 4px;
        }

        /* Hero Right Visual */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual-main {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(255, 107, 0, 0.1);
        }

        .hero-visual-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        .hero-visual-main::before {
            content: '';
            position: absolute;
            inset: -50%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.1), transparent, rgba(0, 87, 255, 0.05), transparent);
            animation: rotateGlow 8s linear infinite;
        }

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

        .hero-visual-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px;
        }

        .hero-visual-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-visual-text {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.95rem;
        }

        .floating-card {
            position: absolute;
            padding: 16px 22px;
            background: rgba(20, 20, 25, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-size: 0.85rem;
            z-index: 10;
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .floating-card-1 {
            top: 15%;
            left: -30px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 20%;
            right: -30px;
            animation-delay: 2s;
        }

        .floating-card-3 {
            top: 60%;
            left: -50px;
            animation-delay: 1s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 100px 60px;
        }

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

        .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.8rem;
            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.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--light-gray);
        }

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

        .service-card {
            background: #fff;
            padding: 40px 32px;
            border-radius: var(--radius-lg);
            border: 1px solid #eee;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-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;
        }

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

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

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== ABOUT ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-visual {
            position: relative;
        }

        .about-img-box {
            width: 100%;
            aspect-ratio: 4/3;
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--dark);
            color: #fff;
            padding: 24px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .about-experience-badge h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .about-experience-badge p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

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

        .about-content h2 .orange {
            color: var(--primary);
        }

        .about-content>p {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 35px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 20px;
            background: var(--light-gray);
            border-radius: 12px;
        }

        .about-feature i {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .about-feature span {
            font-weight: 500;
            color: var(--dark);
            font-size: 0.95rem;
        }

        /* ===== PORTFOLIO ===== */
        .portfolio {
            background: var(--dark);
        }

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

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

        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 10px 25px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: var(--shadow-orange);
        }

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

        .portfolio-item.hidden {
            display: none;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #1a1a2e, #252540);
            cursor: pointer;
        }

        .portfolio-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 5px 15px;
            border-radius: 50px;
            background: rgba(11, 11, 15, 0.8);
            backdrop-filter: blur(5px);
            color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 5;
            border: 1px solid rgba(255, 107, 0, 0.3);
            transition: 0.3s;
        }

        .portfolio-item:hover .portfolio-tag {
            opacity: 0;
            transform: translateY(-10px);
        }

        .portfolio-item .p-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3.5rem;
            color: rgba(255, 255, 255, 0.06);
            transition: 0.4s;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(255, 107, 0, 0.9), rgba(255, 107, 0, 0.3));
            opacity: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: 0.4s;
            padding: 20px;
            text-align: center;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .p-icon {
            transform: translate(-50%, -50%) scale(1.2);
            color: rgba(255, 255, 255, 0.2);
        }

        .portfolio-overlay h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
        }

        .portfolio-overlay p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .portfolio-overlay .p-link {
            margin-top: 15px;
            width: 45px;
            height: 45px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== PROCESS ===== */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .process-number {
            font-family: 'Arboria', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.3;
            margin-bottom: 15px;
        }

        .process-step h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

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

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

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

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

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

        .testimonial-stars {
            color: #FFB347;
            font-size: 1rem;
            margin-bottom: 18px;
        }

        .testimonial-text {
            color: #555;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 24px;
            font-size: 0.95rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            overflow: hidden;
            border: 3px solid rgba(255, 107, 0, 0.2);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
        }

        .testimonial-info span {
            font-size: 0.8rem;
            color: var(--gray);
        }

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

        .pricing-card {
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid #eee;
            padding: 44px 34px;
            text-align: center;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

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

        .pricing-popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 40px;
            transform: rotate(45deg);
        }

        .pricing-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .pricing-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pricing-card .pricing-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

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

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

        .pricing-amount .currency {
            font-size: 1.5rem;
            vertical-align: top;
        }

        .pricing-amount .period {
            font-size: 1rem;
            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;
            -webkit-text-fill-color: transparent;
        }

        .pricing-features {
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: #555;
        }

        .pricing-cta {
            text-align: center;
            margin-top: 40px;
        }

        #tarifs {
            padding-bottom: 30px !important;
        }

        .testimonials {
            padding-top: 60px !important;
        }

        .btn-more-pricing {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 45px;
            background: #fff;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
        }

        .btn-more-pricing::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
            border-radius: 50px;
        }

        .btn-more-pricing:hover {
            color: #fff !important;
            box-shadow: var(--shadow-orange);
            transform: translateY(-5px);
            border-color: transparent;
        }

        .btn-more-pricing:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .btn-more-pricing i {
            transition: transform 0.4s;
        }

        .btn-more-pricing:hover i {
            transform: translateX(8px);
        }

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

        .pricing-features li i {
            color: var(--primary);
            font-size: 0.85rem;
        }

        /* ===== 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;
        }

        .btn-white {
            background: #fff;
            color: var(--primary);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

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

        /* ===== CONTACT ===== */
        .contact {
            background: var(--dark);
        }

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

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

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contact-info-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-info-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(255, 107, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-info-text h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .contact-info-text p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .contact-info-text a {
            color: rgba(255, 255, 255, 0.5);
            transition: 0.3s;
        }

        .contact-info-text a:hover {
            color: var(--primary);
        }

        .contact-socials {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .contact-socials a {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            transition: 0.3s;
        }

        .contact-socials a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 40px;
        }

        .contact-form h3 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 25px;
            font-family: 'Arboria', sans-serif;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .form-group label {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-family: 'Arboria', sans-serif;
            font-size: 0.95rem;
            transition: 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
        }

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

        .form-group select option {
            background: var(--dark);
            color: #fff;
        }

        .form-submit {
            width: auto;
            min-width: 220px;
            margin-top: 15px;
            padding: 15px 45px;
        }

        /* ===== 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 ===== */
        .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, 0.4);
            transition: 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        @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;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .section {
                padding: 80px 30px;
            }

            .navbar {
                padding: 15px 30px;
            }

            .hero {
                padding: 120px 30px 80px;
            }

            .hero-content-wrapper {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-desc {
                margin: 0 auto 40px;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .hero-title {
                font-size: 2.8rem;
            }

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

            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

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

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

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

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

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

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

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

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

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

        @media (max-width: 768px) {
            .section {
                padding: 60px 20px;
            }

            .navbar {
                padding: 12px 20px;
            }

            .hero {
                padding: 100px 20px 60px;
            }

            .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;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .portfolio-grid,
            .testimonials-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

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

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

            .about-content h2 {
                font-size: 2rem;
            }

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

            .contact-form {
                padding: 25px;
            }
        }