:root {
    --dark-bg: #0b1a1a;
    --accent-lime: #ccff00;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --card-bg: #152626;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Header & Nav */
header {
    background: var(--dark-bg);
    padding: 20px 10%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.btn-secondary {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    color: white;
    padding: 100px 10% 150px;
    text-align: center;
}

.hero h1 {
    font-size: 80px;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--accent-lime);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 10%;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.price-card.featured {
    background: var(--dark-bg);
    color: white;
}

.btn-lime {
    background: var(--accent-lime);
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-block;
    color: black;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 50px 10%;
    background: #fff;
    border-top: 1px solid #eee;
    text-align: center;
}