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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1e1e1e;
    line-height: 1.6;
    background: #fafafa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #1e1e1e;
    color: #fff;
    padding: 12px 0;
}

.logo {
    display: inline-block;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.hero-icon {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #1e1e1e;
}

.hero p {
    font-size: 1.2rem;
    color: #373737;
}

.hero .subtext {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* How it works */
.how-it-works {
    display: flex;
    gap: 24px;
    padding: 0 0 50px;
    justify-content: center;
}

.step {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.step-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #ec3a3b;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #1e1e1e;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

/* Form */
.form-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 50px;
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
    color: #1e1e1e;
}

.form-section h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    color: #1e1e1e;
}

.form-group {
    margin-bottom: 16px;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #373737;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #ec3a3b;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row-3 {
    display: flex;
    gap: 16px;
}

button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: #ec3a3b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #de1517;
}

button[type="submit"]:disabled {
    background: #f06869;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 12px;
}

.form-error {
    background: #fff0f0;
    color: #de1517;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* Value props */
.value-props {
    display: flex;
    gap: 24px;
    padding: 0 0 60px;
}

.prop {
    flex: 1;
    text-align: center;
}

.prop h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #1e1e1e;
}

.prop p {
    font-size: 0.9rem;
    color: #666;
}

/* Back link */
.back-link {
    display: inline-block;
    margin-top: 32px;
    color: #ec3a3b;
    font-weight: 600;
    text-decoration: none;
}

.back-link:hover {
    color: #de1517;
}

/* Footer */
footer {
    background: #1e1e1e;
    color: #999;
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 640px) {
    .hero h2 {
        font-size: 1.6rem;
    }

    .how-it-works,
    .value-props {
        flex-direction: column;
    }

    .form-row,
    .form-row-3 {
        flex-direction: column;
        gap: 0;
    }

    .form-section {
        padding: 24px;
    }
}
