:root {
    --cyan: #00c3f5;
    --cyan-dk: #009ec6;
    --orange: #f7941d;
    --navy: #0a0b52;
    --navy2: #0d0e6a;
    --ink: #111827;
    --muted: #6b7280;
    --border: #e5e9f2;
    --surface: #f8fafd;
    --white: #fff;
}

.lbl-corporate {
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9ca3af;
}

/* ══ SECTION ══ */
.section-corporate {
    width: 100%;
    max-width: 1170px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(10, 11, 82, .11);
    position: relative;
    margin: 0 auto;
}

.section-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--cyan) 50%, var(--orange));
}

.section-corporate::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 500px 300px at 92% 60%, rgba(0, 195, 245, .05) 0%, transparent 60%),
        radial-gradient(ellipse 300px 200px at 4% 80%, rgba(247, 148, 29, .04) 0%, transparent 55%);
}

/* ── MAIN ROW ── */
.main-corporate {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: stretch;
}

/* ── LEFT ── */
.left-corporate {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid var(--border);
}

.badge-corporate {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 195, 245, .07);
    border: 1px solid rgba(0, 195, 245, .2);
    border-radius: 100px;
    padding: 5px 14px;
    width: fit-content;
}

.bdot-corporate {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-corporate 2s ease-in-out infinite;
}

@keyframes pulse-corporate {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.7);
    }
}

.badge-corporate span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan-dk);
}

.headline-corporate {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    margin-top: 0px;
    color: var(--navy);
}

.headline-corporate .ora-corporate {
    color: var(--orange);
}

