:root {
    --primary: #6C63FF; /* Soft Purple */
    --secondary: #3F3D56; /* Dark Purple/Grey */
    --bg-light: #F9F9FF;
    --text-main: #2D2D2D;
    --text-muted: #666;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, .logo {
    font-family: 'Fredoka', sans-serif; /* Playful font for headers */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
.mt-50 { margin-top: 50px; }

/* Navigation */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid #eee;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; color: var(--primary); font-weight: bold; }
.nav-links { list-style: none; display: flex; gap: 20px; align-items: center; padding: 0; margin: 0;}
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 0.95rem; }
.btn-nav {
    background: var(--primary); color: white !important; padding: 8px 18px; border-radius: 50px; transition: 0.2s;
}
.btn-nav:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hero */
.hero { padding: 100px 0 80px; text-align: center; background: radial-gradient(circle at top, #f3f3ff, #fff); }
.badge { background: #e0e0ff; color: var(--primary); padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; }
.hero h1 { font-size: 3rem; margin: 20px 0; line-height: 1.2; }
.highlight { color: var(--primary); }
.hero-sub { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; }
.btn-primary {
    background: var(--primary); color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3); transition: 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4); }
.small-note { font-size: 0.9rem; color: #999; margin-top: 10px; }

/* Sections */
.section { padding: 80px 0; }
.light-bg { background: var(--bg-light); }
.dark-bg { background: var(--secondary); color: white; }
.highlight-bg { background: #F0F0FF; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* Cards */
.card { background: white; padding: 30px; border-radius: 16px; border: 1px solid #eee; text-align: center; transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.icon { font-size: 2.5rem; margin-bottom: 15px; }

.feature-box h3 { margin-bottom: 10px; color: #b8b8ff; }

/* Checklist Box */
.checklist-box { background: #fff; padding: 40px; border-radius: 20px; border: 2px solid #f0f0f0; }
.checklist-box ul { list-style: none; padding: 0; }
.checklist-box li { margin-bottom: 15px; padding-left: 25px; position: relative; }
.checklist-box li::before { content: "•"; color: var(--primary); font-weight: bold; position: absolute; left: 0; }

/* Form Section */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.benefits-list { list-style: none; padding: 0; }
.benefits-list li { margin-bottom: 12px; font-size: 1.05rem; }
.italic-note { font-style: italic; color: var(--text-muted); margin-top: 20px; }

.form-block { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: inherit; font-size: 1rem; box-sizing: border-box; transition: 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.btn-submit {
    width: 100%; background: var(--primary); color: white; padding: 15px; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.2s;
}
.btn-submit:hover { background: #5a52d5; }
.privacy-text { font-size: 0.8rem; color: #999; text-align: center; margin-top: 15px; }

/* Footer */
.footer { background: #f4f4f4; padding: 40px 0; color: #666; font-size: 0.9rem; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.footer-links a { color: #666; text-decoration: none; margin-left: 20px; }
.copy { font-size: 0.8rem; opacity: 0.7; }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .split-layout { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Simplified for mobile */
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { margin: 0; }
}