/* --- Global Settings & Variables --- */
:root {
    --primary-red: #ff0000;
    --dark-bg: #0a0a0a;
    --medium-bg: #111111;
    --light-bg: #222222;
    --text-primary: #f0f0f0;
    --text-secondary: #aaaaaa;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; color: var(--text-primary); }
h3 { font-size: 1.4rem; color: var(--primary-red); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* --- Header & Navigation --- */
header {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--light-bg);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-red);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-nav {
    background: var(--primary-red);
    color: #fff;
    border: 2px solid var(--primary-red);
}

.btn-nav:hover {
    background: transparent;
    color: var(--primary-red);
}

.btn-full {
    background: var(--primary-red);
    color: #fff;
    border: 2px solid var(--primary-red);
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 20px;
}

.btn-full:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* --- Hero Section --- */
#hero {
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-text .highlight {
    color: var(--primary-red);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-top: 1.5rem;
}

/* --- Waitlist Form --- */
.form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
}

.form-container h2 {
    text-align: center;
}
.form-container p {
    text-align: center;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #222;
    color: var(--text-primary);
    font-size: 1rem;
}

#form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Advantages Section --- */
#advantages {
    padding: 4rem 0;
    background: var(--medium-bg);
}

#advantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
}

/* --- About Section --- */
#about {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
    opacity: 0.5;
}

.about-text h2 {
    color: var(--primary-red);
}

/* --- Footer --- */
footer {
    padding: 2rem 0;
    text-align: center;
    background: #000;
    margin-top: 2rem;
    border-top: 1px solid var(--light-bg);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* --- FAQ Page Specific --- */
#faq-hero {
    padding: 4rem 0;
    background: var(--medium-bg);
    text-align: center;
}

#faq-hero h1 {
    color: var(--primary-red);
}

#faq-list {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid var(--glass-border);
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { display: none; }
    
    .nav-container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 1rem;
        padding: 0;
        justify-content: center;
    }
    nav ul li {
        margin: 0 0.8rem;
    }
}
/* --- Pricing Table Styles --- */
.faq-answer h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.pricing-table th,
.pricing-table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-table th {
    background-color: var(--glass-bg);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pricing-table td {
    color: var(--text-primary);
}

.pricing-table td:last-child {
    text-align: left;
    font-weight: 700;
    color: var(--primary-red);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}