 :root {
            --primary: #8B0000;        /* Dark Red */
            --primary-light: #B22222;  /* Medium Red */
            --secondary: #FF4500;      /* Orange-Red / Accent Red */
            --accent: #FF6347;         /* Light Red / Highlight */
            --dark-light: #1A0F0F;     /* Dark background, slightly lighter than pure black */
            --dark-card: #2C1A1A;      /* Darker card background */
            --dark: #0C0606;            /* True dark background */
            --gray-300: #FFFFFF;        /* White for text or light elements */
            --gray-400: #F5F5F5;        /* Slightly off-white for secondary text */
            --warning: #FFB347;         /* Warning / highlight color in orange-ish red */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
          font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
          background-color: var(--dark);
          color: var(--gray-300);
          line-height: 1.6;
          overflow-x: hidden;
      
          /* Multiple floating squares using radial gradients */
          background-image: 
            radial-gradient(circle at 10% 20%, rgba(186, 15, 15, 0.6) 0%, rgba(186, 15, 15, 0.6) 30%, transparent 30%),
            radial-gradient(circle at 30% 70%, rgba(204, 0, 0, 0.5) 0%, rgba(204, 0, 0, 0.5) 25%, transparent 25%),
            radial-gradient(circle at 50% 40%, rgba(200, 10, 10, 0.4) 0%, rgba(200, 10, 10, 0.4) 35%, transparent 35%),
            radial-gradient(circle at 70% 80%, rgba(255, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.3) 30%, transparent 30%),
            radial-gradient(circle at 85% 25%, rgba(230, 20, 20, 0.5) 0%, rgba(230, 20, 20, 0.5) 20%, transparent 20%);
                    
          background-size: 60px 60px, 50px 50px, 70px 70px, 40px 40px, 55px 55px;
          background-repeat: no-repeat;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.2;
        }
        
        a {
            text-decoration: none;
            color: var(--primary-light);
            transition: all 0.2s ease;
        }
        
        a:hover {
            color: var(--accent);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        .section-title p {
            font-size: 1.125rem;
            color: var(--gray-400);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            outline: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px -3px rgba(255, 51, 0, 0.5);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -5px rgba(255, 51, 0, 0.7);
        }
        
        .btn-primary:hover::before {
            opacity: 1;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary-light);
            border: 2px solid var(--primary-light);
            box-shadow: 0 4px 15px -5px rgba(255, 51, 0, 0.3);
        }
        
        .btn-outline:hover {
            background: rgba(255, 51, 0, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -5px rgba(255, 51, 0, 0.4);
            border-color: var(--accent);
            color: var(--accent);
        }
        
        .text-gradient {
            background: linear-gradient(90deg, #ff0000, #ff0000) !important; /* red to black */
            -webkit-background-clip: text !important;
            background-clip: text !important;
            color: transparent !important;
        }
        
        .bg-gradient {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .text-center {
            text-align: center;
        }
        
        .grid {
            display: grid;
        }
        
        .grid-cols-1 {
            grid-template-columns: repeat(1, 1fr);
        }
        
        .grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .gap-4 {
            gap: 1rem;
        }
        
        .gap-6 {
            gap: 1.5rem;
        }
        
        .gap-8 {
            gap: 2rem;
        }
        
        .mt-4 {
            margin-top: 1rem;
        }
        
        .mt-8 {
            margin-top: 2rem;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .mb-8 {
            margin-bottom: 2rem;
        }
        
        .p-4 {
            padding: 1rem;
        }
        
        .p-6 {
            padding: 1.5rem;
        }
        
        .p-8 {
            padding: 2rem;
        }
        
        .rounded {
            border-radius: 0.25rem;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .rounded-xl {
            border-radius: 0.75rem;
        }
        
        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
        }
        
        .glow {
            box-shadow: 0 0 15px 2px var(--primary-glow);
        }
        
        .card {
            background-color: var(--dark-card);
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 51, 0, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .card:hover::before {
            opacity: 1;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 51, 0, 0.2);
        }
        
        .card-highlight {
            position: relative;
        }
        
        .card-highlight::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .card-highlight:hover::after {
            transform: scaleX(1);
        }
        
        .grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 51, 0, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 51, 0, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -1;
            opacity: 0.5;
        }

        
        /* Subtle Red Glass Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1.25rem 0;
            backdrop-filter: blur(10px);
            background-color: rgba(139, 0, 0, 0.15); /* very low opacity red overlay */
            border-bottom: 1px solid rgba(139, 0, 0, 0.05); /* faint red line */
        }
        
        .header.scrolled {
            padding: 0.75rem 0;
            background-color: rgba(139, 0, 0, 0.25); /* slightly stronger on scroll */
            box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(139, 0, 0, 0.1);
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 36px;
            margin-right: 0.75rem;
        }
        
        .logo-text {
            font-weight: 800;
            font-size: 1.5rem;
            color: white;
            letter-spacing: 0.5px;
        }
        
        .logo-text span {
            color: var(--primary-light);
        }
        
        .nav-links {
            display: flex;
            align-items: center;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            color: var(--gray-300);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: white;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-buttons {
            display: flex;
            align-items: center;
        }
        
        .nav-buttons .btn {
            margin-left: 1rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--gray-300);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--dark);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--gray-300);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .mobile-menu li {
            margin: 1rem 0;
        }
        
        .mobile-menu a {
            color: var(--gray-300);
            font-size: 1.25rem;
            font-weight: 500;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(to bottom, var(--dark), var(--dark-light));
            padding-top: 5rem;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Existing colorful gradients */
            background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(255, 0, 224, 0.1) 0%, transparent 40%);
            
            /* Darker black overlay */
            background-color: rgba(0, 0, 0, 0.85); /* almost fully black */
            background-blend-mode: overlay;
            z-index: 0;
        }
    
        .grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }
        
        .square {
            position: absolute;
            width: 6px;   /* smaller than before */
            height: 6px;
            background: rgba(255,255,255,0.2); /* subtle brightness */
            border-radius: 2px;
            z-index: 1;
        }
        
        /* Float animation */
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-800px) translateX(200px) rotate(360deg);
                opacity: 0.6;
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: var(--gray-400);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .hero-image {
            position: absolute;
            top: 15%;        /* moved further down */
            right: 15%;      /* moved toward center */
            width: 690px;    /* 2.3× bigger */
            height: 690px;   /* 2.3× bigger */
            background: linear-gradient(135deg, #8B0000, #FF4500); /* dark red to bright red */
            border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
            animation: blobMove 20s infinite alternate;
            opacity: 0.1;
        }
        
        @keyframes blobMove {
            0% {
                border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
                transform: translate(0, 0) scale(1);
            }
            25% {
                border-radius: 55% 45% 50% 60% / 60% 55% 45% 50%;
                transform: translate(-10px, 5px) scale(1.05);
            }
            50% {
                border-radius: 45% 50% 60% 55% / 50% 60% 50% 45%;
                transform: translate(10px, -5px) scale(0.95);
            }
            75% {
                border-radius: 50% 55% 45% 60% / 55% 50% 60% 45%;
                transform: translate(-5px, 10px) scale(1.02);
            }
            100% {
                border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
                transform: translate(0, 0) scale(1);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .pulse {
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }

        
        /* Features Section */
        .features {
            position: relative;
            background-color: var(--dark-light);
        }
        
        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 0% 0%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: var(--dark-card);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(255, 51, 0, 0.5);
            border-color: rgba(255, 51, 0, 0.2);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 51, 0, 0.1), rgba(255, 32, 0, 0.2));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-light);
            font-size: 1.5rem;
            position: relative;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 1.25rem;
            z-index: -1;
            opacity: 0.3;
            filter: blur(8px);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: var(--gray-400);
            margin-bottom: 1.5rem;
        }
        
        .feature-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-light);
            font-weight: 500;
        }
        
        .feature-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .feature-link:hover i {
            transform: translateX(5px);
        }
        
        /* About Section */
        .about {
            position: relative;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 32, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--gray-400);
        }
        
        .about-list {
            margin-top: 2rem;
        }
        
        .about-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .about-list i {
            color: var(--primary-light);
            margin-right: 1rem;
            margin-top: 0.25rem;
            position: relative;
            z-index: 1;
        }
        
        .about-list i::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            width: 25px;
            height: 25px;
            background: rgba(255, 51, 0, 0.15);
            border-radius: 50%;
            z-index: -1;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 95%;
            height: 95%;
            border: 2px solid var(--primary);
            border-radius: 1rem;
            z-index: 0;
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: -15px;
            width: 175px;
            height: 175px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 1rem;
            z-index: -1;
            opacity: 0.2;
            filter: blur(15px);
        }
        
        /* Pricing Section */
        .pricing {
            position: relative;
            background-color: var(--dark-light);
        }
        
        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 100% 0%, rgba(255, 51, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
            background: var(--dark-card);
            padding: 0.5rem;
            border-radius: 2rem;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
        }
        
        .pricing-toggle-btn {
            background: none;
            border: none;
            color: var(--gray-400);
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 1.5rem;
        }
        
        .pricing-toggle-btn.active {
            color: white;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            box-shadow: 0 4px 15px -3px rgba(255, 51, 0, 0.5);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .pricing-card {
            background-color: var(--dark-card);
            border-radius: 1rem;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
        }
        
        .pricing-card.popular {
            border: 1px solid rgba(255, 51, 0, 0.3);
            transform: scale(1.05);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 0 0 20px -5px rgba(255, 51, 0, 0.5);
        }
        
        .pricing-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 1rem;
            right: -2rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            padding: 0.25rem 2rem;
            transform: rotate(45deg);
            font-size: 0.75rem;
            font-weight: 700;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(255, 51, 0, 0.5);
            border-color: rgba(255, 51, 0, 0.2);
        }
        
        .pricing-card.popular:hover {
            transform: translateY(-5px) scale(1.05);
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .pricing-card .price span {
            font-size: 1rem;
            color: var(--gray-400);
        }
        
        .pricing-features {
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            color: var(--gray-400);
        }
        
        .pricing-features i {
            color: var(--primary-light);
            margin-right: 0.75rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            position: relative;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 51, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-slide {
            flex: 0 0 100%;
            padding: 0 1rem;
        }
        
        .testimonial-card {
            background-color: var(--dark-card);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            font-family: 'Georgia', serif;
            color: rgba(255, 51, 0, 0.1);
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
            border: 2px solid rgba(255, 51, 0, 0.3);
            padding: 2px;
        }
        
        .testimonial-author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-author-info p {
            font-size: 0.9rem;
            color: var(--gray-400);
        }
        
        .testimonial-rating {
            margin-top: 0.5rem;
        }
        
        .testimonial-rating i {
            color: var(--warning);
            margin-right: 0.25rem;
        }
        
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .testimonial-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-300);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .testimonial-btn:hover {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 0 15px rgba(255, 51, 0, 0.5);
        }
        
        /* Stats Section */
        .stats {
            background-color: var(--dark-light);
            position: relative;
            overflow: hidden;
        }
        
        .stats::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 51, 0, 0.05) 0%, transparent 30%);
            pointer-events: none;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
            background-color: var(--dark-card);
            border-radius: 1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(255, 51, 0, 0.5);
        }
        
        .stat-card:hover::after {
            transform: scaleX(1);
        }
        
        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 51, 0, 0.1), rgba(255, 32, 0, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary-light);
            font-size: 1.5rem;
            position: relative;
        }
        
        .stat-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            z-index: -1;
            opacity: 0.3;
            filter: blur(8px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }
        
        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
        
        .stat-label {
            color: var(--gray-400);
            font-size: 1rem;
            font-weight: 500;
        }
        
        /* FAQ Section */
        .faq {
            position: relative;
        }
        
        .faq::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 32, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }
        
        .faq-item {
            background-color: var(--dark-card);
            border-radius: 1rem;
            overflow: hidden;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: rgba(255, 51, 0, 0.2);
            box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(255, 51, 0, 0.3);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 51, 0, 0.05);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--primary-light);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: var(--gray-400);
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--dark-light), var(--dark));
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../fonts/b2b59adc7558468ebf08d925354bf72e.woff');
            opacity: 0.2;
        }
        
        .cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(255, 50, 50, 0.1) 0%, transparent 40%);
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .cta .btn-outline {
            background-color: transparent;
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .cta .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: white;
        }
        
        /* News Section */
        .news {
            position: relative;
        }
        
        .news::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 51, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .news-card {
            background-color: var(--dark-card);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(255, 51, 0, 0.5);
            border-color: rgba(255, 51, 0, 0.2);
        }
        
        .news-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(26, 11, 15, 0.8) 100%);
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 1.5rem;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--gray-400);
        }
        
        .news-meta img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 0.5rem;
            object-fit: cover;
            border: 2px solid rgba(255, 51, 0, 0.3);
            padding: 2px;
        }
        
        .news-meta span {
            margin-left: auto;
            display: flex;
            align-items: center;
        }
        
        .news-meta span i {
            margin-right: 0.25rem;
            color: var(--primary-light);
        }
        
        .news-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        .news-card:hover .news-title {
            color: var(--primary-light);
        }
        
        .news-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-light);
            font-weight: 500;
            position: relative;
            padding-bottom: 2px;
        }
        
        .news-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--primary-light);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        
        .news-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .news-link:hover i {
            transform: translateX(5px);
        }
        
        .news-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-light);
            position: relative;
            padding: 4rem 0 2rem;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-logo {
            flex: 1 1 300px;
        }
        
        .footer-logo p {
            color: var(--gray-400);
            margin: 1.5rem 0;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--dark-card);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .footer-social a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .footer-social a i {
            position: relative;
            z-index: 1;
        }
        
        .footer-social a:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.3), 0 0 10px -5px rgba(255, 51, 0, 0.5);
        }
        
        .footer-social a:hover::before {
            opacity: 1;
        }
        
        .footer-social a:hover i {
            color: white;
        }
        
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 1.5rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer-bottom p {
            color: var(--gray-400);
            font-size: 0.9rem;
        }
        
        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 51, 0, 0.5);
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 51, 0, 0.7);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .container {
                max-width: 720px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                max-width: 540px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-buttons .btn {
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
                margin-bottom: 2rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
        }
        
        @media (max-width: 576px) {
            .container {
                width: 100%;
                padding: 0 1.5rem;
            }
            
            .hero h1 {
                font-size: 1.75rem;
            }
            
            .section-title h2 {
                font-size: 1.75rem;
            }
        }
    
          .footer-section-logo {
                display: flex;
                flex-direction: column;
                align-items: center;   /* centers all children horizontally */
                text-align: center;
                margin: 0 auto;
                max-width: 800px;
                padding: 20px 20px 10px;
            }
            
            .footer-section-logo .footer-logo {
                display: flex;
                flex-direction: column;  /* stack logo, paragraph, social vertically */
                align-items: center;
                gap: 10px;
            }
            
            .footer-section-logo .logo {
                display: flex;
                flex-direction: column;  /* stack img above text */
                align-items: center;     /* center the logo image + text */
                gap: 5px;
            }
            
            .footer-section-logo .logo img {
                height: 40px;
                display: block;
                margin: 0 auto;  /* ensures image is centered */
            }
            
            .footer-section-logo .logo-text {
                font-weight: bold;
                font-size: 24px;
                color: #fff; /* base white */
            }
            
            .footer-section-logo .logo-text span {
                background: linear-gradient(90deg, #8B0000, #FF4500); /* dark red to bright red */
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent; /* shows gradient */
            }
            
            .footer-section-logo .footer-social a {
                font-size: 28px;
                color: #FF4500; /* optionall: match red theme */
                text-decoration: none;
            }