/* Unisoft — Coming Soon */
body.uni-cs-page {
    --uni-green: #86b047;
    --uni-blue: #223778;
    --uni-blue-light: #2f4a9e;
    --uni-ice: #95c4d4;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
    font-size: var(--body-font-size, 16px);
    font-weight: 400;
    line-height: 1.8;
    color: #fff !important;
    background: var(--uni-blue) !important;
    overflow-x: hidden;
}

html:has(body.uni-cs-page) {
    background: var(--uni-blue);
}

.uni-cs-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(134, 176, 71, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 75%, rgba(149, 196, 212, 0.18), transparent 50%),
        linear-gradient(145deg, #1a2d63 0%, var(--uni-blue) 42%, #162a52 100%);
}

.uni-cs-grid {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.uni-cs-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    animation: uni-cs-float 14s ease-in-out infinite;
}

.uni-cs-orb--1 {
    width: 320px;
    height: 320px;
    background: rgba(134, 176, 71, 0.35);
    top: -80px;
    right: 10%;
}

.uni-cs-orb--2 {
    width: 260px;
    height: 260px;
    background: rgba(149, 196, 212, 0.25);
    bottom: 5%;
    left: -60px;
    animation-delay: -5s;
}

@keyframes uni-cs-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -24px) scale(1.05); }
}

.uni-cs-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px 64px;
}

.uni-cs-card {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 48px 36px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.uni-cs-logo img {
    max-height: 56px;
    width: auto;
    margin-bottom: 28px;
}

.uni-cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--uni-green);
    background: rgba(134, 176, 71, 0.15);
    border: 1px solid rgba(134, 176, 71, 0.35);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.uni-cs-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--uni-green);
    box-shadow: 0 0 12px var(--uni-green);
    animation: uni-cs-pulse 2s ease-in-out infinite;
}

@keyframes uni-cs-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.uni-cs-title {
    font-family: var(--heading-font, "Manrope", Helvetica, Arial, sans-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--heading-font-weight, 700);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: #fff !important;
}

.uni-cs-title span {
    color: var(--uni-green);
}

.uni-cs-lead {
    font-family: var(--body-font, "Manrope", Helvetica, Arial, sans-serif);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 28px;
}

.uni-cs-progress {
    margin: 0 auto 28px;
    text-align: left;
}

.uni-cs-progress__track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    margin-bottom: 10px;
}

.uni-cs-progress__bar {
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--uni-green), #a8cc6a);
    box-shadow: 0 0 16px rgba(134, 176, 71, 0.45);
    animation: uni-cs-progress-pulse 2.4s ease-in-out infinite;
}

@keyframes uni-cs-progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.uni-cs-progress__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.uni-cs-steps {
    list-style: none;
    margin: 0 auto 28px;
    padding: 0;
    display: grid;
    gap: 10px;
    text-align: left;
}

.uni-cs-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 500;
}

.uni-cs-step__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.uni-cs-step.is-done {
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(134, 176, 71, 0.28);
    background: rgba(134, 176, 71, 0.08);
}

.uni-cs-step.is-done .uni-cs-step__icon {
    background: rgba(134, 176, 71, 0.22);
    color: var(--uni-green);
}

.uni-cs-step.is-active {
    color: #fff;
    border-color: rgba(134, 176, 71, 0.4);
    background: rgba(134, 176, 71, 0.12);
    box-shadow: 0 0 0 1px rgba(134, 176, 71, 0.1) inset;
}

.uni-cs-step.is-active .uni-cs-step__icon {
    background: rgba(134, 176, 71, 0.25);
    color: #fff;
}

.uni-cs-step.is-active .uni-cs-step__icon i {
    animation: uni-cs-spin 2.5s linear infinite;
}

@keyframes uni-cs-spin {
    to { transform: rotate(360deg); }
}

.uni-cs-note {
    margin: 0 auto 24px;
    max-width: 480px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

.uni-cs-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.uni-cs-tag {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.uni-cs-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    margin-bottom: 28px;
}

.uni-cs-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.uni-cs-contact a:hover {
    color: var(--uni-green);
    transform: translateY(-2px);
}

.uni-cs-contact i {
    font-size: 18px;
    opacity: 0.85;
}

.uni-cs-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.uni-cs-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.uni-cs-social a i {
    font-style: normal;
    line-height: 1;
    background: transparent !important;
    border-color: transparent !important;
}
.social-icons i:hover {
    background: transparent !important;
    border-color: transparent !important;
    color: #fff !important;
}
.uni-cs-social a:hover {
    background: var(--uni-green);
    border-color: var(--uni-green);
    transform: translateY(-3px);
    color: #fff !important;
}

.uni-cs-foot {
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 576px) {
    .uni-cs-card {
        padding: 36px 22px 60px;
    }

    .uni-cs-progress,
    .uni-cs-steps {
        max-width: 100%;
    }

    .uni-cs-step {
        padding: 10px 12px;
        font-size: 13px;
    }

    .uni-cs-step__icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
