* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: #020617; 
    color: #f8fafc; 
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: #ffffff; }

nav { 
    display: flex; justify-content: space-between; padding: 2rem 5%; 
    align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.nav-links a { color: #94a3b8; text-decoration: none; margin-left: 2rem; font-size: 0.9rem; }

header { padding: 10rem 5%; text-align: center; }
header h1 { font-size: 4rem; margin-bottom: 1.5rem; }
header p { font-size: 1.25rem; color: #94a3b8; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-primary { 
    background: #e11d48; color: #fff; padding: 1rem 2rem; 
    text-decoration: none; border-radius: 0.5rem; font-weight: 600;
}
.cta-outline { 
    border: 1px solid #e11d48; color: #e11d48; padding: 0.5rem 1rem; 
    text-decoration: none; border-radius: 0.5rem;
}

section { padding: 5rem 5%; display: flex; gap: 2rem; justify-content: center; }
.feature-card, .pricing-card { 
    background: #0f172a; padding: 3rem; border-radius: 1rem; border: 1px solid #1e293b;
    text-align: center; max-width: 350px;
}
.pricing-card .price { font-size: 3rem; font-weight: 700; margin: 1.5rem 0; }
.pricing-card .price span { font-size: 1rem; color: #94a3b8; }
.pricing-card ul { list-style: none; margin-bottom: 2rem; color: #cbd5e1; }
