:root {
    --bg-color: #09090b;
    --surface-color: #18181b;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #06b6d4;
    --text-main: #f8fafc;
    --text-muted: #a1a1aa;
    --card-bg: rgba(24, 24, 27, 0.8);
    --border-color: #27272a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-main);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    margin-left: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 40px 20px;
    position: relative;
    background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, var(--bg-color) 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.features-section, .pricing-section, .legal-section {
    padding: 100px 8%;
    max-width: 1300px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    align-items: center;
}

.pricing-card {
    background: var(--surface-color);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s;
}

.free-card {
    border-top: 5px solid var(--text-muted);
}

.premium-card {
    background: linear-gradient(to bottom, #1e3a8a22, var(--surface-color));
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.code-box {
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px dashed var(--primary-color);
}

.code-box strong {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: block;
    letter-spacing: 3px;
    margin-top: 5px;
}

.premium-btn {
    background: var(--primary-color);
    color: white;
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border-radius: 12px;
}

.premium-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    background: rgba(0,0,0,0.5);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--primary-color);
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.page-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px;
    background: var(--surface-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.page-container h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 3rem;
    text-align: center;
}

.page-container h2 {
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.page-container p, .page-container ul {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
