:root {
    --bg-color: oklch(0.05 0 0);
    --text-color: #e0e0e0;
    --primary-color: #00ffff;
    --secondary-color: #8a2be2;
    --accent-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}
body {
    font-family: 'Inter', 'Geist', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--primary-color);
}
.hero {
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #b0b0b0;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
}
.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}
.card h3 {
    color: var(--primary-color);
    margin-top: 0;
}
.pricing-card {
    text-align: center;
    padding: 40px 30px;
}
.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 20px 0;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}
.pricing-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.faq-item h4 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 18px;
}
.faq-item p {
    margin: 0;
    color: #b0b0b0;
}
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 5px;
    font-family: inherit;
    box-sizing: border-box;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
footer {
    text-align: center;
    padding: 40px 0;
    background: rgba(0,0,0,0.8);
    border-top: 1px solid var(--border-color);
}
.footer-links {
    margin-top: 20px;
}
.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}
