:root {
            --primary: #f97316;
            --primary-dark: #ea580c;
            --primary-light: #fb923c;
            --dark: #0f172a;
            --dark-card: #1e293b;
            --dark-blue: #1e3a5f;
            --dark-blue-deep: #0f2440;
            --white: #ffffff;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --text-dark: #1e293b;
            --text-light: #f8fafc;
            --shadow: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
            --radius: 12px;
            --radius-lg: 20px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== UTILITIES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249,115,22,0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--dark);
        }

        .btn-dark {
            background: var(--dark);
            color: var(--white);
        }

        .btn-dark:hover {
            background: var(--gray-700);
            transform: translateY(-2px);
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,255,255,0.3);
        }

        .text-primary { color: var(--primary); }
        .text-white { color: var(--white); }

        /* ===== SCROLL ANIMATIONS ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
        .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
        .animate-on-scroll.delay-5 { transition-delay: 0.5s; }
        .animate-on-scroll.delay-6 { transition-delay: 0.6s; }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(15,23,42,0.95);
            backdrop-filter: blur(20px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.2);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-300);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--primary);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 50px;
        }

        .nav-cta:hover {
            background: var(--primary-dark) !important;
            color: var(--white) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0f172a 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 80px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content .subtitle {
            font-size: 1.1rem;
            color: var(--gray-400);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .hero-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .hero-features li {
            color: var(--gray-300);
            font-size: 1rem;
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-features li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius-lg);
        }

        .hero-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 200px;
            height: 200px;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(40px);
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--gray-500);
            font-size: 0.95rem;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .service-card .btn {
            padding: 10px 28px;
            font-size: 0.9rem;
        }

        /* ===== WHY CHOOSE US ===== */
        .why-choose {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .why-choose .section-header h2,
        .why-choose .section-header p {
            color: var(--white);
        }

        .why-choose .section-header p {
            opacity: 0.9;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .why-card {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 30px 25px;
            display: flex;
            align-items: center;
            gap: 18px;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .why-card:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-4px);
        }

        .why-card-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.3rem;
        }

        .why-card h4 {
            color: var(--white);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .why-card p {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* ===== PORTFOLIO ===== */
        .portfolio {
            background: var(--gray-100);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
            display: flex;
            align-items: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .portfolio-overlay p {
            color: var(--gray-300);
            font-size: 0.85rem;
        }

        /* ===== PRICING ===== */
        .pricing {
            background: linear-gradient(135deg, var(--primary), #ef4444);
            position: relative;
        }

        .pricing .section-header h2,
        .pricing .section-header p {
            color: var(--white);
        }

        .pricing .section-header p {
            opacity: 0.9;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
        }

        .pricing-card {
            background: var(--dark);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--primary);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            padding: 5px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            color: var(--white);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--gray-400);
        }

        .pricing-card .price-sub {
            color: var(--gray-400);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .pricing-features li {
            color: var(--gray-300);
            padding: 8px 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li::before {
            content: '\2713';
            color: var(--primary);
            font-weight: 700;
        }

        .pricing-card .btn {
            width: 100%;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 35px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .testimonial-card blockquote {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .testimonial-author span {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        /* ===== STATS ===== */
        .stats {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 35px 25px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .stat-card h3 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 5px;
        }

        .stat-card p {
            color: rgba(255,255,255,0.9);
            font-size: 1.05rem;
            font-weight: 500;
        }

        /* ===== CLIENT LOGOS ===== */
        .clients {
            background: var(--white);
            padding: 60px 0;
        }

        .clients-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .client-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-400);
            transition: var(--transition);
            cursor: default;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .client-logo:hover {
            color: var(--primary);
        }

        .client-logo svg {
            width: 40px;
            height: 40px;
        }

        /* ===== TEAM ===== */
        .team {
            background: var(--dark);
        }

        .team .section-header h2 {
            color: var(--white);
        }

        .team .section-header p {
            color: var(--gray-400);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-card {
            text-align: center;
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-8px);
        }

        .team-card .team-img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            border-radius: var(--radius);
            margin-bottom: 20px;
        }

        .team-card h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-card p {
            color: var(--gray-400);
            font-size: 0.9rem;
        }

        /* ===== FAQ ===== */
        .faq {
            background: var(--gray-100);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid var(--gray-200);
        }

        .faq-question {
            padding: 22px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            transition: var(--transition);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: 'Poppins', sans-serif;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 30px 22px;
            color: var(--gray-500);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== CTA ===== */
        .cta {
            background: linear-gradient(135deg, var(--dark-blue-deep), var(--dark-blue));
            position: relative;
            overflow: hidden;
        }

        .cta::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.03'%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");
            pointer-events: none;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 15px;
        }

        .cta-content p {
            color: var(--gray-300);
            font-size: 1.05rem;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== BLOG ===== */
        .blog {
            background: var(--white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--gray-200);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .blog-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .blog-card-body {
            padding: 25px;
        }

        .blog-card-meta {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .blog-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--gray-500);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .blog-card .blog-author {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        .blog-card .blog-author img {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--primary), #ef4444);
            padding: 60px 0;
        }

        .newsletter-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .newsletter-text h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 5px;
        }

        .newsletter-text p {
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            padding: 14px 24px;
            border: none;
            border-radius: 50px;
            font-size: 0.95rem;
            width: 300px;
            font-family: 'Poppins', sans-serif;
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: var(--gray-400);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            display: inline-block;
            margin-bottom: 15px;
        }

        .footer-brand p {
            color: var(--gray-400);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--primary);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--gray-400);
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .footer-contact li span:first-child {
            color: var(--primary);
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            color: var(--gray-500);
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: var(--gray-500);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 4px 15px rgba(249,115,22,0.4);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-features li {
                justify-content: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                max-width: 500px;
                margin: 0 auto;
            }

            .services-grid,
            .why-grid,
            .portfolio-grid,
            .pricing-grid,
            .testimonials-grid,
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 20px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 30px rgba(0,0,0,0.3);
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .services-grid,
            .why-grid,
            .portfolio-grid,
            .pricing-grid,
            .testimonials-grid,
            .stats-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-content {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                justify-content: center;
            }

            .newsletter-form input {
                width: 100%;
                max-width: 300px;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .clients-grid {
                gap: 30px;
            }
        }