* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: radial-gradient(circle at 20% 50%, #0f172a, #020617);
    color: #fff;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    color: #00ffc6;
    font-weight: 700;
    font-size: 1rem;
}

nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #0b0e11;
}

nav a {
    padding: 12px;
    border-top: 1px solid #1e2329;
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;

}

.menu {
    font-size: 1.3rem;
    cursor: pointer;
    color: #fff;
}

.container {
    padding: 90px 15px 40px;
    max-width: 1200px;
    margin: auto;
}

.title {
    text-align: center;
    margin-bottom: 30px;
}

.title h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.title p {
    color: #848e9c;
    font-size: 0.8rem;
}

.plans {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.plan {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

.plan h2 {
    color: #fcd535;
    font-size: 1.1rem;
}

.plan .roi {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 8px 0;
}

.plan p {
    font-size: 0.75rem;
    color: #848e9c;
}

.features {
    text-align: left;
    margin: 10px 0;
}

.features li {
    font-size: 0.75rem;
    margin: 6px 0;
}

.btn {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, #00ffc6, #00aaff);
    color: #000;
    font-weight: 600;
    width: 100%;
    font-size: 0.9rem;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fcd535;
    color: #000;
    padding: 2px 6px;
    font-size: 0.6rem;
    border-radius: 4px;
}

.plan-wrapper {
    position: relative;
}

.compare {
    margin-top: 30px;
    background: #161a1e;
    border-radius: 8px;
    padding: 15px;
    overflow-x: auto;
}

.compare table {
    width: 600px;
    font-size: 0.75rem;
}

.compare th,
.compare td {
    padding: 8px;
    border-bottom: 1px solid #1e2329;
    text-align: center;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 0.7rem;
    margin-top: 30px;
    border-top: 1px solid #1e2329;
}

/* Tablet */
@media(min-width:768px) {
    nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        background: none;
    }

    .menu {
        display: none;
    }

    .plans {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .compare table {
        width: 100%;
    }

    .title h1 {
        font-size: 2rem;
    }
}

/* Desktop */
@media(min-width:1024px) {
    .plans {
        grid-template-columns: repeat(3, 1fr);
    }

    .container {
        padding: 110px 40px;
    }
}