:root {
    --ink: #14201c;
    --emerald: #0f7a52;
    --emerald-dark: #0a5c3d;
    --emerald-soft: #e8f5ee;
    --gold: #d9a441;
    --paper: #f4f6f3;
    --line: #d9e2dc;
    --muted: #5d6b64;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background:
        radial-gradient(1200px 500px at 50% -200px, rgba(15,122,82,0.08), transparent),
        var(--paper);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.top-bar {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.top-bar::before {
    content: "\f0f0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--emerald);
    font-size: 22px;
}

.top-bar-text {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.trust-strip {
    width: 100%;
    background: var(--emerald-soft);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--emerald-dark);
}

.trust-strip span i {
    margin-right: 6px;
}

.headline {
    font-size: clamp(26px, 4.4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    text-align: center;
    max-width: 760px;
    padding: 46px 20px 6px;
}

.subhead {
    text-align: center;
    color: var(--muted);
    font-size: clamp(15px, 2.4vw, 18px);
    font-weight: 500;
    max-width: 560px;
    padding: 0 20px;
    margin-bottom: 6px;
}

.progress-wrap {
    width: min(92%, 600px);
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-track {
    flex: 1;
    height: 8px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    border-radius: 999px;
    transition: width 0.4s ease;
}

.progress-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--emerald-dark);
    white-space: nowrap;
}

.form-container {
    width: min(92%, 600px);
    margin: 22px auto 0;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px -28px rgba(15,32,28,0.35);
    border-radius: 22px;
    padding: 38px 30px;
}

.form-group label {
    font-size: clamp(20px, 3.2vw, 26px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    display: block;
    color: var(--ink);
    text-align: center;
    line-height: 1.3;
}

.yes-no-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 14px;
}

.yes-no-button {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    font-family: inherit;
    font-size: clamp(18px, 2.6vw, 22px);
    font-weight: 700;
    background: #ffffff;
    color: var(--emerald-dark);
    border: 2px solid var(--line);
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s, background 0.15s, color 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.yes-no-button::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--line);
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
}

.yes-no-button:hover {
    border-color: var(--emerald);
    background: var(--emerald-soft);
    transform: translateY(-2px);
}

.yes-no-button:hover::before {
    border-color: var(--emerald);
    background: var(--emerald);
    box-shadow: inset 0 0 0 3px var(--emerald-soft);
}

.reassure {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 22px;
    font-weight: 500;
}

.reassure i {
    color: var(--emerald);
    margin-right: 6px;
}

.terms-conditions {
    background: var(--ink);
    padding: 46px 20px 34px;
    width: 100%;
    margin-top: 64px;
}

.legal-text {
    max-width: 860px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    transition: background 0.2s, border-color 0.2s;
}

.footer-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .form-container {
        padding: 28px 18px;
    }
    .trust-strip {
        gap: 16px;
        font-size: 12px;
    }
    .terms-conditions {
        padding: 34px 16px 28px;
    }
}
