        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #ec4899;
            --accent: #8b5cf6;
            --success: #10b981;
            --warning: #f59e0b;

            --bg-primary: #f8fafc;
            --bg-secondary: #ffffff;
            --bg-tertiary: #f1f5f9;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.4);
            --border-color: rgba(226, 232, 240, 0.8);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 100px;
        }

        [data-theme="dark"] {
            --bg-primary: #020617;
            --bg-secondary: #0f172a;
            --bg-tertiary: #1e293b;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --glass-bg: rgba(15, 23, 42, 0.7);
            --glass-border: rgba(255, 255, 255, 0.05);
            --border-color: rgba(51, 65, 85, 0.8);
        }

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

        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* ANIMATED BACKGROUND */
        .mesh-gradient {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        [data-theme="dark"] .mesh-gradient {
            background:
                radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }

        [data-theme="light"] .mesh-gradient {
            background:
                radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
        }

        .floating-shapes {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: float 20s infinite ease-in-out;
        }

        [data-theme="dark"] .shape {
            opacity: 0.4;
        }

        [data-theme="light"] .shape {
            opacity: 0.3;
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            top: -250px;
            left: -250px;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #ec4899, #f43f5e);
            bottom: -200px;
            right: -200px;
            animation-delay: 5s;
        }

        .shape-3 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #8b5cf6, #6366f1);
            top: 50%;
            right: 10%;
            animation-delay: 10s;
        }

        @keyframes float {

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

            33% {
                transform: translate(30px, -30px) scale(1.1);
            }

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

        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            backdrop-filter: blur(20px);
            background: var(--glass-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow-lg);
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-pig {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .navbar-pig {
            transform: rotate(10deg) scale(1.1);
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--text-primary) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* THEME TOGGLE BUTTON */
        .theme-switch {
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            color: var(--text-secondary);
            transition: all 0.3s ease;
            margin-left: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-switch:hover {
            background: rgba(99, 102, 241, 0.1);
            color: var(--primary);
            transform: rotate(15deg);
        }

        /* CUSTOM BURGER BUTTON */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 2000;
        }

        .burger-bar {
            width: 100%;
            height: 3px;
            background: var(--text-primary);
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .menu-toggle.active .burger-bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.active .burger-bar:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .menu-toggle.active .burger-bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* MOBILE MENU OVERLAY */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--glass-bg);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            z-index: 1500;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-content {
            width: 100%;
            max-width: 400px;
            padding: 40px;
            text-align: center;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            transition-delay: 0.2s;
        }

        .mobile-menu-overlay.active .mobile-menu-content {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
        }

        .mobile-nav-item {
            margin-bottom: 25px;
            overflow: hidden;
        }

        .mobile-nav-item a {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            transform: translateY(100%);
            opacity: 0;
        }

        .mobile-menu-overlay.active .mobile-nav-item a {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-nav-item:nth-child(1) a {
            transition-delay: 0.3s;
        }

        .mobile-nav-item:nth-child(2) a {
            transition-delay: 0.4s;
        }

        .mobile-nav-item:nth-child(3) a {
            transition-delay: 0.5s;
        }

        .mobile-nav-item:nth-child(4) a {
            transition-delay: 0.6s;
        }

        .mobile-nav-item a:hover {
            color: var(--primary);
            transform: translateX(10px);
        }

        .mobile-menu-footer {
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: center;
            opacity: 0;
            transition: all 0.5s ease;
            transition-delay: 0.7s;
        }

        .mobile-menu-overlay.active .mobile-menu-footer {
            opacity: 1;
        }

        .theme-switch-mobile {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            padding: 12px 25px;
            border-radius: 50px;
            color: var(--text-primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .theme-switch-mobile:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        @media (max-width: 991px) {
            .menu-toggle {
                display: flex;
            }
        }

        /* ============================================
           BUTTONS & UTILS
           ============================================ */
        .btn-primary-custom {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            color: white !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
        }

        .btn-outline-custom {
            border: 2px solid var(--border-color);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--text-primary);
            transition: all 0.3s ease;
            background: transparent;
            display: inline-block;
            text-decoration: none;
        }

        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding: 160px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            border-left: 3px solid var(--secondary);
            padding-left: 15px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
        }

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

        /* HERO IMAGE & ANIMATIONS */
        .hero-pig-container {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .hero-pig {
            width: 100%;
            height: auto;
            animation: heroFloat 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.2));
        }

        @keyframes heroFloat {

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

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

        .floating-coins {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .coin {
            position: absolute;
            font-size: 2.5rem;
            animation: floatCoin 4s ease-in-out infinite;
            opacity: 0.9;
        }

        .coin:nth-child(1) {
            top: 10%;
            left: 0;
            animation-delay: 0s;
        }

        .coin:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 1.5s;
        }

        .coin:nth-child(3) {
            bottom: 20%;
            left: 10%;
            animation-delay: 2.5s;
        }

        @keyframes floatCoin {

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

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

        /* ============================================
           SECTIONS
           ============================================ */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Video */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            background: #000;
        }

        .video-wrapper iframe,
        .video-wrapper .placeholder-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: opacity 0.3s;
        }

        .play-btn {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 30px;
            padding-left: 5px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        /* Features */
        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            padding: 40px 30px;
            border-radius: 24px;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            position: relative;
            z-index: 1;
        }

        /* ============================================
           BLOG SECTION
           ============================================ */
        .blog-section {
            background: var(--bg-secondary);
            position: relative;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(99, 102, 241, 0.5);
        }

        .blog-card-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            backdrop-filter: blur(10px);
        }

        [data-theme="dark"] .blog-card-badge {
            background: rgba(15, 23, 42, 0.95);
            color: var(--text-primary);
        }

        .blog-card-content {
            padding: 1.75rem;
        }

        .blog-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
            color: var(--text-primary);
        }

        .blog-card-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .blog-card-meta {
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-card-arrow {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-card-arrow {
            transform: translateX(5px);
        }

        .blog-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 24px;
            padding: 80px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotateCta 20s linear infinite;
        }

        @keyframes rotateCta {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-white-custom {
            background: white;
            color: var(--primary);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-white-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--primary);
        }

        /* Footer */
        .footer {
            padding: 80px 0 30px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            margin-top: 100px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            margin-bottom: 20px;
            display: block;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            margin-bottom: 12px;
            display: block;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .social-links a {
            color: var(--text-secondary);
            transition: color 0.2s, transform 0.2s;
            display: inline-block;
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* Mobile fixes */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--bg-secondary);
                padding: 20px;
                border-radius: 15px;
                margin-top: 10px;
                border: 1px solid var(--border-color);
                box-shadow: var(--shadow-lg);
            }

            .hero {
                padding-top: 120px;
                text-align: center;
            }

            .hero-badge {
                margin: 0 auto 25px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                margin: 0 auto 30px;
            }

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

            .hero-pig-container {
                margin-top: 50px;
            }

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

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2rem;
            }
        }

        /* ============================================
           FLOATING CONTACT WIDGET (TELEGRAM & PHONE)
           ============================================ */
        .contact-fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1000;
        }

        .contact-fab:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
        }

        .contact-fab.active {
            transform: scale(0.9) rotate(-45deg);
        }

        .contact-card {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            z-index: 1000;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-card.show {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: all;
        }

        .contact-card-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 20px;
        }

        .contact-card-header h5 {
            margin: 0;
            font-weight: 700;
        }

        .contact-card-body {
            padding: 20px;
        }

        .contact-phone-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--bg-tertiary);
            border-radius: 16px;
            margin-bottom: 20px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .contact-phone-item:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--primary);
            transform: translateX(5px);
            color: var(--primary) !important;
        }

        .contact-phone-icon {
            width: 44px;
            height: 44px;
            background: #25d366;
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .contact-phone-details span {
            display: block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
            margin-bottom: 2px;
        }

        .contact-phone-details strong {
            font-size: 16px;
            font-weight: 800;
            color: var(--text-primary);
        }

        .contact-divider {
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--text-secondary);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .contact-divider::before,
        .contact-divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-divider:not(:empty)::before {
            margin-right: 1em;
        }

        .contact-divider:not(:empty)::after {
            margin-left: 1em;
        }

        .contact-card-body .form-control,
        .contact-card-body .form-select {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 12px;
            padding: 10px 15px;
        }

        .contact-card-body .form-control:focus,
        .contact-card-body .form-select:focus {
            background: var(--bg-secondary);
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        [data-theme="dark"] .contact-card {
            background: rgba(30, 41, 59, 0.8) !important;
            border-color: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

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

            .cta-section {
                padding: 60px 20px;
            }
        }

        /* BUTTONS */
        .btn-primary-custom {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            color: white !important;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
        }

        .btn-outline-custom {
            border: 2px solid var(--border-color);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--text-primary);
            transition: all 0.3s ease;
            background: transparent;
            display: inline-block;
            text-decoration: none;
        }

        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* 3D FLOATING FINANCE ICONS */
        .hero {
            padding: 160px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            border-left: 3px solid var(--secondary);
            padding-left: 15px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-primary);
        }

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

        /* 3D FINANCE SPHERE */
        .finance-sphere-container {
            position: relative;
            height: 550px;
            perspective: 1200px;
            margin: 0 auto;
            max-width: 600px;
        }

        .sphere-core {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            margin-left: -100px;
            margin-top: -100px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
            border-radius: 50%;
            filter: blur(30px);
            animation: pulseCore 4s ease-in-out infinite;
        }

        @keyframes pulseCore {

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

            50% {
                transform: scale(1.3);
                opacity: 0.9;
            }
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform-style: preserve-3d;
            animation: rotateRing 20s linear infinite;
        }

        .orbit-ring-1 {
            width: 400px;
            height: 400px;
            margin-left: -200px;
            margin-top: -200px;
        }

        .orbit-ring-2 {
            width: 500px;
            height: 500px;
            margin-left: -250px;
            margin-top: -250px;
            animation: rotateRing 25s linear infinite reverse;
        }

        .orbit-ring-3 {
            width: 300px;
            height: 300px;
            margin-left: -150px;
            margin-top: -150px;
            animation: rotateRing 15s linear infinite;
        }

        @keyframes rotateRing {
            from {
                transform: rotateY(0deg) rotateX(20deg);
            }

            to {
                transform: rotateY(360deg) rotateX(20deg);
            }
        }

        .finance-icon {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
            transition: all 0.4s ease;
            cursor: pointer;
            animation: floatIcon 3s ease-in-out infinite;
        }

        .finance-icon:hover {
            transform: scale(1.2) translateZ(50px) !important;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.7);
        }

        @keyframes floatIcon {

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

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

        .icon-1 {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            top: 0;
            left: 50%;
            margin-left: -40px;
            animation-delay: 0s;
        }

        .icon-2 {
            background: linear-gradient(135deg, #ec4899, #f43f5e);
            top: 50%;
            right: 0;
            margin-top: -40px;
            animation-delay: 0.5s;
        }

        .icon-3 {
            background: linear-gradient(135deg, #10b981, #059669);
            bottom: 0;
            left: 50%;
            margin-left: -40px;
            animation-delay: 1s;
        }

        .icon-4 {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            top: 50%;
            left: 0;
            margin-top: -40px;
            animation-delay: 1.5s;
        }

        .icon-5 {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            top: 25%;
            right: 25%;
            animation-delay: 2s;
        }

        .icon-6 {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            bottom: 25%;
            left: 25%;
            animation-delay: 2.5s;
        }

        /* Central Piggy Bank */
        .central-piggy {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120px;
            height: 120px;
            margin-left: -60px;
            margin-top: -60px;
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(99, 102, 241, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            animation: floatPiggy 4s ease-in-out infinite;
            z-index: 10;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(99, 102, 241, 0.3);
        }

        @keyframes floatPiggy {

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

            50% {
                transform: translateY(-20px) scale(1.1);
            }
        }

        /* SECTIONS */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* FEATURES */
        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            padding: 40px 30px;
            border-radius: 24px;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            position: relative;
            z-index: 1;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 24px;
            padding: 80px 40px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotateCta 20s linear infinite;
        }

        @keyframes rotateCta {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn-white-custom {
            background: white;
            color: var(--primary);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-white-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--primary);
        }

        /* FOOTER */
        .footer {
            padding: 80px 0 30px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            margin-top: 100px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            margin-bottom: 20px;
            display: block;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            margin-bottom: 12px;
            display: block;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--bg-secondary);
                padding: 20px;
                border-radius: 15px;
                margin-top: 10px;
                border: 1px solid var(--border-color);
                box-shadow: var(--shadow-lg);
            }

            .hero {
                padding-top: 120px;
                text-align: center;
            }

            .hero-badge {
                margin: 0 auto 25px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                margin: 0 auto 30px;
            }

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

            .finance-sphere-container {
                height: 400px;
                margin-top: 50px;
            }

            .orbit-ring-1 {
                width: 300px;
                height: 300px;
                margin-left: -150px;
                margin-top: -150px;
            }

            .orbit-ring-2 {
                width: 350px;
                height: 350px;
                margin-left: -175px;
                margin-top: -175px;
            }

            .orbit-ring-3 {
                width: 250px;
                height: 250px;
                margin-left: -125px;
                margin-top: -125px;
            }

            .finance-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

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

            .cta-title {
                font-size: 2rem;
            }
        }