body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1e293b;

    /* Premium subtle gradient */
    background: linear-gradient(
        180deg,
        #e6fffb 0%,
        #ede9fe 40%,
        #ffffff 80%
    );
}

/* Layout */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.logo-header {
    text-align: center;
    padding: 20px 0 10px;
}

.main-logo {
    width: 360px;
    height: auto;
}

/* Hero Section */
.hero {
    padding: 30px 0 60px;
}

.hero-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Content */
.hero-copy {
    flex: 1;
}

.eyebrow {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-copy h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.subheadline {
    font-size: 16px;
    margin-bottom: 20px;
    color: #475569;
}

.trust-points div {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Form Card */
.form-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 16px;

    /* softer premium shadow */
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-card h2 {
    margin-bottom: 10px;
}

.form-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

input, select, textarea {
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #6D28D9;
}

/* Button */
.submit-btn {
    background: linear-gradient(135deg, #14B8A6, #6D28D9);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
}

.how-it-works h2 {
    margin-bottom: 30px;
}

.steps {
    display: flex;
    gap: 20px;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 16px;
    flex: 1;

    /* consistent soft shadow */
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.step span {
    display: inline-block;
    background: linear-gradient(135deg, #14B8A6, #6D28D9);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-bottom: 10px;
    font-size: 14px;
}