        :root {
            /* === Affilancers logo palette === */
            --primary: #4faffd;
            /* light sky blue */
            --primary-dark: #4f91cf;
            /* deeper sky */
            --primary-light: #B7E3F4;
            /* soft highlight */

            --secondary: #607db4;
            /* steel/denim blue */
            --secondary-dark: #266cad;
            /* slate blue */

            --accent: #040404;
            /* logo black */
            --muted: #9BA0B1;

            --surface: #FFFFFF;
            --bg: #F6FAFD;

            --dark: #0B1220;
            --dark-light: #101A2E;

            --gray: #5E6676;
            --gray-light: #D7DFE5;
            --white: #ffffff;

            /* Gradients (logo vibe) */
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-soft: linear-gradient(135deg, rgba(138, 197, 225, .18), rgba(133, 161, 198, .18));
            --gradient-hero:
                radial-gradient(1200px 700px at 70% 20%, rgba(138, 197, 225, .35), transparent 60%),
                radial-gradient(900px 600px at 20% 80%, rgba(133, 161, 198, .30), transparent 55%),
                linear-gradient(135deg, #0B1220 0%, #101A2E 100%);

            --shadow-sm: 0 4px 12px rgba(11, 18, 32, .06);
            --shadow-md: 0 10px 30px rgba(11, 18, 32, .10);
            --shadow-lg: 0 18px 60px rgba(11, 18, 32, .14);

            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .section-padding {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 70px 0;
            }
        }

        /* Hero Section */
        .section-padding {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-hero);
            color: var(--white);
            overflow: hidden;
        }

        .hero-bg-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: .08;
            background-image:
                radial-gradient(circle at 24px 24px, rgba(138, 197, 225, .9) 2%, transparent 0%),
                radial-gradient(circle at 76px 76px, rgba(133, 161, 198, .9) 2%, transparent 0%);
            background-size: 100px 100px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 50px;
            padding: 8px 20px;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .hero-badge i {
            color: var(--primary-light);
            margin-right: 8px;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hero-feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary-light);
            border: 1px solid rgba(255, 255, 255, 0.10);
        }

        .hero-feature-text h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: white;
        }

        .hero-feature-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Sister Company Banner */
        .sister-company-banner {
            background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
            color: white;
            padding: 25px 0;
            position: relative;
            overflow: hidden;
        }

        .sister-company-banner::before {
            content: '';
            position: absolute;
            width: 240px;
            height: 240px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            top: -120px;
            right: -60px;
        }

        .sister-logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .sister-tag {
            background: rgba(255, 255, 255, 0.18);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Services Section */
        .services-section {
            background: var(--surface);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .service-category {
            margin-bottom: 80px;
        }

        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .category-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(11, 18, 32, 0.06);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: var(--gradient-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--secondary-dark);
            border: 1px solid rgba(11, 18, 32, 0.06);
        }

        .service-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            margin-bottom: 10px;
            color: var(--gray);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .service-features li i {
            color: var(--secondary-dark);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        /* Team Section */
        .team-section {
            background: linear-gradient(135deg, #F6FAFD 0%, #EAF3FA 100%);
        }

        .team-section .section-title {
            color: var(--dark);
        }

        .team-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(11, 18, 32, 0.06);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-img-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 25px;
            border: 5px solid var(--white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .team-role {
            color: var(--secondary-dark);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .team-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            min-height: 60px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .team-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray-light);
            color: var(--secondary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background: var(--gradient-primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Portfolio Section */
        .portfolio-section {
            background: var(--white);
        }

        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .filter-btn {
            background: #EEF5FA;
            border: 1px solid rgba(11, 18, 32, 0.06);
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
        }

        .portfolio-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            border: 1px solid rgba(11, 18, 32, 0.06);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-img img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .portfolio-content {
            padding: 25px;
            background: var(--white);
        }

        .portfolio-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .portfolio-content p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .portfolio-tag {
            display: inline-block;
            background: rgba(138, 197, 225, 0.18);
            color: var(--secondary-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            background: rgba(138, 197, 225, 0.10);
            border-radius: 50%;
            top: -210px;
            right: -210px;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            background: rgba(133, 161, 198, 0.10);
            border-radius: 50%;
            bottom: -160px;
            left: -160px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Stats Section */
        .stats-section {
            background: var(--white);
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: var(--radius-lg);
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 1px solid rgba(11, 18, 32, 0.06);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.75);
            padding: 80px 0 30px;
        }

        .footer-logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
            text-decoration: none;
        }

        .footer-desc {
            margin-bottom: 30px;
            max-width: 300px;
            opacity: 0.85;
        }

        .footer-title {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.78);
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            opacity: 1;
            padding-left: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.10);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--secondary-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 30px;
            margin-top: 60px;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.3rem;
            }

            .cta-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .nav-link {
                margin: 5px 0;
            }

            .hero-features {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .btn-primary,
            .btn-accent {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        }

        /* Navbar container */
        .pro-navbar {
            background: rgba(255, 255, 255, 0.92);
            height: 72px;
            box-shadow: 0 6px 30px rgba(11, 18, 32, 0.06);
            z-index: 999;
        }

        /* Logo */
        .logo {
            height: 45px;
            width: auto;
        }

        .slogan-container {
            height: 24px;
            overflow: hidden;
            position: relative;
            width: 150px;
        }

        .slogan-slider {
            display: flex;
            flex-direction: column;
            animation: slideUp 9s infinite;
        }

        .slogan-item {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: #ffffff;
            height: 24px;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        @keyframes slideUp {

            0%,
            25% {
                transform: translateY(0);
            }

            33%,
            58% {
                transform: translateY(-24px);
            }

            66%,
            91% {
                transform: translateY(-48px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .self-worked-banner {
            background: var(--gradient-soft);
            border: 1px solid rgba(11, 18, 32, 0.10);
            border-radius: var(--radius-lg);
            padding: 25px;
            text-align: center;
            margin-top: 40px;
            box-shadow: var(--shadow-sm);
        }

        .self-worked-banner i {
            font-size: 2.5rem;
            color: var(--secondary-dark);
        }

        .self-worked-banner h4 {
            color: var(--dark);
            font-weight: 800;
        }

        .self-worked-banner p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .team-group-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 35px;
            position: relative;
        }

        .team-group-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            display: block;
            margin: 12px auto 0;
            border-radius: 2px;
        }

        .team-card-highlight {
            border: 2px solid var(--secondary-dark);
            transform: scale(1.05);
        }

        .team-card-lite {
            padding: 22px;
            text-align: center;
            background: linear-gradient(135deg, #f6fafd, #ffffff);
        }