* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-nav);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-secondary);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary { background: var(--accent); color: var(--accent-text); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { border: 1px solid var(--border-primary); color: var(--text-primary); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* Hero */
.hero {
    padding: 160px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight { color: var(--accent); }

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-trust {
    color: var(--text-faint);
    font-size: 14px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt { background: var(--bg-secondary); }

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
}

.section-alt .feature-card { background: var(--bg-primary); }

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step { text-align: center; }

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-text);
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.price-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--accent-text);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
}

.price-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.price-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-primary);
    font-size: 14px;
    color: var(--price-list-text);
}

.price-card li::before {
    content: "\2713  ";
    color: var(--success);
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: center;
    color: var(--text-faint);
    font-size: 13px;
    border-top: 1px solid var(--border-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .features-grid, .steps, .pricing-grid { grid-template-columns: 1fr; }
    .price-card.popular { transform: none; }
    .nav-links a:not(.btn) { display: none; }
}
