:root {
    --primary-color: #1877fe;
    --secondary-color: #8c52ff;
    --background-dark: #0a0b1f;
    --card-dark: #131427;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
}

/* --- Global and Body Styling --- */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--background-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Reusable Components --- */
.section-heading {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* --- Hero Section Styling --- */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 120%, rgba(24, 119, 254, 0.1), rgba(0,0,0,0));
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2em;
    max-width: 600px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-button {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(24, 119, 254, 0.4);
}

.hero-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(24, 119, 254, 0.6);
}

/* --- Features Section Styling --- */
.features {
    padding: 80px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--card-dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-card .icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9em;
    color: var(--text-muted);
}

/* --- How It Works Section Styling --- */
.how-it-works {
    padding: 80px 0;
    background-color: var(--card-dark);
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.step {
    flex-basis: 300px;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    position: relative;
    background-color: rgba(24, 119, 254, 0.05);
    transition: background-color 0.3s;
}

.step:hover {
    background-color: rgba(24, 119, 254, 0.1);
}

.step .step-number {
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card-dark);
    padding: 5px 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.step h3 {
    font-size: 1.2em;
    margin-top: 20px;
}

.step p {
    font-size: 0.9em;
    color: var(--text-muted);
}

/* --- CTA Section Styling --- */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1em;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(24, 119, 254, 0.4);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(24, 119, 254, 0.6);
}

/* Explore more */

.more-from-neontek {
    padding: 60px 0;
    text-align: center;
}

.more-from-neontek h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more-from-neontek p {
    font-size: 1em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}
