:root {
    --primary: #4f46e5;
    --secondary: #ec4899;
    --dark: #111827;
    --light: #f9fafb;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
    background-color: #f3f4f6;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.025em; margin-top: 0; }
h1 { font-size: 3.5rem; line-height: 1.1; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; }

/* Components */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 99px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79, 70, 229, 0.23); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: none; }
.btn-outline:hover { background: var(--primary); color: white; }

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, #e0e7ff, transparent),
                radial-gradient(circle at bottom left, #fce7f3, transparent);
    padding: 100px 20px;
}
.hero-content { max-width: 800px; }
.desc { font-size: 1.25rem; color: #4b5563; margin-bottom: 2rem; }

/* Pricing Section */
.pricing { padding: 100px 0; background: white; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.price-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}
.price-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom, #f5f3ff, white);
}
.price-tag { font-size: 3rem; font-weight: 800; color: var(--primary); margin: 20px 0; }
.price-tag span { font-size: 1rem; color: #6b7280; font-weight: 500; }
.features { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.features li { margin-bottom: 12px; display: flex; align-items: center; color: #4b5563; }
.features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

/* Result Page Specifics */
.result-container {
    padding: 50px 20px;
    background: #f9fafb;
    min-height: 100vh;
}
.result-card {
    background: white;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}
.result-header {
    background: var(--gradient);
    color: white;
    padding: 40px;
    text-align: center;
}
.result-body { padding: 50px; }

/* Blur Logic */
.blurred-content {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    opacity: 0.6;
}
.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 80%;
    max-width: 400px;
    border: 1px solid rgba(0,0,0,0.05);
}
.lock-icon { font-size: 40px; margin-bottom: 15px; display: block; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { padding: 60px 20px; }
}
