/* Kintech professional page sections (For C&I, For Utility) */

.ktech-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.ktech-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff7c00;
    margin-bottom: 12px;
}

.ktech-section-head .std-h2 {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 500;
    color: #1b1b1b;
    margin-bottom: 16px;
}

.ktech-section-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #747474;
    margin: 0;
}

/* C&I scenarios */
.ktech-scenarios {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.ktech-scenarios-hero {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    line-height: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ktech-scenarios-hero img {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.ktech-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ktech-scenario-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8eaed;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ktech-scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.ktech-scenario-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #eef0f3;
}

.ktech-scenario-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ktech-scenario-card:hover .ktech-scenario-card-img img {
    transform: scale(1.04);
}

.ktech-scenario-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(27, 27, 27, 0.75);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.ktech-scenario-card-num span {
    color: #ffbd00;
}

.ktech-scenario-card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ktech-scenario-card-body h3 {
    font-size: 22px;
    font-weight: 500;
    color: #1b1b1b;
    margin: 0 0 10px;
    line-height: 1.35;
}

.ktech-scenario-card-lead {
    font-size: 15px;
    color: #747474;
    line-height: 1.6;
    margin: 0 0 18px;
}

.ktech-scenario-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
}

.ktech-scenario-card-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.ktech-scenario-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffbd00;
}

/* Key advantages (utility) */
.ktech-advantages {
    padding: 90px 0;
    background: #fff;
}

.ktech-advantage-row {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 80px;
}

.ktech-advantage-row:last-child {
    margin-bottom: 0;
}

.ktech-advantage-row.reverse {
    flex-direction: row-reverse;
}

.ktech-advantage-media {
    flex: 1 1 48%;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.ktech-advantage-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 320px;
}

.ktech-advantage-content {
    flex: 1 1 44%;
}

.ktech-advantage-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #1b1b1b;
    margin: 0 0 28px;
    line-height: 1.35;
}

.ktech-advantage-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.ktech-advantage-item:last-child {
    margin-bottom: 0;
}

.ktech-advantage-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff5e6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.ktech-advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ktech-advantage-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1b1b1b;
    margin: 0 0 6px;
}

.ktech-advantage-item p {
    font-size: 15px;
    color: #747474;
    line-height: 1.65;
    margin: 0;
}

/* Ground power scenarios (utility) */
.ktech-ground {
    padding: 90px 0;
    background: #1b1b1b;
    color: #fff;
}

.ktech-ground .ktech-section-head .std-h2 {
    color: #fff;
}

.ktech-ground .ktech-section-desc {
    color: rgba(255, 255, 255, 0.72);
}

.ktech-ground .ktech-eyebrow {
    color: #ffbd00;
}

.ktech-ground-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.ktech-ground-visual {
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    min-height: 400px;
}

.ktech-ground-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.ktech-ground-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.ktech-ground-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.ktech-ground-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 189, 0, 0.4);
}

.ktech-ground-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 189, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.ktech-ground-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ktech-ground-card p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

@media (max-width: 991px) {
    .ktech-scenarios-grid {
        grid-template-columns: 1fr;
    }

    .ktech-advantage-row,
    .ktech-advantage-row.reverse {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 56px;
    }

    .ktech-ground-layout {
        grid-template-columns: 1fr;
    }

    .ktech-ground-visual {
        min-height: 260px;
    }

    .ktech-ground-visual img {
        min-height: 260px;
    }

    .ktech-section-head .std-h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .ktech-scenarios,
    .ktech-advantages,
    .ktech-ground {
        padding: 56px 0;
    }

    .ktech-scenario-card-body {
        padding: 22px 20px 26px;
    }
}
