:root {
    --primary: #0078D7;
    --primary-dark: #0063B1;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-600: #64748B;
    --gray-900: #0F172A;
    --border: #E2E8F0;
}

.home-page {
    margin: 0;
    padding: 0;
}

/* Hero con más aire */
.hero-section {
    background: linear-gradient(160deg, #0078D7 0%, #0063B1 100%);
    padding: 8rem 0 10rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    text-align: center;
}

.hero-title-accent {
    color: rgba(255, 255, 255, 0.95);
    display: inline;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    padding: 1.125rem 2.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 10px;
    background: white;
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: var(--primary);
}

.btn-hero-secondary {
    padding: 1.125rem 2.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

/* Features - Más espaciado */
.features-section {
    padding: 8rem 0;
    background: white;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 120, 215, 0.12);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

/* Benefits con diseño limpio */
.benefits-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.25s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 120, 215, 0.08);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.875rem;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: #E0F2FE;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.benefits-visual {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 16px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.benefits-visual i {
    font-size: 16rem;
    color: var(--primary);
    opacity: 0.12;
}

/* CTA limpio */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.btn-cta {
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 10px;
    background: white;
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 5rem 0 8rem 0;
    }

    .features-section,
    .benefits-section {
        padding: 5rem 0;
    }

    .section-subtitle {
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}