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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    border-bottom: 1px solid #e2e8f0;
    background: white;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    color: #0f172a;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
}

nav a:hover {
    color: #0f172a;
}

/* Hero */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #0f172a;
}

.subhead {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-primary {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #f8fafc;
}

/* Features */
.features {
    padding: 5rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

/* Pricing */
.pricing {
    background: #f1f5f9;
    padding: 5rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.plan {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.plan.popular {
    border: 2px solid #3b82f6;
    transform: scale(1.02);
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price small {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.plan ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Footer */
footer {
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
}

.footer-links a:hover {
    color: #0f172a;
}

/* Pages */
.page-content {
    padding: 3rem 1.5rem;
    max-width: 800px;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    margin: 2rem 0 1rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
