body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f0f4f8;
}

.info-card {
    width: min(440px, 96vw);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .10);
    padding: 48px 44px;
    animation: muncul .5s ease both;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f8fd;
    border: 1px solid #a8e8f5;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #0baac8;
}

.logo-dot {
    width: 7px;
    height: 7px;
    background: #1ec6e6;
    border-radius: 50%;
    animation: kedip 2s ease-in-out infinite;
}

.icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(30, 198, 230, .10);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ec6e6;
    font-size: 28px;
}

.contact-box {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(30, 198, 230, .10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1ec6e6;
    font-size: 17px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #9ca3af;
}

.contact-val {
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.btn-back {
    height: 48px;
    background: #1ec6e6;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(30, 198, 230, .30);
    transition: background .2s, transform .1s, box-shadow .2s;
    text-decoration: none;
}

.btn-back:hover {
    background: #0baac8;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 198, 230, .40);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.divider-text {
    font-size: 11px;
    color: #c4c9d2;
    white-space: nowrap;
}

@keyframes muncul {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kedip {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: .6;
    }
}