:root {
    --primary: #1b4e8a;
    --primary-dark: #12355c;
    --accent: #f7b500;
    --text: #101828;
    --muted: #475467;
    --background: #f5f7fb;
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

.hero {
    background: radial-gradient(circle at top right, rgba(29, 78, 216, 0.45), transparent 45%), linear-gradient(120deg, rgba(18, 53, 92, 0.95), rgba(11, 24, 43, 0.9));
    color: #fff;
    padding: 4.5rem 8vw 5rem;
}

.hero__content {
    max-width: 960px;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    margin-top: 1rem;
}

.subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero__stats div {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.2rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
}

.btn-primary {
    background: var(--accent);
    color: #101828;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(247, 181, 0, 0.35);
}

.btn-lg {
    font-size: 1.05rem;
    padding: 1rem 1.85rem;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    padding: 0.85rem 1.6rem;
    border-radius: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
}

.hero__note {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

main {
    padding: 3rem 8vw 4rem;
}

.section {
    margin-bottom: 3.5rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section__intro {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section__intro p {
    color: var(--muted);
}

.feature__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e4e7ec;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.process__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.process__list li {
    background: #fff;
    border-radius: 0.8rem;
    padding: 1.25rem;
    border: 1px solid #d0d5dd;
    display: flex;
    gap: 0.75rem;
}

.step__index {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.4rem;
}

.form {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
}

.form__container {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e4e7ec;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.form__container h2 {
    margin-bottom: 0.5rem;
}

.input__row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.input__row label {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

input,
textarea {
    padding: 0.85rem;
    border: 1px solid #d0d5dd;
    border-radius: 0.6rem;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(27, 78, 138, 0.3);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.checkbox {
    display: flex;
    gap: 0.6rem;
    font-size: 0.95rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.alerts {
    margin: 1rem 0;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alert--success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.alert--danger {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fda29b;
}

.faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.faq div {
    background: #fff;
    border-radius: 0.9rem;
    padding: 1.3rem;
    border: 1px solid #e4e7ec;
}

.faq h3 {
    margin-bottom: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .hero {
        padding: 3rem 6vw 3.5rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__stats div {
        width: 100%;
    }

    main {
        padding: 2.5rem 6vw 3rem;
    }

}
