.kena-hero {
    padding: 140px 0 70px;
    background: var(--bg-light);
}

.kena-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.kena-title {
    font-size: clamp(2.4rem, 3.2vw, 3.4rem);
    margin: 1rem 0 1rem;
}

.kena-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.kena-section {
    padding: 70px 0;
    background: var(--bg-white);
}

.kena-section-light {
    background: var(--bg-light);
}

.kena-section-header {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.kena-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.kena-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: var(--shadow-md);
}

.kena-card h3 {
    margin-bottom: 0.75rem;
}

.kena-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.kena-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 1.4rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.kena-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(4, 30, 66, 0.08);
    color: #041E42;
    font-weight: 700;
}

.kena-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

.kena-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.kena-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.kena-table th,
.kena-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(4, 30, 66, 0.08);
}

.kena-table thead th {
    background: rgba(4, 30, 66, 0.05);
    font-weight: 600;
}

.kena-cta {
    padding: 70px 0 90px;
    background: var(--bg-white);
}

.kena-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.kena-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.kena-contact-bottom {
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .kena-grid {
        grid-template-columns: 1fr;
    }

    .kena-steps {
        grid-template-columns: 1fr;
    }
}
