.el-container {
    width: 1200px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.el-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
    padding: 90px 0 80px;
    color: #ffffff;
}

.el-kicker {
    margin: 0 0 16px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
}

.el-title {
    margin: 0;
    max-width: 920px;
    font-size: 46px;
    line-height: 1.25;
    font-weight: 700;
}

.el-subtitle {
    margin: 24px 0 0;
    max-width: 900px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.el-cta-row {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.el-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    border: 1px solid transparent;
}

.el-btn-primary {
    background: #06b6d4;
    color: #ffffff;
}

.el-btn-primary:hover {
    background: #0891b2;
    color: #ffffff;
}

.el-btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.el-btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.el-highlight-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.el-highlight-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.el-highlight-list li:before {
    content: "• ";
    color: #67e8f9;
}

.el-breadcrumb {
    padding: 6px 0 10px;
    background: #f8fbff;
}

.el-breadcrumb .position-navigation {
    padding-top: 8px;
}

.el-section {
    padding: 72px 0;
    background: #ffffff;
}

.el-section-alt {
    background: #f8fbff;
}

.el-section-head h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.35;
    color: #0f172a;
}

.el-section-head p {
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
}

.el-grid-3 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.el-grid-2 {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.el-card,
.el-panel,
.el-scenario,
.el-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
}

.el-card h3,
.el-panel h3,
.el-scenario h3,
.el-step h3,
.el-faq-item h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
    color: #0f172a;
}

.el-card p,
.el-panel p,
.el-scenario p,
.el-step p,
.el-faq-item p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.el-panel ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

.el-panel li {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.el-process {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.el-step {
    background: #ffffff;
    border: 1px solid #dbe3f1;
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    gap: 14px;
}

.el-step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.el-center-cta {
    margin-top: 30px;
    text-align: center;
}

.el-faq {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.el-bottom-cta {
    padding: 84px 0;
    text-align: center;
    background: linear-gradient(120deg, #0b1020 0%, #1e293b 100%);
}

.el-bottom-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.35;
}

.el-bottom-cta p {
    margin: 16px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.9;
}

.el-bottom-cta .el-btn {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .el-title {
        font-size: 38px;
    }

    .el-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .el-banner {
        padding: 68px 0 60px;
    }

    .el-title {
        font-size: 30px;
    }

    .el-subtitle {
        font-size: 16px;
        line-height: 1.8;
    }

    .el-section {
        padding: 56px 0;
    }

    .el-section-head h2 {
        font-size: 28px;
    }

    .el-grid-3,
    .el-grid-2 {
        grid-template-columns: 1fr;
    }

    .el-step {
        flex-direction: column;
    }

    .el-bottom-cta h2 {
        font-size: 30px;
    }
}
