:root {
            --primary: #0A0A0A;
            --accent: #2563EB;
            --accent-light: #3B82F6;
            --accent-glow: rgba(37, 99, 235, 0.15);
            --accent-neon: rgba(37, 99, 235, 0.4);
            --purple: #7C3AED;
            --purple-glow: rgba(124, 58, 237, 0.15);
            --text-secondary: #525252;
            --text-muted: #737373;
            --bg-white: #FFFFFF;
            --bg-light: #FAFAFA;
            --bg-dark: #0F172A;
            --border: #E5E5E5;
            --border-light: rgba(255, 255, 255, 0.1);
            --gradient-1: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
            --gradient-2: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
            --gradient-3: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
            --gradient-mesh: radial-gradient(at 40% 20%, rgba(37, 99, 235, 0.08) 0px, transparent 50%),
                radial-gradient(at 80% 0%, rgba(124, 58, 237, 0.06) 0px, transparent 50%),
                radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.05) 0px, transparent 50%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
            --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
            --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--bg-white);
            color: var(--primary);
            line-height: 1.6;
            overflow-x: hidden
        }

        /* Premium Animation Keyframes */
        @keyframes float {

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

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

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(37, 99, 235, 0.2)
            }

            50% {
                box-shadow: 0 0 40px rgba(37, 99, 235, 0.4)
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center
            }

            100% {
                background-position: 200% center
            }
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }

        @keyframes border-glow {

            0%,
            100% {
                border-color: rgba(37, 99, 235, 0.3)
            }

            50% {
                border-color: rgba(124, 58, 237, 0.5)
            }
        }

        @keyframes scale-in {
            0% {
                transform: scale(0.95);
                opacity: 0
            }

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

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px
        }

        /* Glassmorphism utility */
        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2)
        }

        /* Gradient text utility */
        .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        /* Language Toggle */
        [data-lang="id"] {
            display: none
        }

        html[lang="id"] [data-lang="id"] {
            display: block
        }

        html[lang="id"] [data-lang="en"] {
            display: none
        }

        html[lang="en"] [data-lang="en"] {
            display: block
        }

        html[lang="en"] [data-lang="id"] {
            display: none
        }

        span[data-lang="id"],
        span[data-lang="en"] {
            display: inline !important
        }

        html[lang="id"] span[data-lang="en"] {
            display: none !important
        }

        html[lang="en"] span[data-lang="id"] {
            display: none !important
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(24px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06)
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s
        }

        .logo img {
            height: 36px;
            width: auto;
            transition: all 0.3s ease
        }

        .logo-white {
            display: block
        }

        .logo-black {
            display: none
        }

        .navbar.scrolled .logo-white {
            display: none
        }

        .navbar.scrolled .logo-black {
            display: block
        }

        .nav-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 6px 8px
        }

        .navbar.scrolled .nav-center {
            background: var(--bg-light);
            border-color: var(--border)
        }

        .nav-links {
            display: flex;
            gap: 4px;
            list-style: none
        }

        .nav-links a {
            display: block;
            padding: 10px 20px;
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.25s
        }

        .navbar.scrolled .nav-links a {
            color: var(--text-secondary)
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff
        }

        .navbar.scrolled .nav-links a:hover {
            background: var(--bg-white);
            color: var(--primary);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06)
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            padding: 4px
        }

        .navbar.scrolled .lang-switcher {
            background: var(--bg-light);
            border-color: var(--border)
        }

        .lang-btn {
            padding: 8px 14px;
            border: none;
            background: transparent;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            border-radius: 100px;
            transition: all 0.25s
        }

        .navbar.scrolled .lang-btn {
            color: var(--text-muted)
        }

        .lang-btn.active {
            background: #fff;
            color: var(--primary);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1)
        }

        .navbar.scrolled .lang-btn.active {
            background: var(--primary);
            color: #fff
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #fff;
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.3s
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15)
        }

        .navbar.scrolled .nav-cta {
            background: var(--primary);
            color: #fff
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer
        }

        .navbar.scrolled .mobile-toggle {
            color: var(--primary)
        }

        /* ===== HERO SLIDER ===== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden
        }

        .hero-slider {
            display: flex;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1)
        }

        .hero-slide {
            position: relative;
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(15, 23, 42, 0.7) 100%)
        }

        .hero-slide-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 24px;
            max-width: 900px
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            backdrop-filter: blur(10px)
        }

        .hero-badge i {
            font-size: 1rem;
            color: #60A5FA
        }

        .hero-title {
            font-size: clamp(2.25rem, 5.5vw, 4rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px
        }

        .hero-title .gradient {
            background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #60A5FA 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite
        }

        @keyframes shimmer {

            0%,
            100% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            font-size: 0.9375rem;
            font-weight: 600;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            border: none
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2)
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2)
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4)
        }

        /* Slider Controls */
        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            position: relative
        }

        .slider-dot::before {
            content: attr(data-label);
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none
        }

        .slider-dot:hover::before {
            opacity: 1
        }

        .slider-dot:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.2)
        }

        .slider-dot.active {
            background: #fff;
            border-color: #fff;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.4)
        }

        .slider-arrows {
            position: absolute;
            bottom: 40px;
            right: 40px;
            display: flex;
            gap: 12px;
            z-index: 20
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px)
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1)
        }

        .slider-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none
        }

        .slider-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 20
        }

        .slider-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #60A5FA, #A78BFA);
            transition: width 0.5s ease
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 120px 0;
            position: relative
        }

        .section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-mesh);
            pointer-events: none;
            opacity: 0.5
        }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 1
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 20px;
            padding: 10px 20px;
            background: linear-gradient(135deg, var(--accent-glow) 0%, var(--purple-glow) 100%);
            border-radius: 100px;
            border: 1px solid rgba(37, 99, 235, 0.15)
        }

        .section-label i {
            font-size: 1.125rem;
            animation: float 3s ease-in-out infinite
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, #374151 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .section-desc {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--bg-white)
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center
        }

        .about-content h3 {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 24px
        }

        .about-content>p {
            font-size: 1.0625rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 40px
        }

        .values-list {
            display: flex;
            flex-direction: column;
            gap: 20px
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: var(--bg-light);
            border-radius: 16px;
            transition: all 0.3s
        }

        .value-item:hover {
            background: #F0F4F8;
            transform: translateX(8px)
        }

        .value-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-1);
            border-radius: 12px;
            color: #fff;
            font-size: 1.25rem;
            flex-shrink: 0
        }

        .value-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px
        }

        .value-item span {
            font-size: 0.875rem;
            color: var(--text-muted)
        }

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

        .stat-card {
            background: var(--bg-white);
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden
        }

        .stat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s
        }

        .stat-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s
        }

        .stat-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
            border-color: var(--accent)
        }

        .stat-card:hover::after {
            opacity: 1
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            background-size: 200% 200%;
            animation: gradient-shift 3s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 12px;
            position: relative
        }

        .stat-label {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            font-weight: 600;
            position: relative
        }

        /* ===== ABOUT PREMIUM SECTION ===== */
        .about {
            background:
                /* Light beam effect from top-right */
                radial-gradient(ellipse 80% 50% at 100% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                /* Soft glow from bottom-left */
                radial-gradient(ellipse 60% 40% at 0% 100%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
                /* Center spotlight */
                radial-gradient(ellipse 100% 80% at 50% 20%, rgba(255, 255, 255, 1) 0%, transparent 60%),
                /* Base gradient */
                linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 30%, #F0F4FF 50%, #F8FAFC 70%, #FFFFFF 100%);
            position: relative;
            overflow: hidden
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                /* Animated diagonal light streaks */
                linear-gradient(135deg,
                    transparent 0%,
                    transparent 40%,
                    rgba(255, 255, 255, 0.8) 45%,
                    rgba(255, 255, 255, 0.9) 50%,
                    rgba(255, 255, 255, 0.8) 55%,
                    transparent 60%,
                    transparent 100%);
            background-size: 400% 400%;
            animation: light-sweep 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0
        }

        @keyframes light-sweep {
            0% {
                background-position: 200% 200%
            }

            50% {
                background-position: 0% 0%
            }

            100% {
                background-position: -200% -200%
            }
        }

        .about-header {
            margin-bottom: 60px
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 50%, var(--accent) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 4s ease infinite
        }

        /* Background Decorations */
        .about-bg-decoration {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden
        }

        .about-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.6
        }

        .about-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
            top: -250px;
            right: -150px;
            animation: float 8s ease-in-out infinite
        }

        .about-orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(167, 139, 250, 0.08) 40%, transparent 70%);
            bottom: -200px;
            left: -150px;
            animation: float 10s ease-in-out infinite reverse
        }

        .about-grid-lines {
            position: absolute;
            inset: 0;
            /* Hexagonal pattern effect */
            background-image:
                radial-gradient(circle at 25px 25px, rgba(37, 99, 235, 0.03) 2px, transparent 2px),
                radial-gradient(circle at 75px 75px, rgba(124, 58, 237, 0.02) 2px, transparent 2px),
                /* Subtle grid lines */
                linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px);
            background-size: 100px 100px, 100px 100px, 80px 80px, 80px 80px;
            opacity: 0.8
        }

        /* Animated particles */
        .about-bg-decoration::before,
        .about-bg-decoration::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(124, 58, 237, 0.4));
            box-shadow:
                120px 80px 0 rgba(37, 99, 235, 0.15),
                240px 160px 0 rgba(124, 58, 237, 0.12),
                400px 100px 0 rgba(37, 99, 235, 0.1),
                560px 200px 0 rgba(124, 58, 237, 0.15),
                720px 60px 0 rgba(37, 99, 235, 0.12),
                80px 250px 0 rgba(124, 58, 237, 0.1),
                300px 320px 0 rgba(37, 99, 235, 0.15),
                500px 280px 0 rgba(124, 58, 237, 0.12),
                180px 400px 0 rgba(37, 99, 235, 0.1),
                650px 380px 0 rgba(124, 58, 237, 0.15);
            animation: particle-float 12s ease-in-out infinite
        }

        .about-bg-decoration::after {
            top: 50%;
            left: 30%;
            animation-delay: -6s;
            box-shadow:
                100px 40px 0 rgba(124, 58, 237, 0.15),
                280px 120px 0 rgba(37, 99, 235, 0.12),
                450px 80px 0 rgba(124, 58, 237, 0.1),
                600px 180px 0 rgba(37, 99, 235, 0.15),
                50px 220px 0 rgba(124, 58, 237, 0.12),
                350px 280px 0 rgba(37, 99, 235, 0.1)
        }

        @keyframes particle-float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.6
            }

            25% {
                transform: translateY(-15px) rotate(90deg);
                opacity: 0.8
            }

            50% {
                transform: translateY(-5px) rotate(180deg);
                opacity: 0.5
            }

            75% {
                transform: translateY(-20px) rotate(270deg);
                opacity: 0.9
            }
        }

        /* Value Cards Premium */
        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1
        }

        .value-card-premium {
            position: relative;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 32px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden
        }

        .value-card-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s
        }

        .value-card-premium:hover .value-card-glow {
            opacity: 1
        }

        .value-card-premium:hover {
            transform: translateY(-12px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(37, 99, 235, 0.1),
                0 0 40px rgba(37, 99, 235, 0.1);
            border-color: rgba(37, 99, 235, 0.2)
        }

        .value-card-inner {
            position: relative;
            z-index: 1
        }

        .value-icon-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            margin-bottom: 24px
        }

        .value-icon-ring {
            position: absolute;
            inset: 0;
            border-radius: 20px;
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                var(--gradient-1) border-box;
            opacity: 0.3;
            transition: all 0.4s
        }

        .value-card-premium:hover .value-icon-ring {
            opacity: 1;
            transform: scale(1.1);
            animation: border-glow 2s ease-in-out infinite
        }

        .value-icon-premium {
            position: absolute;
            inset: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-glow) 0%, var(--purple-glow) 100%);
            border-radius: 16px;
            font-size: 2rem;
            color: var(--accent);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .value-card-premium:hover .value-icon-premium {
            background: var(--gradient-1);
            color: #fff;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3)
        }

        .value-card-premium h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary);
            transition: color 0.3s
        }

        .value-card-premium:hover h4 {
            color: var(--accent)
        }

        .value-card-premium p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.7
        }

        /* Stats Premium */
        .about-stats-wrapper {
            position: relative;
            z-index: 1
        }

        .stats-glass-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 60px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow:
                0 10px 40px rgba(0, 0, 0, 0.05),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden
        }

        .stats-glass-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent)
        }

        .stat-item-premium {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 40px;
            transition: all 0.3s
        }

        .stat-item-premium:hover {
            transform: translateY(-4px)
        }

        .stat-item-premium .stat-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-glow) 0%, var(--purple-glow) 100%);
            border-radius: 14px;
            font-size: 1.5rem;
            color: var(--accent);
            transition: all 0.4s
        }

        .stat-item-premium:hover .stat-icon {
            background: var(--gradient-1);
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3)
        }

        .stat-content {
            text-align: left
        }

        .stat-number-premium {
            font-size: 2.25rem;
            font-weight: 800;
            background: var(--gradient-1);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            animation: gradient-shift 3s ease infinite
        }

        .stat-label-premium {
            font-size: 0.875rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 4px
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: linear-gradient(180deg, transparent, var(--border), transparent)
        }

        /* About Section Responsive */
        @media (max-width: 1024px) {
            .about-values-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px
            }

            .stat-item-premium {
                padding: 16px 24px
            }

            .stats-glass-container {
                padding: 32px 40px
            }
        }

        @media (max-width: 768px) {
            .about-values-grid {
                grid-template-columns: 1fr;
                gap: 20px
            }

            .value-card-premium {
                padding: 32px 24px
            }

            .stats-glass-container {
                flex-direction: column;
                padding: 32px 24px;
                gap: 0
            }

            .stat-item-premium {
                width: 100%;
                padding: 20px 0;
                justify-content: flex-start
            }

            .stat-divider {
                width: 80%;
                height: 1px;
                background: linear-gradient(90deg, transparent, var(--border), transparent)
            }

            .about-orb-1,
            .about-orb-2 {
                width: 300px;
                height: 300px
            }
        }

        @media (max-width: 480px) {
            .value-icon-wrapper {
                width: 64px;
                height: 64px
            }

            .value-icon-premium {
                font-size: 1.5rem
            }

            .value-card-premium h4 {
                font-size: 1.125rem
            }

            .stat-number-premium {
                font-size: 1.875rem
            }

            .stat-item-premium .stat-icon {
                width: 48px;
                height: 48px;
                font-size: 1.25rem
            }
        }


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

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1
        }

        .service-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 48px 40px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: -1px;
            background: var(--gradient-1);
            border-radius: 24px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s
        }

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

        .service-card:hover::after {
            opacity: 1
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
            border-color: transparent;
            background: rgba(255, 255, 255, 0.95)
        }

        .service-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-glow) 0%, var(--purple-glow) 100%);
            border: 1px solid rgba(37, 99, 235, 0.1);
            border-radius: 20px;
            margin-bottom: 28px;
            font-size: 2rem;
            color: var(--accent);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .service-card:hover .service-icon {
            background: var(--gradient-1);
            color: #fff;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
            animation: float 2s ease-in-out infinite
        }

        .service-card h3 {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 12px;
            transition: color 0.3s
        }

        .service-card:hover h3 {
            color: var(--accent)
        }

        .service-card p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.7
        }

        /* ===== WHY CHOOSE ===== */
        .why-choose {
            background: var(--bg-white)
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
            z-index: 1
        }

        .feature-card {
            text-align: center;
            padding: 48px 32px;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 50%, var(--purple-glow) 100%);
            opacity: 0;
            transition: opacity 0.4s
        }

        .feature-card:hover::before {
            opacity: 1
        }

        .feature-card:hover {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-glow), var(--shadow-xl);
            transform: translateY(-12px)
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-1);
            background-size: 200% 200%;
            border-radius: 50%;
            margin: 0 auto 24px;
            font-size: 2rem;
            color: #fff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0;
            filter: blur(10px);
            z-index: -1;
            transition: opacity 0.4s
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(10deg);
            animation: gradient-shift 2s ease infinite;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4)
        }

        .feature-card:hover .feature-icon::after {
            opacity: 0.6
        }

        .feature-card h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 12px
        }

        .feature-card p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6
        }

        /* ===== PORTFOLIO ===== */
        .portfolio {
            background: var(--bg-light)
        }

        .portfolio-wrapper {
            position: relative
        }

        .portfolio-track {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 0 12px 24px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none
        }

        .portfolio-track::-webkit-scrollbar {
            display: none
        }

        .portfolio-card {
            flex: 0 0 300px;
            scroll-snap-align: start;
            background: var(--bg-white);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .portfolio-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
            border-color: var(--accent)
        }

        .portfolio-image {
            height: 180px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden;
            transition: all 0.4s
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.4s
        }

        .portfolio-card:hover .portfolio-image::before {
            opacity: 1
        }

        .portfolio-image i {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .portfolio-card:hover .portfolio-image i {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3))
        }

        .portfolio-content {
            padding: 24px;
            position: relative
        }

        .portfolio-category {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            display: inline-block;
            padding: 4px 10px;
            background: var(--accent-glow);
            border-radius: 100px
        }

        .portfolio-content h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 8px;
            transition: color 0.3s
        }

        .portfolio-card:hover .portfolio-content h3 {
            color: var(--accent)
        }

        .portfolio-content p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.6
        }

        .portfolio-nav {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px
        }

        .portfolio-nav-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--bg-white);
            border: 1px solid var(--border);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.25rem
        }

        .portfolio-nav-btn:hover {
            background: var(--gradient-1);
            border-color: transparent;
            color: #fff;
            transform: scale(1.1);
            box-shadow: var(--shadow-glow)
        }

        .portfolio-nav-btn:active {
            transform: scale(0.95)
        }

        .portfolio-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none
        }

        /* ===== CLIENTS ===== */
        .clients {
            background: var(--bg-white)
        }

        .clients-wrapper {
            position: relative;
            overflow: hidden
        }

        .clients-track {
            display: flex;
            gap: 32px;
            align-items: center;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 24px 12px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none
        }

        .clients-track::-webkit-scrollbar {
            display: none
        }

        .client-logo {
            flex: 0 0 180px;
            height: 100px;
            scroll-snap-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-white);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 20px 24px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative
        }

        .client-logo::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 20px;
            background: var(--gradient-1);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s
        }

        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: translateY(-8px) scale(1.05);
            border-color: transparent;
            box-shadow: var(--shadow-xl), var(--shadow-glow)
        }

        .client-logo:hover::before {
            opacity: 1
        }

        .client-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.4s
        }

        .client-logo:hover img {
            transform: scale(1.05)
        }

        .clients-nav {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px
        }

        .clients-nav-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--bg-white);
            border: 1px solid var(--border);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.25rem
        }

        .clients-nav-btn:hover {
            background: var(--gradient-1);
            border-color: transparent;
            color: #fff;
            transform: scale(1.1);
            box-shadow: var(--shadow-glow)
        }

        .clients-nav-btn:active {
            transform: scale(0.95)
        }

        /* ===== CONTACT ===== */
        .contact {
            background: var(--bg-white);
            position: relative
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: var(--gradient-mesh);
            opacity: 0.5
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 80px;
            position: relative;
            z-index: 1
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .contact-info>p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 48px
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 28px;
            padding: 16px;
            border-radius: 16px;
            transition: all 0.3s
        }

        .contact-item:hover {
            background: var(--bg-light);
            transform: translateX(8px)
        }

        .contact-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-glow) 0%, var(--purple-glow) 100%);
            border: 1px solid rgba(37, 99, 235, 0.1);
            border-radius: 16px;
            font-size: 1.25rem;
            color: var(--accent);
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .contact-item:hover .contact-icon {
            background: var(--gradient-1);
            color: #fff;
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-glow)
        }

        .contact-item h4 {
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 4px
        }

        .contact-item p {
            font-size: 0.9375rem;
            color: var(--text-secondary)
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 56px;
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: var(--shadow-xl)
        }

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

        .form-group {
            margin-bottom: 24px
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary)
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            font-size: 1rem;
            font-family: inherit;
            border: 2px solid var(--border);
            border-radius: 14px;
            background: var(--bg-white);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px var(--accent-glow), var(--shadow-md)
        }

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

        .btn-submit {
            width: 100%;
            padding: 20px;
            font-size: 1rem;
            font-weight: 600;
            background: var(--gradient-1);
            background-size: 200% 200%;
            color: #fff;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s
        }

        .btn-submit:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
            animation: gradient-shift 2s ease infinite
        }

        .btn-submit:hover::before {
            left: 100%
        }

        .btn-submit:active {
            transform: translateY(-2px)
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary);
            color: #fff;
            padding: 100px 0 48px
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 64px;
            margin-bottom: 80px
        }

        .footer-brand .footer-logo {
            display: inline-block;
            margin-bottom: 20px
        }

        .footer-brand .footer-logo img {
            height: 40px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: all 0.3s
        }

        .footer-brand .footer-logo:hover img {
            opacity: 0.8;
            transform: scale(1.02)
        }

        .footer-brand p {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 28px
        }

        .social-links {
            display: flex;
            gap: 12px
        }

        .social-link {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            font-size: 1.125rem;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-4px)
        }

        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 28px
        }

        .footer-links ul {
            list-style: none
        }

        .footer-links li {
            margin-bottom: 14px
        }

        .footer-links a {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s
        }

        .footer-links a:hover {
            color: #fff
        }

        .footer-bottom {
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .footer-bottom p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5)
        }

        /* ===== IDEAS CAROUSEL ===== */
        .ideas {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff;
            position: relative;
            overflow: hidden
        }

        .ideas::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('assets/images/hero_bg.jpg') center/cover;
            opacity: 0.1
        }

        .ideas .section-header {
            position: relative;
            z-index: 2
        }

        .ideas .section-label {
            color: #60A5FA
        }

        .ideas .section-title {
            color: #fff
        }

        .ideas .section-desc {
            color: rgba(255, 255, 255, 0.7)
        }

        .ideas-wrapper {
            position: relative;
            z-index: 2
        }

        .ideas-track {
            display: flex;
            gap: 32px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 0 24px 24px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none
        }

        .ideas-track::-webkit-scrollbar {
            display: none
        }

        .idea-card {
            flex: 0 0 380px;
            scroll-snap-align: start;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s
        }

        .idea-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-8px)
        }

        .idea-image {
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden
        }

        .idea-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.4s
        }

        .idea-card:hover .idea-image::before {
            opacity: 1
        }

        .idea-image i {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
        }

        .idea-card:hover .idea-image i {
            transform: scale(1.2) rotate(10deg);
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3))
        }

        .idea-content {
            padding: 32px
        }

        .idea-era {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #60A5FA;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px
        }

        .idea-era i {
            font-size: 1rem
        }

        .idea-title {
            font-size: 1.375rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
            color: #fff
        }

        .idea-desc {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 24px
        }

        .idea-quote {
            padding-left: 16px;
            border-left: 2px solid #60A5FA;
            font-style: italic;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6
        }

        .idea-insight {
            margin-top: 24px;
            padding: 16px;
            background: rgba(96, 165, 250, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(96, 165, 250, 0.2)
        }

        .idea-insight-label {
            font-size: 0.6875rem;
            font-weight: 600;
            color: #60A5FA;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px
        }

        .idea-insight-label i {
            font-size: 0.875rem
        }

        .idea-insight p {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6
        }

        .ideas-nav {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px
        }

        .ideas-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s
        }

        .ideas-nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4)
        }

        .ideas-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .nav-center {
                display: none
            }

            .mobile-toggle {
                display: block
            }

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

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

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

            .portfolio-card {
                flex: 0 0 280px
            }

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

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 48px
            }

            .slider-arrows {
                right: 20px;
                bottom: 100px
            }
        }

        @media(max-width:768px) {
            .section {
                padding: 80px 0
            }

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

            .hero-title {
                font-size: clamp(1.75rem, 5vw, 2.5rem)
            }

            .hero-subtitle {
                font-size: 1rem
            }

            .hero-cta {
                flex-direction: column;
                align-items: center
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center
            }

            .services-grid,
            .features-grid {
                grid-template-columns: 1fr
            }

            .portfolio-card {
                flex: 0 0 260px
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr
            }

            .stat-card {
                padding: 28px
            }

            .stat-number {
                font-size: 2.5rem
            }

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

            .contact-form {
                padding: 32px 24px
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center
            }

            .social-links {
                justify-content: center
            }

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

            .slider-arrows {
                display: none
            }

            .slider-dots {
                bottom: 24px
            }
        }

/* ===== WHATSAPP SHARE BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5)
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 2s infinite
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6) }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.4 }
    50% { transform: scale(1.2); opacity: 0 }
    100% { transform: scale(1); opacity: 0 }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.75rem
    }
}
