:root {
    --primary: #00d2ff;
    --secondary: #004e92;
    --dark: #1a1e23;
    --light: #f8f9fa;
    --text: #333;
}

body { 
    margin: 0; padding: 0; font-family: 'Inter', sans-serif; 
    background-color: var(--light); color: var(--text); overflow-x: hidden;
}

/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%; background: white; border-bottom: 1px solid #eee;
}
.logo { font-size: 24px; font-weight: 800; color: var(--dark); }
.logo span { color: var(--primary); }
.menu a { text-decoration: none; color: var(--text); margin-left: 25px; font-weight: 500; }
.nav-btn { background: var(--dark); color: white !important; padding: 10px 20px; border-radius: 8px; }

/* Hero Section */
.hero {
    padding: 100px 8%; background: radial-gradient(circle at top right, #e6f9ff, #ffffff);
    text-align: left;
}
.badge { background: #e0f7fa; color: #007b83; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.hero h1 { font-size: 56px; line-height: 1.1; margin: 20px 0; color: var(--dark); }
.hero p { font-size: 18px; color: #666; max-width: 550px; margin-bottom: 35px; }

.btn-primary { background: linear-gradient(to right, var(--secondary), var(--primary)); color: white; padding: 18px 35px; text-decoration: none; border-radius: 10px; font-weight: bold; display: inline-block; box-shadow: 0 10px 20px rgba(0,210,255,0.2); }
.btn-secondary { color: var(--dark); text-decoration: none; margin-left: 20px; font-weight: 600; border-bottom: 2px solid var(--primary); }

/* Pricing */
#pricing { padding: 80px 8%; text-align: center; }
.section-title h2 { font-size: 36px; margin-bottom: 10px; }
.price-container { display: flex; gap: 25px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }

.price-card {
    background: white; padding: 40px; border-radius: 20px; flex: 1; min-width: 280px; max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #f0f0f0;
}
.price-card:hover { transform: translateY(-10px); }
.price-card.featured { border: 2px solid var(--primary); position: relative; }
.popular { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 11px; font-weight: bold; }

.price { font-size: 42px; font-weight: 800; margin: 25px 0; }
.price span { font-size: 16px; color: #999; }
.price-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.price-card li { margin-bottom: 12px; color: #555; }
.price-card li strong { color: var(--dark); }

.btn-card { display: block; background: #f0f2f5; color: var(--dark); padding: 15px; text-decoration: none; border-radius: 10px; font-weight: bold; transition: 0.3s; }
.featured .btn-card { background: var(--primary); color: white; }

footer { padding: 40px; text-align: center; background: #f8f9fa; border-top: 1px solid #eee; margin-top: 50px; }