:root {
            --primary: #7C3AED;
            --primary-dark: #6D28D9;
            --primary-light: #A78BFA;
            --primary-bg: #F5F3FF;
            --text-dark: #1F2937;
            --text-gray: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --bg-light: #F9FAFB;
            --border: #E5E7EB;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-label {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
        }

        .navbar-logo i {
            font-size: 28px;
        }

        .navbar-logo span {
            color: var(--text-dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 24px !important;
            background: var(--primary);
            color: var(--white) !important;
            border-radius: 8px;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--primary-dark);
            color: var(--white) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s ease;
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #5b21b6 100%);
            overflow: hidden;
            padding-top: 72px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 70%);
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 52px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, #a78bfa, #c4b5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 32px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 48px;
        }

        .hero-stat h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
        }

        .hero-stat p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 0;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            width: 100%;
            height: 480px;
            object-fit: cover;
        }

        .hero-image-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--white);
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-image-badge i {
            font-size: 24px;
            color: var(--primary);
        }

        .hero-image-badge .badge-text strong {
            display: block;
            font-size: 18px;
            color: var(--text-dark);
        }

        .hero-image-badge .badge-text span {
            font-size: 13px;
            color: var(--text-gray);
        }

        /* ============ SERVICES ============ */
        .services {
            background: var(--white);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 48px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px 28px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon i {
            font-size: 26px;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .service-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* ============ ABOUT ============ */
        .about {
            background: var(--bg-light);
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 16px;
            width: 100%;
            height: 450px;
            object-fit: cover;
            box-shadow: var(--shadow-lg);
        }

        .about-experience {
            position: absolute;
            bottom: -24px;
            right: -24px;
            background: var(--primary);
            color: var(--white);
            padding: 24px 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .about-experience h3 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1;
        }

        .about-experience p {
            font-size: 14px;
            opacity: 0.9;
        }

        .about-content .section-title {
            text-align: left;
        }

        .about-content .section-subtitle {
            text-align: left;
            margin: 0 0 24px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-feature i {
            color: var(--primary);
            font-size: 18px;
            flex-shrink: 0;
        }

        .about-feature span {
            font-size: 15px;
            font-weight: 500;
        }

        /* ============ PROJECTS ============ */
        .projects {
            background: var(--white);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .project-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            group: true;
        }

        .project-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(124, 58, 237, 0.9) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay h4 {
            color: var(--white);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .project-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        /* ============ TEAM ============ */
        .team {
            background: var(--bg-light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .team-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .team-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-info {
            padding: 24px;
            text-align: center;
        }

        .team-info h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .team-info .role {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 16px;
        }

        .team-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .team-socials a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .team-socials a:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials {
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-stars i {
            color: #FBBF24;
            font-size: 16px;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
            font-size: 12px;
            color: var(--text-gray);
            background: var(--bg-light);
            padding: 4px 10px;
            border-radius: 20px;
        }

        .google-badge i {
            color: #4285F4;
        }

        .testimonial-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-author img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author strong {
            display: block;
            font-size: 15px;
            color: var(--text-dark);
        }

        .testimonial-author span {
            font-size: 13px;
            color: var(--text-light);
        }

        /* ============ FEATURES ============ */
        .features {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #5b21b6 100%);
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
        }

        .features .section-label {
            color: var(--primary-light);
        }

        .features .section-title {
            color: var(--white);
        }

        .features .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.14);
            transform: translateY(-6px);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(124, 58, 237, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 28px;
            color: var(--primary-light);
        }

        .feature-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.65);
        }

        /* ============ PRICING ============ */
        .pricing {
            background: var(--bg-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: center;
        }

        .pricing-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-6px);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #FBBF24;
            color: #1F2937;
            padding: 4px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .pricing-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pricing-card .price {
            font-size: 48px;
            font-weight: 800;
            margin: 16px 0;
        }

        .pricing-card .price sup {
            font-size: 24px;
            top: -12px;
        }

        .pricing-card .price sub {
            font-size: 16px;
            font-weight: 400;
            bottom: 0;
        }

        .pricing-card.featured .price,
        .pricing-card.featured h4 {
            color: var(--white);
        }

        .pricing-card .pricing-desc {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        .pricing-card.featured .pricing-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        .pricing-features {
            text-align: left;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-gray);
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255, 255, 255, 0.85);
        }

        .pricing-features li i {
            color: var(--primary);
            font-size: 14px;
        }

        .pricing-card.featured .pricing-features li i {
            color: #FBBF24;
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-card.featured .btn {
            background: var(--white);
            color: var(--primary);
        }

        .pricing-card.featured .btn:hover {
            background: var(--primary-bg);
        }

        /* ============ CONTACT ============ */
        .contact {
            background: var(--white);
        }

        .contact .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info-cards {
            display: grid;
            gap: 20px;
            margin-top: 32px;
        }

        .contact-info-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 12px;
        }

        .contact-info-card .icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-info-card .icon i {
            font-size: 20px;
            color: var(--primary);
        }

        .contact-info-card h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-info-card p {
            font-size: 14px;
            color: var(--text-gray);
        }

        .contact-form {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 20px;
        }

        .contact-form h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* ============ BLOG ============ */
        .blog {
            background: var(--bg-light);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .blog-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .blog-content {
            padding: 24px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .blog-meta span {
            font-size: 13px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .blog-tag {
            background: var(--primary-bg);
            color: var(--primary);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .blog-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .blog-content h4:hover {
            color: var(--primary);
        }

        .blog-content p {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 16px;
        }

        .blog-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .blog-link:hover {
            gap: 10px;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: #0F0A1E;
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0;
        }

        .footer-grid {
            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-about .navbar-logo {
            margin-bottom: 16px;
        }

        .footer-about p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .footer-col h5 {
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--primary-light);
            padding-left: 4px;
        }

        .footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            font-size: 13px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin: 0 auto 32px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }

            .about .container,
            .contact .container {
                grid-template-columns: 1fr;
            }

            .about-content .section-title,
            .about-content .section-subtitle {
                text-align: center;
            }

            .about-features {
                max-width: 400px;
                margin: 0 auto 32px;
            }

            .about-content .btn {
                display: block;
                text-align: center;
                max-width: 300px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                box-shadow: var(--shadow-lg);
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .services-grid,
            .projects-grid,
            .team-grid,
            .testimonials-grid,
            .features-grid,
            .pricing-grid,
            .blog-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-6px);
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .about-experience {
                right: 10px;
                bottom: -16px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .services-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 30px;
            }

            .section {
                padding: 60px 0;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 24px;
            }
        }