:root {
    --primary: #3a36e0;
    --primary-dark: #2824b5;
    --secondary: #6c63ff;
    --dark: #0d0d2b;
    --light: #ffffff;
    --gray: #f8f9fa;
    --text: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--dark);
    padding: 15px 0;
}


.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
}

.signup-btn {
    background-color: var(--primary);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a237e 100%);
    color: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/grid-pattern.svg');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(58, 54, 224, 0.2);
    color: var(--light);
}

.feature-points {
    margin-top: 30px;
}

.feature-points div {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.feature-points div::before {
    content: '→';
    margin-right: 10px;
    color: var(--secondary);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--gray);
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 700;
}

.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 700;
}

.step-card {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--dark) 0%, #1a237e 100%);
    color: var(--light);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
}

footer a {
    color: var(--light);
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .feature-card, .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    
    .features h2, .how-it-works h2, .final-cta h2 {
        font-size: 2rem;
    }
}

input:enabled {
    background-color: #ffffff !important;
    color: #000000 !important;
}