        /* --- RESET & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* RE-NFT Inspired Palette (Dark Mode) */
            --bg-body: #090812;
            /* Hampir hitam, sedikit ungu */
            --bg-card: #141423;
            /* Warna kartu gelap */
            --bg-card-hover: #1c1c2e;
            /* Warna kartu saat di-hover */

            --primary: #7040f2;
            /* Ungu ReNFT */
            --primary-glow: rgba(112, 64, 242, 0.5);

            --accent: #00d4ff;
            /* Cyan Neon */
            --gradient-main: linear-gradient(135deg, #7040f2 0%, #a030ff 100%);

            --text-white: #ffffff;
            --text-gray: #a1a1aa;
            /* Abu-abu terang untuk deskripsi */

            --nav-height: 80px;
            --border-color: rgba(255, 255, 255, 0.08);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-white);
            background-color: var(--bg-body);
            background-image:
                radial-gradient(circle at 15% 50%, rgba(112, 64, 242, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 50% 80%, rgba(160, 48, 255, 0.1) 0%, transparent 30%);
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Gradient Orbs */
        body::before,
        body::after {
            content: '';
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            animation: floatGradient 15s ease-in-out infinite;
        }

        body::before {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(112, 64, 242, 0.3) 0%, transparent 70%);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        body::after {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
            bottom: 20%;
            right: -5%;
            animation-delay: -7s;
        }

        @keyframes floatGradient {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(50px, 30px) scale(1.1);
            }

            50% {
                transform: translate(20px, -40px) scale(0.9);
            }

            75% {
                transform: translate(-30px, 20px) scale(1.05);
            }
        }

        /* --- LOADING SCREEN --- */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-body);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

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

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            width: 120px;
            height: 120px;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .loader-text {
            margin-top: 1rem;
            font-family: 'Oxanium', sans-serif;
            font-size: 1.2rem;
            color: var(--text-gray);
            animation: fadeInOut 1.5s ease-in-out infinite;
        }

        .loader-bar {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            margin: 1.5rem auto 0;
            overflow: hidden;
        }

        .loader-bar::after {
            content: '';
            display: block;
            width: 40%;
            height: 100%;
            background: var(--gradient-main);
            border-radius: 3px;
            animation: loading 1.2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        @keyframes fadeInOut {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes loading {
            0% {
                transform: translateX(-100%);
            }

            50% {
                transform: translateX(150%);
            }

            100% {
                transform: translateX(400%);
            }
        }

        /* --- SCROLL REVEAL ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered delays for grid items */
        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }


        /* --- UTILITIES & LAYOUT --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .text-center {
            text-align: center;
        }

        /* Typography */
        h1,
        h2,
        h3 {
            font-family: 'Oxanium', sans-serif;
            /* Font gaya Tech/NFT */
            color: var(--text-white);
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-gray);
            font-size: 1.05rem;
        }

        .accent-text {
            background: linear-gradient(to right, #00d4ff, #7040f2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }

        .section-header {
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle {
            font-size: 1.15rem;
        }

        /* Buttons (NFT Style) */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            gap: 0.5rem;
            position: relative;
            z-index: 1;
            overflow: hidden;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: var(--text-white);
            box-shadow: 0 4px 15px rgba(112, 64, 242, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #a030ff 0%, #7040f2 100%);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(112, 64, 242, 0.6);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-secondary {
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--primary);
            color: var(--text-white);
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
        }

        /* --- NAVBAR --- */
        .navbar {
            height: var(--nav-height);
            background-color: rgba(9, 8, 18, 0.85);
            /* Transparent Dark */
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-family: 'Oxanium', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            color: var(--primary);
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:not(.btn-nav):hover {
            color: var(--text-white);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .btn-nav {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-white) !important;
            padding: 0.6rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
        }

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

        /* --- HERO SECTION --- */
        .hero {
            padding-top: calc(var(--nav-height) + 60px);
            padding-bottom: 100px;
            position: relative;
            overflow: hidden;
        }

        /* Glow effect behind hero image */
        .hero-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(112, 64, 242, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
            right: 10%;
            top: 20%;
            z-index: -1;
            filter: blur(50px);
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(112, 64, 242, 0.15);
            color: #d8b4fe;
            /* Light Purple */
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(112, 64, 242, 0.3);
        }

        .hero-btns {
            margin-top: 2.5rem;
            display: flex;
            gap: 1rem;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-image-card {
            width: 100%;
            max-width: 450px;
            /* aspect-ratio: 1/1; Removed to allow natural image proportions */
            /* background: linear-gradient(145deg, #1e1e2f, #141423); Removed background */
            border-radius: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
            overflow: visible;
            /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); Removed box-shadow */
            /* border: 1px solid rgba(255, 255, 255, 0.1); Removed border */
        }

        .hero-image-card img {
            width: 100%;
            height: auto;
            object-fit: contain;
            opacity: 0.9;
        }

        /* Floating elements */
        .floating-card {
            position: absolute;
            background: rgba(20, 20, 35, 0.9);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-white);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            animation: float 6s ease-in-out infinite;
        }

        .float-1 {
            top: 10%;
            left: -20px;
            animation-delay: 0s;
        }

        .float-2 {
            bottom: 15%;
            right: -20px;
            animation-delay: 2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

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

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

        /* --- ABOUT SECTION --- */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .about-card:hover {
            transform: translateY(-10px);
            background: var(--bg-card-hover);
            border-color: var(--primary);
            box-shadow: 0 10px 40px rgba(112, 64, 242, 0.15);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(112, 64, 242, 0.2), rgba(0, 212, 255, 0.1));
            color: var(--accent);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* --- PORTFOLIO SECTION --- */
        /* --- PORTFOLIO CAROUSEL --- */
        .portfolio-wrapper {
            position: relative;
            padding: 0 50px;
        }

        .portfolio-grid {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 1rem 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox */
        }

        .portfolio-grid::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari */
        }

        .portfolio-item {
            flex: 0 0 calc(33.333% - 1.33rem);
            min-width: 320px;
            scroll-snap-align: start;
        }

        .portfolio-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .portfolio-nav:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .portfolio-nav.prev {
            left: 0;
        }

        .portfolio-nav.next {
            right: 0;
        }

        .portfolio-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .portfolio-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .portfolio-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .portfolio-item {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(112, 64, 242, 0.2);
        }

        .portfolio-thumb {
            height: 240px;
            background-color: #0f0f15;
            overflow: hidden;
            position: relative;
        }

        .portfolio-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 0.9;
        }

        .portfolio-item:hover .portfolio-thumb img {
            transform: scale(1.05);
            opacity: 1;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(9, 8, 18, 0.7);
            backdrop-filter: blur(3px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .portfolio-info {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: auto;
        }

        .tech-badge {
            font-size: 0.75rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            color: #d1d5db;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* --- SKILLS SECTION --- */
        .skills-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .skill-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--bg-card);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            color: var(--text-white);
            border: 1px solid var(--border-color);
        }

        .skill-item i {
            color: var(--primary);
        }

        /* --- CONTACT SECTION --- */
        .contact-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #161625 100%);
            border-radius: 30px;
            padding: 4rem 2rem;
            color: var(--text-white);
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            border: 1px solid rgba(112, 64, 242, 0.3);
            box-shadow: 0 0 50px rgba(112, 64, 242, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Decor shape inside contact */
        .contact-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .contact-card>* {
            position: relative;
            z-index: 1;
        }

        .contact-card h2 {
            margin-bottom: 1rem;
        }

        .contact-card p {
            color: #d1d5db;
            margin-bottom: 2.5rem;
        }

        .btn-white {
            background: var(--text-white);
            color: var(--primary);
        }

        .btn-white:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }

        .btn-outline-white {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: var(--text-white);
        }

        .btn-outline-white:hover {
            border-color: var(--text-white);
            background: rgba(255, 255, 255, 0.05);
        }

        /* --- MOBILE MENU --- */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-white);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: rgba(9, 8, 18, 0.98);
            backdrop-filter: blur(20px);
            padding: 2rem;
            z-index: 999;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }

        .mobile-nav a {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--text-white);
        }

        /* --- STATISTICS SECTION --- */
        .stats-section {
            padding: 60px 0;
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Oxanium', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
        }

        /* --- SERVICES SECTION --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(112, 64, 242, 0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(112, 64, 242, 0.2), rgba(0, 212, 255, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--accent);
        }

        /* --- TESTIMONIALS SECTION --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Oxanium', sans-serif;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            padding-top: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-white);
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        /* --- PRICING SECTION --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(112, 64, 242, 0.2);
        }

        .pricing-badge {
            background: var(--gradient-main);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .pricing-name {
            font-family: 'Oxanium', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-family: 'Oxanium', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
            flex: 1;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-features li i {
            color: var(--accent);
        }

        /* --- FAQ SECTION --- */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-white);
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: var(--bg-card-hover);
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary);
        }

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

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.25rem;
            max-height: 200px;
        }

        /* --- SOCIAL LINKS --- */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--text-white);
            transform: translateY(-3px);
        }

        /* --- FOOTER --- */
        footer {
            padding: 3rem 0;
            background: linear-gradient(180deg, #0a0a12 0%, #141423 50%, #1a1a2e 100%);
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            margin-top: 4rem;
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

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

            .hero-badge {
                margin: 0 auto 1.5rem auto;
            }

            .hero-image-wrapper {
                order: -1;
            }

            .hero-glow {
                right: 50%;
                transform: translateX(50%);
                top: 10%;
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo {
                font-size: 1.3rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .contact-card {
                padding: 3rem 1.5rem;
                border-radius: 20px;
            }

            .btn-large {
                width: 100%;
            }

            .section-padding {
                padding: 60px 0;
            }

            /* Statistics responsive */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            /* Pricing responsive */
            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-grid {
                gap: 1.5rem;
            }
        }
