:root {
    --brand-green: #5DB075;
    --brand-green-hover: #4a915f;
    --bg-color: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --font-family: 'Inter', sans-serif;
}

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

body, html {
    height: 100%;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Subtle Background Gradient */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(93, 176, 117, 0.05) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(93, 176, 117, 0.03) 0%, transparent 40%);
    padding: 2rem;
}

.container {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content Area */
.content-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 2rem;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.brand-logo span {
    color: var(--brand-green);
}

.brand-logo .pos-badge {
    background-color: var(--brand-green);
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 800;
}

.hero-eyebrow {
    color: var(--brand-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.hero-title span {
    color: var(--brand-green);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

.benefits-list li svg {
    width: 24px;
    height: 24px;
    color: var(--brand-green);
    margin-right: 12px;
    flex-shrink: 0;
}

/* Right Form Area */
.form-area {
    position: relative;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-family);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background-color: #f8fafc;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-green);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(93, 176, 117, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.btn-submit {
    width: 100%;
    background-color: var(--brand-green);
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.btn-submit:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(93, 176, 117, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.privacy-note a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(93, 176, 117, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 20px;
    height: 20px;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-text strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
}

.trust-badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        gap: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        align-items: flex-start;
        padding: 1.5rem;
        height: auto;
        min-height: 100vh;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-area {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .benefits-list {
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
