/* Yardi Analytics Experts Landing Page Styles - Consistente con el sitio principal */

.calculator-section,
.experts-section {
    margin-top: 2em;
    margin-bottom: 2em;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(67,97,238,0.07);
    padding: 2.5em 2em 2em 2em;
    border: 1px solid #e5e7eb;
}

.calculator-section h3,
.experts-section h3 {
    color: #4361ee;
    font-size: 1.3em;
    margin-bottom: 1em;
}

.calculator-form input[type="number"] {
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding: 0.7em 1em;
    width: 100%;
    margin-bottom: 1em;
    font-size: 1em;
    background: #f8fafc;
    color: #22223b;
    transition: border 0.2s;
}

.calculator-form input[type="number"]:focus {
    border: 1.5px solid #4361ee;
    outline: none;
}

.calculator-form button.button.primary {
    width: 100%;
    margin-top: 0.5em;
    background: linear-gradient(90deg, #4361ee 0%, #10b981 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background 0.2s;
}

.calculator-form button.button.primary:hover {
    background: linear-gradient(90deg, #10b981 0%, #4361ee 100%);
}

#calculator-result {
    font-size: 1.15em;
    color: #10b981;
    font-weight: 600;
    margin-top: 1em;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    margin-bottom: 0.7em;
    font-size: 1.05em;
    color: #22223b;
    display: flex;
    align-items: center;
}

.check-list .icon {
    color: #10b981;
    margin-right: 0.7em;
    font-size: 1.1em;
}

.cta-banner {
    margin-top: 2em;
    background: linear-gradient(90deg, #4361ee 0%, #10b981 100%);
    color: #fff;
    border-radius: 10px;
    padding: 2.5em 2em 2em 2em;
    text-align: center;
    box-shadow: 0 2px 12px rgba(67,97,238,0.07);
}

.cta-banner h3 {
    color: #fff;
    margin-bottom: 0.7em;
}

.cta-banner .button {
    margin-top: 1em;
    background: #fff;
    color: #4361ee;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    padding: 0.7em 2em;
    transition: background 0.2s, color 0.2s;
}

.cta-banner .button:hover {
    background: #10b981;
    color: #fff;
}

.hero-banner {
    background: linear-gradient(90deg, #f8fafc 60%, #e0e7ff 100%);
    border-radius: 10px;
    padding: 2.5em 2em 2em 2em;
    margin-bottom: 2em;
    box-shadow: 0 2px 12px rgba(67,97,238,0.07);
    text-align: center;
}

.hero-banner h2 {
    color: #22223b;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.hero-banner .hero-subtitle {
    color: #4b5563;
    font-size: 1.15em;
    margin-bottom: 1.5em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.stat-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(67,97,238,0.06);
    padding: 1em 1.5em;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    font-size: 1.5em;
    font-weight: 700;
    color: #4361ee;
    display: block;
}

.stat-label {
    font-size: 0.95em;
    color: #4b5563;
}

@media (max-width: 900px) {
    .hero-stats {
        flex-direction: column;
        gap: 1em;
    }
    .calculator-section,
    .experts-section,
    .cta-banner,
    .hero-banner {
        padding: 1.2em 0.7em 1em 0.7em;
    }
}
