 
        :root {
            --primary: #dd6b20;
            --primary-dark: #c05621;
            --secondary: #f8f9fa;
            --dark: #121212;
            --dark-accent: #1b1b2c;
            --text: #2d3748;
            --light-text: #718096;
            --light-text-dark: #a0aec0;
            --border: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
        }
a,
a:link, 
a:hover, 
a:visited, 
a:active {
    text-decoration: none;
    color: inherit;
}


        /* Header */
        header {
            padding: 1.5rem 5%;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: white;
            z-index: 2;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            margin-right: 8px;
        }
        
        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            transition: color 0.3s ease;
        }
        
        header.scrolled .logo-text {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        header.scrolled .nav-links a {
            color: var(--text);
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.65rem 1.4rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(221, 107, 32, 0.2);
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(221, 107, 32, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background-color: var(--dark);
            color: white;
            padding: 8rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(135deg, #121212 0%, #151618 90%), 
                       linear-gradient(to right, rgba(221, 107, 32, 0.15), rgba(192, 86, 33, 0.05));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-icons {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        
        .hero-icons i {
            margin: 0 0.5rem;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: #f8f9fa;
            text-shadow: 0 0 10px rgba(221, 107, 32, 0.3), 0 0 20px rgba(221, 107, 32, 0.2);
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .hero h1 span {
            color: #dd6b20;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--light-text-dark);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Features Section */
        .features {
            padding: 5rem 5%;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .section-title p {
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            background-color: rgba(221, 107, 32, 0.1);
            height: 80px;
            width: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary);
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
            font-family: 'Poppins', sans-serif;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .steps {
            display: flex;
            justify-content: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .step {
            flex: 1;
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .step-number {
            height: 50px;
            width: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: bold;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
        }
        
        .step-content h3 {
            margin-bottom: 1rem;
            color: var(--dark);
            font-family: 'Poppins', sans-serif;
        }
        
        .step-line {
            position: absolute;
            top: 25px;
            left: calc(16.67% + 25px);
            right: calc(16.67% + 25px);
            height: 2px;
            background-color: var(--border);
            z-index: 1;
        }
        
        /* CLI Section */
        .cli-section {
            background-color: #1e1e1e;
            color: white;
            padding: 5rem 5%;
        }
        
        .cli-content {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .cli-content h2 {
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }
        
        .code-block {
            background-color: #2d2d2d;
            padding: 2rem;
            border-radius: 8px;
            width: 100%;
            max-width: 700px;
            margin-bottom: 2rem;
            font-family: 'Courier New', Courier, monospace;
            overflow-x: auto;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        
        .cli-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .cli-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .cli-feature i {
            color: var(--primary);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 5rem 5%;
            background-color: #f8f9fa;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-content {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-content::before {
            content: """;
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(221, 107, 32, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }
        
        .author-info span {
            display: block;
        }
        
        .author-name {
            font-weight: bold;
        }
        
        .author-role {
            font-size: 0.9rem;
            color: var(--light-text);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            background-color: var(--dark-accent);
            color: white;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .cta-content p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-family: 'Poppins', sans-serif;
            color: #ffffff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .steps {
                flex-direction: column;
                gap: 2rem;
            }
            
            .step-line {
                display: none;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }
        }