.hero {
    background: linear-gradient(135deg, #f8fafd 0%, #ffffff 100%);
    padding: 70px 0 60px;
}
.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
}
.hero-text {
    flex: 1.2;
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #0f172a;
}
.hero-text p {
    font-size: 1.1rem;
    color: #334155;
    margin: 20px 0;
}
.hero-badge {
    background: #e0f2fe;
    color: #0369a1;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 12px 32px;
    border-radius: 48px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
.btn-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.hero-form {
    background: white;
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    flex: 0.8;
    min-width: 280px;
    border: 1px solid #eef2ff;
}
.hero-form h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.hero-form input, .hero-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 32px;
    border: 1px solid #cbd5e1;
    background: #fefefe;
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
    line-height: 1.45;
}
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 32px;
    background: #fefefe;
    overflow: hidden;
}
.phone-prefix {
    padding: 12px 2px 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    color: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.45;
}
.phone-input-wrapper input {
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 16px 12px 6px !important;
    background: transparent !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: 1.45 !important;
    color: inherit !important;
    flex: 1;
    min-width: 0;
    outline: none;
}
.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 32px;
    border: 1.5px dashed #cbd5e1;
    background: #fafafa;
    cursor: pointer;
    font-size: 0.9rem;
    color: #475569;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}
.file-upload-label:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
}
.file-upload-label.has-file {
    border-color: #16a34a;
    background: #f0fdf4;
    color: #16a34a;
}
.file-upload-label i { font-size: 1rem; }
.hero-form button {
    background: #2563eb;
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    margin-top: 8px;
    cursor: pointer;
}
