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

:root {
    --blue: #0B1F3B;
    --teal: #1FBF9A;
    --white: #FFFFFF;
    --lightgray: #F5F7FA;
    --text: #2d2d2d;
    --muted: #6b7280;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--lightgray);
    color: var(--text);
}

/* SECTIONS */
.section {
    padding: 60px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.section-gray { background: var(--lightgray); }
.section-white { background: var(--white); }
.section-blue { background: var(--blue); color: white; }

h1 { font-size: 36px; line-height: 1.2; margin-bottom: 16px; }
h2 { font-size: 26px; margin-bottom: 16px; color: var(--blue); }
.section-blue h2 { color: white; }
p { font-size: 17px; line-height: 1.7; margin-bottom: 12px; color: var(--text); }
.section-blue p { color: rgba(255,255,255,0.85); }

/* HERO */
.hero {
    background: var(--blue);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.hero h1 { color: white; font-size: 44px; }
.hero .sub { font-size: 20px; color: rgba(255,255,255,0.85); margin: 16px 0 24px; line-height: 1.6; }
.hero .mini { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 32px; }

/* TRUST CHIPS */
.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.chip {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

/* FORM BOX */
.form-box {
    background: white;
    border-radius: 16px;
    padding: 36px;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.form-box h3 { color: var(--blue); font-size: 20px; margin-bottom: 20px; text-align: center; }

.form-box input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 12px;
    outline: none;
    transition: border 0.2s;
}

.form-box input:focus { border-color: var(--teal); }

.microcopy {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--teal);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:hover { background: #18a882; transform: translateY(-2px); }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.btn-secondary:hover { background: var(--teal); color: white; }

.btn-small {
    padding: 12px 24px;
    font-size: 15px;
    width: auto;
}

/* CHECKLIST */
.checklist { list-style: none; margin: 20px 0; }
.checklist li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #f0f0f0;
}
.checklist li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* FOR/NOT FOR */
.for-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.for-box {
    background: var(--lightgray);
    border-radius: 12px;
    padding: 24px;
}

.for-box h4 { font-size: 16px; margin-bottom: 12px; color: var(--blue); }
.for-box ul { list-style: none; }
.for-box ul li { padding: 6px 0 6px 24px; position: relative; font-size: 15px; }
.for-box ul li::before { position: absolute; left: 0; }
.for-box.yes ul li::before { content: '✓'; color: var(--teal); font-weight: bold; }
.for-box.no ul li::before { content: '✗'; color: #ef4444; font-weight: bold; }

/* STEPS */
.steps { display: flex; gap: 20px; margin: 24px 0; flex-wrap: wrap; }
.step {
    flex: 1;
    min-width: 180px;
    background: var(--lightgray);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.step-num {
    width: 48px; height: 48px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: bold;
    margin: 0 auto 12px;
}
.step h4 { font-size: 16px; color: var(--blue); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

/* TRUST BOX */
.trust-box {
    background: var(--lightgray);
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.trust-box ul { list-style: none; }
.trust-box ul li { padding: 6px 0 6px 28px; position: relative; font-size: 15px; }
.trust-box ul li::before { position: absolute; left: 0; }

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}
.faq-item h4 { font-size: 17px; color: var(--blue); margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: var(--muted); margin: 0; }

/* FOOTER */
.footer {
    background: var(--blue);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 24px 20px;
    font-size: 13px;
    line-height: 1.8;
}

.footer a { color: var(--teal); text-decoration: none; }

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.2s;
}

.card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(31,191,154,0.15); }
.card h3 { font-size: 20px; color: var(--blue); margin-bottom: 8px; }
.card .tag { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* PROGRESS */
.progress-bar {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    height: 6px;
    margin-bottom: 24px;
}
.progress-fill {
    background: var(--teal);
    height: 100%;
    border-radius: 4px;
}

/* THANK YOU */
.ty-icon { font-size: 64px; text-align: center; margin-bottom: 16px; }

/* DECISION BOX */
.decision-box {
    background: #f0fdf9;
    border: 2px solid var(--teal);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}
.decision-box h4 { color: var(--teal); margin-bottom: 12px; font-size: 18px; }
.decision-box ul { list-style: none; }
.decision-box ul li { padding: 8px 0; font-size: 16px; border-bottom: 1px solid #d1fae5; }
.decision-box ul li:last-child { border: none; }

/* GO PAGE */
.go-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.go-page .icon { font-size: 72px; margin-bottom: 24px; }

@media (max-width: 600px) {
    h1 { font-size: 28px; }
    .hero h1 { font-size: 32px; }
    .for-grid, .card-grid { grid-template-columns: 1fr; }
    .steps { flex-direction: column; }
}
