/* Public navigation final compact fix */
.sk-public-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(15, 84, 140, .08);
    backdrop-filter: blur(16px);
}

.sk-public-nav__inner {
    width: min(1180px, calc(100% - 40px));
    height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.sk-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #003d59;
    font-weight: 900;
    font-size: 1.14rem;
    text-decoration: none;
    white-space: nowrap;
}

    .sk-brand:hover {
        color: #003d59;
    }

.sk-brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #0f548c, #006e64);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 84, 140, .16);
}

.sk-public-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    .sk-public-nav__links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 12px;
        border-radius: 999px;
        color: #5f6d82;
        font-size: .91rem;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
        transition: color .16s ease, background .16s ease, transform .16s ease;
    }

        .sk-public-nav__links a:hover {
            color: #003d59;
            background: rgba(15, 84, 140, .07);
            transform: translateY(-1px);
        }

.sk-public-nav__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.sk-lang,
.sk-link-btn,
.sk-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.sk-lang {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #64748b;
    background: #fff;
    border: 1px solid rgba(15, 84, 140, .12);
    font-size: .85rem;
    font-weight: 900;
}

.sk-link-btn {
    min-height: 38px;
    padding: 0 12px;
    color: #003d59;
    font-size: .92rem;
    font-weight: 900;
}

.sk-join-btn {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0f548c, #006e64);
    font-size: .92rem;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 61, 89, .18);
}

    .sk-join-btn:hover {
        color: #fff;
    }

/* Hero final compact fix */
.sk-home-hero {
    padding: 58px 24px 60px !important;
    border-bottom-left-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}

.sk-home-hero__inner {
    width: min(1180px, 100%);
    grid-template-columns: minmax(0, 1.25fr) 400px !important;
    gap: 46px !important;
}

.sk-home-hero__content h1 {
    max-width: 690px !important;
    margin: 20px 0 16px !important;
    font-size: clamp(2.7rem, 4.25vw, 3.8rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.055em !important;
}

.sk-hero-lead {
    max-width: 650px !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.sk-home-hero__panel {
    padding: 18px !important;
    border-radius: 26px !important;
}

.sk-stat-card {
    padding: 22px !important;
    border-radius: 20px !important;
}

    .sk-stat-card strong {
        font-size: 1.8rem !important;
    }

.sk-section {
    padding-top: 62px !important;
}

.sk-section-head h2,
.sk-split-card h2,
.sk-app-section h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.55rem) !important;
    letter-spacing: -.04em !important;
}

@media (max-width: 1024px) {
    .sk-home-hero__inner {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 850px) {
    .sk-public-nav__inner {
        width: min(100% - 28px, 1180px);
        height: auto;
        min-height: 72px;
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 10px 0;
    }

    .sk-public-nav__links {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .sk-public-nav__links::-webkit-scrollbar {
            display: none;
        }

    .sk-link-btn {
        display: none;
    }
}

@media (max-width: 560px) {
    .sk-home-hero {
        padding: 40px 16px 44px !important;
    }

    .sk-home-hero__content h1 {
        font-size: clamp(2.15rem, 10vw, 3rem) !important;
    }

    .sk-brand span:last-child {
        font-size: 1rem;
    }

    .sk-brand-mark {
        width: 36px;
        height: 36px;
    }

    .sk-lang {
        width: 34px;
        height: 34px;
    }

    .sk-join-btn {
        min-height: 38px;
        padding: 0 15px;
    }
}
