/* "Sell your property" ve "For Agents" sayfaları — brief §5 ve §6 */

.lead-page {
    background: var(--bg-page);
    padding: 0 0 64px;
}

.lead-hero {
    background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 60%, #17263d 100%);
    color: #fff;
    padding: 64px 20px 72px;
    text-align: center;
}

.lead-hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold, #c8a35a);
    border: 1px solid rgba(214, 177, 94, 0.45);
    border-radius: 6px;
    padding: 6px 14px;
    margin-bottom: 18px;
}

.lead-hero__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #fff;
}

.lead-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 44rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

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

.lead-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: -36px;
}

@media (min-width: 900px) {
    .lead-grid {
        grid-template-columns: 1fr 420px;
        align-items: start;
        gap: 40px;
    }
}

.lead-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 40px -24px rgba(15, 27, 45, 0.45);
}

.lead-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
}

.lead-card__intro {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Adım listesi */
.lead-steps {
    list-style: none;
    counter-reset: lead-step;
    margin: 0;
    padding: 0;
}

.lead-steps li {
    counter-increment: lead-step;
    position: relative;
    padding: 0 0 22px 52px;
    border-left: 2px solid var(--border);
    margin-left: 17px;
}

.lead-steps li:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.lead-steps li::before {
    content: counter(lead-step);
    position: absolute;
    left: -18px;
    top: -2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold, #c8a35a);
    color: #fff;
    font-weight: 800;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-steps__heading {
    display: block;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.lead-steps__body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Vaat listesi */
.lead-promises {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lead-promises li {
    position: relative;
    padding: 0 0 14px 30px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.lead-promises li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold, #c8a35a);
    font-weight: 800;
}

/* Form */
.lead-form__row {
    margin-bottom: 16px;
}

.lead-form__row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lead-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--surface);
    box-sizing: border-box;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--gold, #c8a35a);
    box-shadow: 0 0 0 3px rgba(214, 177, 94, 0.18);
}

.lead-form__submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: var(--gold, #c8a35a);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}

.lead-form__submit:hover {
    background: var(--gold-hover, #C89B3C);
}

.lead-form__note {
    margin: 12px 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.lead-form__error {
    display: block;
    margin-top: 5px;
    font-size: 0.75rem;
    color: #dc2626;
}

/* Bildirim kutuları */
.lead-alert {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.lead-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.lead-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* WhatsApp CTA */
.lead-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    margin-top: 12px;
    border-radius: 12px;
    background: #1f9d55;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.lead-whatsapp:hover {
    background: #178449;
    color: #fff !important;
    text-decoration: none;
}

/* Komisyon placeholder kutusu */
.lead-callout {
    margin-top: 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 18px 20px;
    background: var(--surface-2);
}

.lead-callout__label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 6px;
}

.lead-callout__body {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
/* Tek kartlı sayfa düzeni (For Agents kayıt formu) */
.lead-grid--single {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 900px) {
    .lead-grid--single {
        grid-template-columns: 1fr;
    }
}
