     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            color: #FFFFFF;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 50px;
        }

        /* Promo Banner */
        .promo-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #FF00FF 0%, #00FFFF 50%, #FF00FF 100%);
            padding: 12px 16px;
            z-index: 1000;
            animation: bannerGlow 3s ease-in-out infinite;
        }

        @keyframes bannerGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
            }
            50% {
                box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
            }
        }

        .promo-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .promo-text {
            color: #000000;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-align: center;
        }

        .promo-icon {
            font-size: 18px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            padding: 100px 20px 60px;
            background: linear-gradient(180deg, #000000 0%, #111111 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.03) 2px, rgba(0, 255, 255, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 0, 255, 0.03) 2px, rgba(255, 0, 255, 0.03) 4px);
            pointer-events: none;
        }

        .logo-container {
            margin-bottom: 48px;
            position: relative;
            z-index: 2;
        }

        .logo-image {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .hero-title {
            font-size: clamp(32px, 8vw, 56px);
            font-weight: 700;
            margin: 32px 0 20px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .hero-subtitle {
            font-size: clamp(16px, 3.5vw, 20px);
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto 36px;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .cta-primary {
            display: inline-block;
            padding: 16px 40px;
            background: #00FFFF;
            color: #000000;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(15px, 3vw, 18px);
            border: 2px solid #00FFFF;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .cta-primary:hover {
            background: transparent;
            color: #00FFFF;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
        }

        /* Why Hodos Section */
        .why-hodos {
            padding: 80px 20px;
            background: #000000;
        }

        .section-title {
            text-align: center;
            font-size: clamp(28px, 6vw, 42px);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(15px, 3vw, 18px);
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 60px;
            font-weight: 300;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        @media (max-width: 1024px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 640px) {
            .why-grid {
                grid-template-columns: 1fr;
            }
        }

        .why-card {
            background: #111111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px 24px;
            position: relative;
            transition: all 0.4s ease;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #00FFFF;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .why-card:hover {
            border-color: #00FFFF;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2);
        }

        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-title {
            font-size: clamp(16px, 3vw, 18px);
            font-weight: 600;
            margin-bottom: 12px;
            color: #00FFFF;
        }

        .why-text {
            font-size: clamp(14px, 2.5vw, 15px);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Community Section */
        .community {
            padding: 80px 20px;
            background: #111111;
        }

        .community-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .community-text {
            font-size: clamp(16px, 3.5vw, 18px);
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            font-weight: 300;
        }

        /* Services Section */
        .services {
            padding: 80px 20px;
            background: #000000;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #111111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 36px 24px;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #00FFFF;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card.premium::before {
            background: #FF00FF;
        }

        .service-card:hover {
            border-color: #00FFFF;
            transform: translateY(-6px);
            box-shadow: 0 10px 28px rgba(0, 255, 255, 0.2);
        }

        .service-card.premium:hover {
            border-color: #FF00FF;
            box-shadow: 0 10px 28px rgba(255, 0, 255, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(0, 255, 255, 0.1);
            color: #00FFFF;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .service-card.premium .service-badge {
            background: rgba(255, 0, 255, 0.1);
            color: #FF00FF;
            border-color: rgba(255, 0, 255, 0.3);
        }

        .service-name {
            font-size: clamp(24px, 5vw, 32px);
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .service-description {
            font-size: clamp(14px, 2.5vw, 15px);
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 24px;
            line-height: 1.7;
            font-weight: 300;
        }

        .service-features {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: clamp(13px, 2.5vw, 14px);
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            padding-left: 20px;
        }

        .service-features li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #00FFFF;
            font-weight: 700;
        }

        .service-card.premium .service-features li::before {
            color: #FF00FF;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features a {
            color: #00FFFF;
            text-decoration: underline;
            transition: opacity 0.3s ease;
        }

        .service-features a:hover {
            opacity: 0.7;
        }

        .price-section {
            margin: 24px 0;
            margin-top: auto;
        }

        .price-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .price-option:last-child {
            border-bottom: none;
        }

        .price-label {
            font-size: clamp(13px, 2.5vw, 14px);
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }

        .price-value {
            font-size: clamp(18px, 4vw, 20px);
            font-weight: 700;
            color: #00FFFF;
        }

        .service-card.premium .price-value {
            color: #FF00FF;
        }

        .price-discount {
            font-size: clamp(11px, 2vw, 12px);
            color: #00FFFF;
            margin-left: 6px;
            font-weight: 600;
        }

        .service-card.premium .price-discount {
            color: #FF00FF;
        }

        .service-cta {
            display: block;
            width: 100%;
            padding: 14px;
            background: transparent;
            color: #00FFFF;
            border: 2px solid #00FFFF;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(14px, 2.5vw, 16px);
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .service-cta:hover {
            background: #00FFFF;
            color: #000000;
        }

        .service-card.premium .service-cta {
            color: #FF00FF;
            border-color: #FF00FF;
        }

        .service-card.premium .service-cta:hover {
            background: #FF00FF;
            color: #000000;
        }

        .service-card.free .service-cta {
            background: #00FFFF;
            color: #000000;
        }

        .service-card.free .service-cta:hover {
            background: transparent;
            color: #00FFFF;
        }

        /* Stats Section */
        .stats {
            padding: 80px 20px;
            background: #000000;
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0, 255, 255, 0.02) 40px, rgba(0, 255, 255, 0.02) 41px);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        .stat-card {
            background: #111111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 36px 24px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #00FFFF;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.4s ease;
        }

        .stat-card.highlight::after {
            background: #FF00FF;
        }

        .stat-card:hover {
            border-color: #00FFFF;
            transform: translateY(-6px);
            box-shadow: 0 10px 28px rgba(0, 255, 255, 0.15);
        }

        .stat-card.highlight:hover {
            border-color: #FF00FF;
            box-shadow: 0 10px 28px rgba(255, 0, 255, 0.15);
        }

        .stat-card:hover::after {
            transform: scaleX(1);
        }

        .stat-icon {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
        }

        .stat-icon svg {
            width: 40px;
            height: 40px;
        }

        .stat-number {
            font-size: clamp(40px, 10vw, 64px);
            font-weight: 700;
            color: #00FFFF;
            margin-bottom: 12px;
            line-height: 1;
            letter-spacing: -2px;
        }

        .stat-card.highlight .stat-number {
            color: #FF00FF;
        }

        .stat-label {
            font-size: clamp(15px, 3vw, 18px);
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .stat-description {
            font-size: clamp(13px, 2.5vw, 14px);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            font-weight: 300;
        }

   /* CTA Box */
        .cta-box {
            background: #111111;
            border: 2px solid #00FFFF;
            padding: 36px 24px;
            text-align: center;
            margin: 40px 0 0;
            max-width: 100%;
            position: relative;
            z-index: 2;
        }

        .cta-box-title {
            font-size: clamp(24px, 5vw, 32px);
            font-weight: 700;
            margin-bottom: 16px;
            color: #00FFFF;
        }

        .cta-box-text {
            font-size: clamp(14px, 3vw, 16px);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .cta-box-button {
            display: inline-block;
            padding: 14px 36px;
            background: #00FFFF;
            color: #000000;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(15px, 3vw, 16px);
            border: 2px solid #00FFFF;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .cta-box-button:hover {
            background: transparent;
            color: #00FFFF;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
        }

        /* Footer */
        .footer {
            padding: 40px 20px;
            background: #000000;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.5);
            font-size: clamp(12px, 2.5vw, 14px);
            font-weight: 300;
            margin-bottom: 16px;
        }

        .footer-linktree {
            display: inline-block;
            padding: 10px 28px;
            border: 2px solid #00FFFF;
            color: #00FFFF;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: clamp(13px, 2.5vw, 14px);
        }

        .footer-linktree:hover {
            background: #00FFFF;
            color: #000000;
            box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            .promo-banner {
                padding: 10px 12px;
            }

            .promo-text {
                font-size: 11px;
            }

            .promo-icon {
                font-size: 14px;
            }

            .hero {
                padding: 80px 16px 50px;
            }

            .logo-container {
                margin-bottom: 32px;
            }

            .logo-image {
                max-width: 280px;
            }

            .why-hodos, .community, .services, .stats {
                padding: 60px 16px;
            }

            .why-grid, .services-grid, .stats-grid {
                gap: 20px;
            }

            .service-card, .why-card, .stat-card {
                padding: 28px 20px;
            }

            .cta-box {
                margin: 30px 16px 0;
                padding: 28px 20px;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .stat-icon svg {
                width: 32px;
                height: 32px;
            }
        }