.headline-corporate .grd-corporate {
    background: linear-gradient(90deg, var(--cyan-dk), #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.desc-corporate strong {
    color: var(--ink);
    font-weight: 500;
}

/* key points */
.keypoints-corporate {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.kp-corporate {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 400;
    transition: all .25s;
    cursor: default;
}

.kp-corporate:hover {
    border-color: rgba(0, 195, 245, .3);
    background: rgba(0, 195, 245, .04);
    transform: translateY(-2px);
}

.kp-ico-corporate img {
    /* width: 26px; */
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* .ki-b-corporate {
			background: rgba(0, 195, 245, .12);
		}

		.ki-o-corporate {
			background: rgba(247, 148, 29, .12);
		}

		.ki-g-corporate {
			background: rgba(22, 163, 74, .12);
		}

		.ki-p-corporate {
			background: rgba(124, 58, 237, .12);
		} */

/* actions */
.actions-corporate {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* .btn-main-corporate {
			display: inline-flex;
			align-items: center;
			gap: 9px;
			background: linear-gradient(135deg, var(--orange), #ff7000);
			color: var(--white);
			font-family: 'Clash Display', sans-serif;
			font-size: 13.5px;
			font-weight: 600;
			letter-spacing: .03em;
			padding: 14px 24px;
			border-radius: 10px;
			border: none;
			cursor: pointer;
			text-decoration: none;
			box-shadow: 0 6px 20px rgba(247, 148, 29, .38);
			transition: all .3s;
			position: relative;
			overflow: hidden;
		}

		.btn-main-corporate::after {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
			opacity: 0;
			transition: opacity .3s;
		} */

.btn-main-corporate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(247, 148, 29, .5);
}

.btn-main-corporate:hover::after {
    opacity: 1;
}

.btn-main-corporate .arr-corporate {
    transition: transform .3s;
}

.btn-main-corporate:hover .arr-corporate {
    transform: translateX(4px);
}

.btn-soft-corporate {
    font-size: 13px;
    /* color: var(--muted); */
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s;
}

.btn-soft-corporate:hover {
    color: var(--navy);
}

.btn-soft-corporate .arr2-corporate {
    font-size: 11px;
    transition: transform .25s;
}

.btn-soft-corporate:hover .arr2-corporate {
    transform: translateX(3px);
}

/* ── RIGHT: stats panel ── */
.right-corporate {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.right-corporate::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 200px 160px at 50% 0%, rgba(0, 195, 245, .2) 0%, transparent 60%);
    pointer-events: none;
}

.right-corporate::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(0, 195, 245, .12);
    top: -55px;
    right: -45px;
    pointer-events: none;
}

.stat-list-corporate {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.stat-item-corporate {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    cursor: default;
    transition: padding-left .25s;
}

.stat-item-corporate:last-child {
    border-bottom: none;
}

.stat-item-corporate:hover {
    padding-left: 5px;
}

.stat-item-corporate:hover .sn-corporate {
    color: var(--cyan);
}

.sn-corporate {

    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    transition: color .25s;
}

.sn-corporate sup,
.sn-corporate sub {
    font-size: 15px;
}

.sl-corporate {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px;
    line-height: 1.3;
}

.count-corporate {
    display: inline-block;
}

/* ── TRUST BAR ── */
.trust-corporate {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 13px 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.t-lbl-corporate {
    font-size: 10px;
    text-transform: uppercase;
    font-size: 13px;
    /* color: var(--muted); */
    flex-shrink: 0;
    white-space: nowrap;
}

.t-div-corporate {
    width: 1px;
    height: 18px;
    background: var(--border);
    flex-shrink: 0;
}

.t-chips-corporate {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1;
}

.tchip-corporate {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: default;
    transition: all .2s;
}

.tchip-corporate:hover {
    border-color: rgba(0, 195, 245, .28);
    color: var(--navy);
    transform: translateY(-1px);
}

.tchip-corporate.iso-corporate {
    background: rgba(0, 195, 245, .06);
    border-color: rgba(0, 195, 245, .2);
    color: var(--cyan-dk);
    font-weight: 600;
}

.t-more-corporate {
    font-size: 14px;
    /* color: var(--muted); */
    font-style: italic;
    white-space: nowrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp-corporate {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-corporate {
    animation: fadeUp-corporate .45s .06s both;
}

.right-corporate {
    animation: fadeUp-corporate .45s .16s both;
}

.trust-corporate {
    animation: fadeUp-corporate .45s .24s both;
}

/* .wa-wrap{
								display:flex;
								justify-content:center;
								align-items:center;
								padding:40px 0;
								background:#f5f7fb;
							} */

.wa-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, #3ee52d, #1ebc12);
    padding: 5px 16px 5px 16px;
    border-radius: 5px;
    box-shadow:
        0 12px 28px rgba(18, 140, 34, .28),
        inset 0 2px 0 rgba(255, 255, 255, .35);
    overflow: hidden;
    transition: .35s ease;
}

.wa-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 20%,
            rgba(255, 255, 255, .18) 50%,
            transparent 80%);
    transform: translateX(-70%);
    animation: shine 4s linear infinite;
}

.wa-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 18px 38px rgba(18, 140, 34, .35),
        inset 0 2px 0 rgba(255, 255, 255, .4);
}

.wa-icon {
    position: relative;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #6dff5d, #19b40e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 4px 10px rgba(255, 255, 255, .35),
        0 8px 20px rgba(0, 0, 0, .18);
    animation: bounce 2s infinite;
}

.wa-icon i {
    color: #fff;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .55);
    animation: ripple 2s infinite;
}

.ring2 {
    animation-delay: 1s;
}

.wa-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-label {
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
}

.wa-number {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .7;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes shine {
    100% {
        transform: translateX(220%);
    }
}

@media(max-width:768px) {

    .wa-btn {
        padding: 6px 28px 6px 16px;
        gap: 12px;
    }

    .wa-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .wa-icon i {
        font-size: 20px;
    }

    .wa-number {
        font-size: 14px;
    }

    .wa-label {
        font-size: 14px;
    }
}


/* ── RESPONSIVE ── */
@media(min-width:1200px) {
    .section-corporate {
        width: 1170px !important;
    }
}

@media(min-width:992px) {
    .section-corporate {
        width: 970px;
    }
}

@media(min-width:768px) {
    .section-corporate {
        width: 750px;
    }
}

@media(max-width:780px) {
    .main-corporate {
        grid-template-columns: 1fr;
    }

    .right-corporate {
        flex-direction: row;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-list-corporate {
        flex-direction: row;
        padding: 18px 24px;
        justify-content: space-around;
    }

    .stat-item-corporate {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, .08);
        padding: 0 18px;
        text-align: center;
    }

    .stat-item-corporate:last-child {
        border-right: none;
    }

    .stat-item-corporate:hover {
        padding-left: 0;
    }

    .left-corporate {
        border-right: none;
        padding: 32px 24px;
    }

    .trust-corporate {
        padding: 12px 24px;
    }
}

@media(max-width:480px) {
    .keypoints-corporate {
        flex-direction: column;
    }

    .stat-list-corporate {
        flex-wrap: wrap;
        gap: 6px;
        padding: 14px 18px;
    }

    .stat-item-corporate {
        flex: 1;
        min-width: 80px;
        padding: 8px 8px;
        border-right: none !important;
        text-align: center;
    }
}