* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: #0a0f1f;
    color: #ffffff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #050914;
    border-bottom: 1px solid #1a2540;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.logo span {
    color: #00c8ff;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #b6c2e2;
    font-weight: 500;
}

nav a:hover {
    color: #00c8ff;
}

/* Hero */
.hero {
    text-align: center;
    padding: 90px 20px;
    background: radial-gradient(circle at top, #13224a, #060a18);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.hero p {
    color: #c0c9e8;
    margin-bottom: 35px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 35px;
}

.stats span {
    font-size: 30px;
    color: #00c8ff;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: linear-gradient(135deg, #00c8ff, #007bff);
    color: #000;
}

.primary:hover {
    opacity: 0.9;
}

/* Tools */
.tools {
    padding: 80px 20px;
    text-align: center;
}

.tools h2 {
    font-size: 34px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 45px;
}

.card {
    background: #101a36;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #1f2f5c;
}

.card h3 {
    color: #00c8ff;
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    background: #050914;
    padding: 90px 20px;
    text-align: center;
}

.price-box {
    background: #101a36;
    display: inline-block;
    padding: 45px;
    border-radius: 18px;
    border: 1px solid #1f2f5c;
}

.price {
    font-size: 36px;
    color: #00c8ff;
    margin: 18px 0;
}

.price-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-box li {
    margin: 10px 0;
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
}

.contact a {
    color: #00c8ff;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 25px;
    text-align: center;
    background: #02040b;
    color: #6d7aa6;
}

footer a {
    color: #00c8ff;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }
}
