/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #17a2b8; /* A vibrant, modern teal */
    --dark-bg: #1a1a1d;
    --card-bg: #2c2c30;
    --text-color: #f4f4f4;
    --text-muted: #a9a9a9;
    --success-color: #28a745;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: var(--card-bg);
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

    .logo span {
        color: var(--text-color);
    }

nav ul {
    list-style: none;
    display: flex;
}

    nav ul li {
        margin-left: 25px;
    }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

            nav ul li a:hover,
            nav ul li a.active {
                color: var(--primary-color);
            }

.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(rgba(26, 26, 29, 0.8), rgba(26, 26, 29, 0.8)), url('https://images.unsplash.com/photo-1585829365295-ab7cd400c167?auto=format&fit=crop&q=80&w=2070') center center/cover no-repeat;
}

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
        color: var(--text-muted);
        max-width: 700px;
        margin: 0 auto 2rem auto;
    }

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .cta-button:hover {
        background-color: #138496;
        transform: translateY(-2px);
    }

.page-header {
    text-align: center;
    padding: 40px 0;
    background-color: var(--card-bg);
}

    .page-header h1 {
        font-size: 2.8rem;
        color: var(--primary-color);
    }

.main-content {
    padding: 50px 0;
}

    .main-content h2 {
        font-size: 2.2rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--card-bg);
    }

    .main-content p {
        margin-bottom: 1.5rem;
        color: var(--text-muted);
    }

.benefits-grid, .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .card h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .card ul {
        list-style-position: inside;
        padding-left: 5px;
    }

    .card li {
        margin-bottom: 8px;
    }

.pricing-contact-section {
    background: var(--card-bg);
    margin-top: 50px;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border-top: 5px solid var(--success-color);
}

    .pricing-contact-section h2 {
        color: var(--text-color);
        border: none;
        margin-bottom: 15px;
    }

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 5px;
}

.price-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.batch-note {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-link {
    display: inline-block;
    background: var(--success-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

    .contact-link:hover {
        background-color: #218838;
    }

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: var(--text-muted);
    border-top: 1px solid var(--card-bg);
}

/* Responsive */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    header .container {
        flex-direction: column;
    }

    nav ul {
        padding: 1rem 0;
    }

        nav ul li {
            margin: 0 15px;
        }
}
