/*
 * SK-Synergie main landing page
 * Consistent visual system matching the modern product landing pages.
 */

:root {
    --sk-navy: #0a1a2f;
    --sk-navy-2: #10243d;
    --sk-navy-3: #173553;
    --sk-blue: #0052a1;
    --sk-blue-light: #4da3ff;
    --sk-ink: #122238;
    --sk-muted: #64748b;
    --sk-line: #dce5ef;
    --sk-soft: #f4f7fb;
    --sk-soft-2: #eef3f8;
    --sk-white: #ffffff;
    --sk-radius-sm: 14px;
    --sk-radius: 22px;
    --sk-radius-lg: 32px;
    --sk-shadow-sm: 0 12px 30px rgba(10, 26, 47, .08);
    --sk-shadow: 0 24px 70px rgba(10, 26, 47, .14);
    --sk-shadow-strong: 0 36px 100px rgba(4, 15, 30, .28);
    --sk-content: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.sk-main-page {
    margin: 0;
    color: var(--sk-ink);
    background: var(--sk-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.sk-main-page p,
body.sk-main-page a,
body.sk-main-page button,
body.sk-main-page summary,
body.sk-main-page div,
body.sk-main-page span {
    font-family: inherit;
}

body.sk-main-page a {
    color: inherit;
}

body.sk-main-page img {
    max-width: 100%;
}

body.sk-main-page h1,
body.sk-main-page h2,
body.sk-main-page h3,
body.sk-main-page p {
    margin-top: 0;
}

.sk-main-container {
    width: min(var(--sk-content), calc(100% - 48px));
    margin-inline: auto;
}

.sk-eyebrow,
.sk-section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--sk-blue);
    background: rgba(0, 82, 161, .08);
    border: 1px solid rgba(0, 82, 161, .16);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .095em;
    line-height: 1;
    text-transform: uppercase;
}

/* Header */
.sk-site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 9990;
    min-height: 76px;
    background: rgba(255, 255, 255, .93);
    border-bottom: 1px solid rgba(10, 26, 47, .08);
    box-shadow: 0 6px 24px rgba(10, 26, 47, .04);
    backdrop-filter: blur(18px);
    transition: min-height .2s ease, box-shadow .2s ease;
}

.sk-site-header.is-scrolled {
    min-height: 66px;
    box-shadow: 0 12px 34px rgba(10, 26, 47, .10);
}

.sk-header-inner {
    width: min(1320px, calc(100% - 44px));
    min-height: inherit;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sk-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--sk-ink) !important;
    text-decoration: none !important;
    flex: 0 0 auto;
}

.sk-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(0, 82, 161, .18);
}

.sk-brand span {
    display: grid;
    gap: 1px;
}

.sk-brand strong {
    color: var(--sk-navy);
    font-size: .96rem;
    font-weight: 880;
    line-height: 1.1;
}

.sk-brand small {
    color: var(--sk-muted);
    font-size: .66rem;
    font-weight: 650;
    letter-spacing: .02em;
}

.sk-main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.sk-main-nav > a,
.sk-nav-dropdown > button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    color: #425269 !important;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .025em;
    text-decoration: none !important;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.sk-main-nav > a:hover,
.sk-main-nav > a.is-active,
.sk-nav-dropdown > button:hover,
.sk-nav-dropdown.is-open > button {
    color: var(--sk-blue) !important;
    background: #edf5fc;
}

.sk-main-nav > .sk-nav-cta {
    margin-left: 6px;
    color: #ffffff !important;
    background: var(--sk-navy) !important;
    box-shadow: 0 8px 20px rgba(10, 26, 47, .16);
}

.sk-main-nav > .sk-nav-cta:hover {
    color: #ffffff !important;
    background: var(--sk-blue) !important;
}

.sk-nav-dropdown {
    position: relative;
}

.sk-nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 280px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--sk-line);
    border-radius: 17px;
    box-shadow: var(--sk-shadow);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sk-nav-dropdown.is-open .sk-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.sk-nav-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    color: var(--sk-ink) !important;
    border-radius: 10px;
    font-size: .79rem;
    font-weight: 760;
    text-decoration: none !important;
}

.sk-nav-menu a:hover {
    background: var(--sk-soft);
}

.sk-nav-menu a small {
    margin-left: auto;
    color: #8b5f72;
    font-size: .62rem;
    font-weight: 760;
}

.sk-nav-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    background: var(--product-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--product-color) 15%, transparent);
}

.sk-lang-switch {
    display: inline-flex;
    padding: 3px;
    background: #edf2f7;
    border: 1px solid #e3e9f0;
    border-radius: 10px;
}

.sk-lang-switch a {
    min-width: 32px;
    min-height: 30px;
    display: grid;
    place-items: center;
    color: #718096 !important;
    border-radius: 8px;
    font-size: .68rem;
    font-weight: 850;
    text-decoration: none !important;
}

.sk-lang-switch a.is-active {
    color: var(--sk-blue) !important;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(10, 26, 47, .09);
}

.sk-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: #f0f4f8;
    border: 1px solid var(--sk-line);
    border-radius: 12px;
}

.sk-nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--sk-navy);
    border-radius: 2px;
}

/* Hero */
.sk-main-hero {
    position: relative;
    min-height: 830px;
    display: grid;
    align-items: center;
    padding: 146px 0 120px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 77% 16%, rgba(77, 163, 255, .20), transparent 27%),
        radial-gradient(circle at 10% 90%, rgba(0, 82, 161, .24), transparent 28%),
        linear-gradient(135deg, #081727 0%, #0b1f35 52%, #102d4c 100%);
}

.sk-main-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 93%);
}

.sk-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(.2px);
}

.sk-hero-orb-one {
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -110px;
    background: rgba(0, 82, 161, .34);
}

.sk-hero-orb-two {
    width: 180px;
    height: 180px;
    left: 44%;
    top: 128px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.sk-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
    align-items: center;
    gap: clamp(48px, 7vw, 94px);
}

.sk-hero-copy {
    max-width: 650px;
}

.sk-hero-copy .sk-eyebrow {
    margin-bottom: 20px;
    color: #83c5ff;
    background: rgba(77, 163, 255, .11);
    border-color: rgba(77, 163, 255, .25);
}

.sk-hero-copy h1 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(2.85rem, 4.35vw, 5.25rem);
    font-weight: 920;
    letter-spacing: -.054em;
    line-height: .995;
}

.sk-hero-copy .sk-hero-subtitle {
    margin-bottom: 20px;
    color: #dbe8f5;
    font-size: clamp(1.12rem, 1.5vw, 1.34rem);
    font-weight: 650;
    line-height: 1.55;
}

.sk-hero-copy > p:not(.sk-hero-subtitle) {
    max-width: 630px;
    margin-bottom: 12px;
    color: #b8c9da;
    font-size: .98rem;
    line-height: 1.72;
}

.sk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.sk-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 830;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.sk-btn:hover {
    transform: translateY(-2px);
}

.sk-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0875d1, #0052a1);
    box-shadow: 0 13px 32px rgba(0, 82, 161, .34);
}

.sk-btn-primary:hover {
    color: #ffffff !important;
    box-shadow: 0 17px 40px rgba(0, 82, 161, .42);
}

.sk-btn-light {
    color: var(--sk-ink) !important;
    background: #ffffff;
    border-color: rgba(255, 255, 255, .75);
    box-shadow: 0 12px 28px rgba(2, 12, 24, .16);
}

.sk-btn-light:hover {
    color: var(--sk-blue) !important;
}

.sk-btn-ghost {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .18);
}

.sk-btn-ghost:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .13);
}

.sk-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.sk-trust-row span {
    padding: 7px 10px;
    color: #d6e3ef;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 999px;
    font-size: .69rem;
    font-weight: 720;
}

.sk-suite-visual {
    position: relative;
    min-height: 560px;
}

.sk-suite-frame {
    position: absolute;
    top: 56px;
    right: 0;
    width: min(620px, 94%);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 24px;
    box-shadow: 0 44px 120px rgba(0, 0, 0, .45);
    transform: perspective(1300px) rotateY(-5deg) rotateX(1.5deg);
}

.sk-suite-windowbar {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    background: #f5f7fa;
    border-bottom: 1px solid #e4e9ef;
}

.sk-suite-windowbar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.sk-suite-windowbar span:nth-child(1) { background: #ff7b72; }
.sk-suite-windowbar span:nth-child(2) { background: #f6c454; }
.sk-suite-windowbar span:nth-child(3) { background: #45c46b; }

.sk-suite-windowbar small {
    margin-left: auto;
    color: #718096;
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.sk-suite-main-image {
    width: 100%;
    height: 385px;
    display: block;
    object-fit: cover;
    object-position: top;
}

.sk-suite-label {
    position: absolute;
    right: 18px;
    bottom: 16px;
    padding: 8px 12px;
    color: #ffffff;
    background: #0052a1;
    border-radius: 10px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .05em;
    box-shadow: 0 10px 25px rgba(0, 82, 161, .30);
}

.sk-suite-mini {
    position: absolute;
    width: 230px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 17px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, .34);
}

.sk-suite-mini span {
    height: 33px;
    display: flex;
    align-items: center;
    padding: 0 11px;
    color: #ffffff;
    font-size: .60rem;
    font-weight: 900;
    letter-spacing: .07em;
}

.sk-suite-mini img {
    width: 100%;
    height: 124px;
    display: block;
    object-fit: cover;
    object-position: top;
}

.sk-suite-mini-docs {
    left: -18px;
    top: 4px;
    transform: rotate(-3deg);
}

.sk-suite-mini-docs span { background: #3a4a58; }

.sk-suite-mini-resources {
    left: 8px;
    bottom: 20px;
    transform: rotate(2.5deg);
}

.sk-suite-mini-resources span { background: #13795b; }

.sk-suite-mini-executive {
    right: 8px;
    bottom: -5px;
    transform: rotate(-2deg);
}

.sk-suite-mini-executive span { background: #7b3fb3; }

.sk-suite-brand-stack {
    position: absolute;
    top: 6px;
    right: 24px;
    display: grid;
    grid-template-columns: repeat(3, 10px);
    gap: 7px;
}

.sk-suite-brand-stack i {
    width: 10px;
    height: 10px;
    display: block;
    background: var(--product-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}

.sk-scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: #c9d8e7 !important;
    font-size: .68rem;
    font-weight: 750;
    text-decoration: none !important;
    transform: translateX(-50%);
}

.sk-scroll-cue i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    font-style: normal;
    animation: skBounce 1.8s ease-in-out infinite;
}

@keyframes skBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Intro */
.sk-intro-strip {
    padding: 64px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--sk-line);
}

.sk-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 70px;
}

.sk-intro-grid h2 {
    margin: 13px 0 0;
    color: var(--sk-navy);
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    font-weight: 880;
    letter-spacing: -.04em;
    line-height: 1.08;
}

.sk-intro-grid p {
    margin: 0;
    color: var(--sk-muted);
    font-size: 1.03rem;
    line-height: 1.78;
}

/* Generic section heading */
.sk-section-heading {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.sk-section-heading .sk-section-kicker {
    margin-inline: auto;
}

.sk-section-heading h2 {
    margin: 15px auto 17px;
    color: var(--sk-navy);
    font-size: clamp(2.15rem, 3.4vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -.048em;
    line-height: 1.08;
}

.sk-section-heading p {
    max-width: 850px;
    margin: 0 auto;
    color: var(--sk-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

/* Products */
.sk-products-section {
    padding: 106px 0 110px;
    background:
        radial-gradient(circle at 0 0, rgba(0,82,161,.06), transparent 25%),
        linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.sk-portfolio-badges,
.sk-process-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
}

.sk-portfolio-badges span,
.sk-process-badges span {
    padding: 8px 12px;
    color: #526277;
    background: #ffffff;
    border: 1px solid var(--sk-line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(10, 26, 47, .04);
    font-size: .70rem;
    font-weight: 760;
}

.sk-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sk-product-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--sk-ink) !important;
    background: #ffffff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow-sm);
    text-decoration: none !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.sk-product-card::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--product-color);
    opacity: 0;
    transition: opacity .24s ease;
}

.sk-product-card:hover {
    color: var(--sk-ink) !important;
    border-color: color-mix(in srgb, var(--product-color) 35%, var(--sk-line));
    box-shadow: 0 28px 64px rgba(10, 26, 47, .16);
    transform: translateY(-7px);
}

.sk-product-card:hover::after {
    opacity: 1;
}

.sk-product-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #e9eef4;
    border-bottom: 1px solid var(--sk-line);
}

.sk-product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 26, 47, .20), transparent 55%);
    pointer-events: none;
}

.sk-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: transform .45s ease;
}

.sk-product-card:hover .sk-product-image img {
    transform: scale(1.035);
}

.sk-product-badge,
.sk-product-status {
    position: absolute;
    z-index: 2;
    top: 15px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sk-product-badge {
    left: 15px;
    color: #ffffff;
    background: var(--product-color);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--product-color) 36%, transparent);
}

.sk-product-status {
    right: 15px;
    color: #7c435d;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(164, 94, 120, .25);
}

.sk-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 25px 23px;
}

.sk-product-content h3 {
    margin: 0 0 11px;
    color: var(--product-color);
    font-size: 1.35rem;
    font-weight: 880;
    letter-spacing: -.026em;
}

.sk-product-content p {
    flex: 1;
    margin: 0 0 21px;
    color: #5c6b7f;
    font-size: .87rem;
    line-height: 1.68;
}

.sk-product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--product-color);
    font-size: .75rem;
    font-weight: 860;
}

.sk-product-link i {
    font-style: normal;
    transition: transform .2s ease;
}

.sk-product-card:hover .sk-product-link i {
    transform: translateX(4px);
}

.sk-portfolio-note {
    max-width: 1000px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
    margin: 42px auto 0;
    padding: 26px 30px;
    background: #ffffff;
    border: 1px solid var(--sk-line);
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow-sm);
}

.sk-note-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--sk-navy);
    border-radius: 15px;
    font-size: .76rem;
    font-weight: 900;
}

.sk-portfolio-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--sk-navy);
    font-size: 1rem;
    font-weight: 850;
}

.sk-portfolio-note p {
    margin: 0;
    color: var(--sk-muted);
    font-size: .88rem;
    line-height: 1.65;
}

/* Process */
.sk-process-section {
    position: relative;
    padding: 106px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 10%, rgba(77, 163, 255, .16), transparent 27%),
        radial-gradient(circle at 0 100%, rgba(123, 63, 179, .14), transparent 30%),
        linear-gradient(135deg, #081727, #0d2239 55%, #12385b);
}

.sk-section-heading-light h2 {
    color: #ffffff;
}

.sk-section-heading-light p {
    color: #bccbdd;
}

.sk-section-heading-light .sk-section-kicker {
    color: #83c5ff;
    background: rgba(77, 163, 255, .10);
    border-color: rgba(77, 163, 255, .24);
}

.sk-process-section .sk-process-badges span {
    color: #d4e0ec;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
}

.sk-process-board {
    padding: 33px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--sk-radius-lg);
    box-shadow: 0 28px 80px rgba(0,0,0,.20);
    backdrop-filter: blur(8px);
}

.sk-process-track,
.sk-process-branch {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
}

.sk-process-track > i {
    display: grid;
    place-items: center;
    color: #78b8ed;
    font-size: 1.45rem;
    font-style: normal;
}

.sk-process-node {
    position: relative;
    flex: 1;
    max-width: 260px;
    min-height: 136px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 21px;
    color: var(--sk-ink) !important;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .14);
    border-top: 5px solid var(--node-color);
    border-radius: 17px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .20);
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sk-process-node:hover {
    color: var(--sk-ink) !important;
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .28);
}

.sk-process-node b {
    margin-bottom: 8px;
    color: var(--node-color);
    font-size: .86rem;
    font-weight: 900;
}

.sk-process-node span {
    color: #64748b;
    font-size: .72rem;
    line-height: 1.55;
}

.sk-process-branch-label {
    margin: 30px 0 12px;
    color: #8dc7f6;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.sk-process-branch .sk-process-node {
    max-width: 330px;
}

.sk-process-footer {
    max-width: 960px;
    margin: 28px auto 0;
    padding: 23px 26px;
    color: #c5d3e1;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 17px;
    font-size: .84rem;
    line-height: 1.7;
    text-align: center;
}

.sk-process-footer strong {
    color: #ffffff;
}

/* Product stories */
.sk-product-stories {
    padding: 105px 0;
    background: #ffffff;
}

.sk-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sk-story-card {
    --story-color: var(--sk-blue);
    min-height: 365px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .82fr);
    align-items: center;
    gap: 24px;
    padding: 38px 0 38px 38px;
    overflow: hidden;
    background: linear-gradient(145deg, color-mix(in srgb, var(--story-color) 7%, #ffffff), #ffffff);
    border: 1px solid color-mix(in srgb, var(--story-color) 18%, var(--sk-line));
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow-sm);
}

.sk-story-copy > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--story-color);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.sk-story-copy h2 {
    margin-bottom: 14px;
    color: var(--sk-navy);
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.sk-story-copy p {
    margin-bottom: 20px;
    color: var(--sk-muted);
    font-size: .88rem;
    line-height: 1.65;
}

.sk-text-link {
    color: var(--story-color) !important;
    font-size: .76rem;
    font-weight: 860;
    text-decoration: none !important;
}

.sk-story-card img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    object-position: top left;
    border: 1px solid var(--sk-line);
    border-radius: 15px 0 0 15px;
    box-shadow: 0 18px 42px rgba(10, 26, 47, .16);
}

.sk-story-evm { --story-color: #0052a1; }
.sk-story-resources { --story-color: #13795b; }
.sk-story-executive { --story-color: #7b3fb3; }
.sk-story-docs { --story-color: #3a4a58; }

/* Services */
.sk-services-section {
    padding: 105px 0;
    background: var(--sk-soft);
}

.sk-services-intro {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 70px;
    margin-bottom: 36px;
}

.sk-services-intro h2 {
    margin: 14px 0 0;
    color: var(--sk-navy);
    font-size: clamp(2rem, 3vw, 3.35rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.sk-services-copy {
    color: var(--sk-muted);
    font-size: .95rem;
    line-height: 1.72;
}

.sk-service-accordion {
    display: grid;
    gap: 12px;
}

.sk-service-accordion details,
.sk-faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--sk-line);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(10, 26, 47, .045);
}

.sk-service-accordion summary,
.sk-faq-item summary {
    list-style: none;
    cursor: pointer;
}

.sk-service-accordion summary::-webkit-details-marker,
.sk-faq-item summary::-webkit-details-marker {
    display: none;
}

.sk-service-accordion summary {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 15px 20px;
}

.sk-service-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--sk-navy);
    border-radius: 12px;
    font-size: .69rem;
    font-weight: 900;
}

.sk-service-accordion summary strong {
    color: var(--sk-navy);
    font-size: .98rem;
    font-weight: 850;
}

.sk-service-accordion summary i,
.sk-faq-item summary i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--sk-blue);
    background: #edf5fc;
    border-radius: 9px;
    font-style: normal;
    font-weight: 800;
    transition: transform .2s ease;
}

.sk-service-accordion details[open] summary i,
.sk-faq-item[open] summary i {
    transform: rotate(45deg);
}

.sk-service-body {
    padding: 0 24px 28px 80px;
    color: #5c6b7f;
    font-size: .88rem;
    line-height: 1.76;
}

.sk-service-body strong {
    color: var(--sk-ink);
}

.sk-services-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    margin-top: 28px;
    padding: 26px 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sk-navy), #123b61);
    border-radius: var(--sk-radius);
    box-shadow: var(--sk-shadow);
}

.sk-services-cta p {
    margin: 0;
    color: #c8d6e4;
    font-size: .88rem;
    line-height: 1.7;
}

/* FAQ */
.sk-faq-section {
    padding: 105px 0;
    background: #ffffff;
}

.sk-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sk-faq-item summary {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 14px 17px;
}

.sk-faq-item summary > span {
    color: var(--sk-blue);
    font-size: .65rem;
    font-weight: 900;
}

.sk-faq-item summary strong {
    color: var(--sk-navy);
    font-size: .84rem;
    font-weight: 830;
    line-height: 1.4;
}

.sk-faq-item > div {
    padding: 0 18px 22px 48px;
    color: var(--sk-muted);
    font-size: .82rem;
    line-height: 1.72;
}

.sk-faq-item > div p {
    margin: 0;
}

/* Final CTA */
.sk-final-cta {
    padding: 90px 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 15%, rgba(77, 163, 255, .18), transparent 30%),
        linear-gradient(135deg, #081727, #102b49);
}

.sk-final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    align-items: center;
    gap: 60px;
}

.sk-final-cta .sk-section-kicker {
    color: #83c5ff;
    background: rgba(77, 163, 255, .11);
    border-color: rgba(77, 163, 255, .25);
}

.sk-final-cta h2 {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: clamp(1.55rem, 2.5vw, 2.7rem);
    font-weight: 880;
    letter-spacing: -.035em;
    line-height: 1.22;
}

.sk-final-actions {
    display: grid;
    gap: 10px;
}

/* Footer */
.sk-site-footer {
    padding: 70px 0 0;
    color: #b8c6d5;
    background: #06121f;
}

.sk-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .85fr .7fr;
    gap: 70px;
    padding-bottom: 50px;
}

.sk-footer-brand .sk-brand strong {
    color: #ffffff;
}

.sk-footer-brand .sk-brand small {
    color: #8fa1b5;
}

.sk-footer-brand p {
    max-width: 480px;
    margin: 22px 0 0;
    color: #8fa1b5;
    font-size: .82rem;
    line-height: 1.72;
}

.sk-footer-grid > div:not(.sk-footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.sk-footer-grid > div > strong {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.sk-footer-grid > div > a {
    color: #9baabc !important;
    font-size: .78rem;
    text-decoration: none !important;
}

.sk-footer-grid > div > a:hover {
    color: #ffffff !important;
}

.sk-footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #7f90a3;
    font-size: .72rem;
}

.sk-footer-bottom .sk-lang-switch {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.08);
}

.sk-footer-bottom .sk-lang-switch a.is-active {
    background: rgba(255,255,255,.10);
}

/* Promo banner */
.promo-banner {
    position: fixed;
    z-index: 9995;
    left: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    padding: 18px;
    color: #d8e4ef;
    background: rgba(8, 23, 39, .96);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    backdrop-filter: blur(14px);
}

.promo-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #aebdcb;
    background: transparent;
    border: 0;
    font-size: 1.25rem;
    cursor: pointer;
}

.promo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: #ffffff;
    background: #0052a1;
    border-radius: 11px;
    font-size: .68rem;
    font-weight: 900;
}

.promo-text strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: .88rem;
    font-weight: 850;
}

.promo-text span {
    color: #aebdcb;
    font-size: .76rem;
    line-height: 1.55;
}

.promo-buttons {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.promo-demo,
.promo-ok {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 9px;
    font-size: .72rem;
    font-weight: 820;
    text-decoration: none !important;
}

.promo-demo {
    flex: 1;
    color: #ffffff !important;
    background: #0052a1;
    border: 1px solid #0052a1;
}

.promo-ok {
    color: #c7d4df;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    cursor: pointer;
}

/* Popups */
.sk-website-popup,
.development-popup {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 15, 29, .78);
    backdrop-filter: blur(8px);
}

.development-popup.is-open {
    display: flex !important;
}

.sk-website-box,
.development-popup-box {
    position: relative;
    width: 100%;
    max-width: 580px;
    padding: 38px 36px 34px;
    color: var(--sk-navy);
    background:
        radial-gradient(circle at top right, rgba(77,163,255,.13), transparent 35%),
        linear-gradient(145deg, #ffffff, #f4f7fb);
    border: 1px solid rgba(10, 26, 47, .10);
    border-radius: 24px;
    box-shadow: 0 35px 100px rgba(0,0,0,.45);
    text-align: center;
}

.sk-website-close,
.development-popup-close {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--sk-navy);
    background: #e8eef5;
    border: 0;
    border-radius: 50%;
    font-size: 1.55rem;
    cursor: pointer;
}

.sk-website-kicker,
.development-popup-kicker {
    margin-bottom: 10px;
    color: var(--sk-blue);
    font-size: .70rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sk-website-title,
.development-popup-box h2 {
    margin: 0 0 16px;
    color: var(--sk-navy);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -.03em;
}

.sk-website-text,
.development-popup-box p {
    color: #526277;
    font-size: .91rem;
    line-height: 1.7;
}

.development-popup-lead {
    color: #27364a !important;
    font-size: 1.04rem !important;
    font-weight: 760;
    line-height: 1.55 !important;
}

.development-popup-note {
    margin: 22px 0 26px;
    padding: 15px 17px;
    color: #174e55;
    background: #eaf4f5;
    border: 1px solid #c7e1e4;
    border-radius: 14px;
    font-size: .82rem;
    font-weight: 730;
}

.sk-website-actions,
.development-popup-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sk-website-btn-main,
.sk-website-btn-secondary,
.development-popup-primary,
.development-popup-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 12px;
    font-size: .78rem;
    font-weight: 850;
    text-decoration: none !important;
}

.sk-website-btn-main,
.development-popup-primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0a1a2f, #0052a1);
    border: 0;
}

.sk-website-btn-secondary,
.development-popup-secondary {
    color: var(--sk-navy);
    background: #ffffff;
    border: 1px solid #ccd7e3;
    cursor: pointer;
}

/* Registration wall */
.sk-wall-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background:
        radial-gradient(circle at 80% 15%, rgba(77,163,255,.18), transparent 28%),
        linear-gradient(135deg, #081727, #102b49);
}

.sk-wall-card {
    width: min(650px, 100%);
    padding: 42px;
    color: var(--sk-ink);
    background: #ffffff;
    border-radius: 26px;
    box-shadow: var(--sk-shadow-strong);
    text-align: center;
}

.sk-wall-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: #ffffff;
    background: var(--sk-blue);
    border-radius: 15px;
    font-size: .76rem;
    font-weight: 900;
}

.sk-wall-card .sk-eyebrow {
    margin-inline: auto;
}

.sk-wall-card h1 {
    margin: 15px 0;
    color: var(--sk-navy);
    font-size: 2rem;
    font-weight: 900;
}

.sk-wall-card p {
    color: var(--sk-muted);
    line-height: 1.7;
}

.sk-wall-card .sk-btn {
    flex-direction: column;
    margin-top: 10px;
}

.sk-wall-card .sk-btn small {
    opacity: .8;
}

.sk-wall-message {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--sk-line);
    color: #7b3c3c;
    font-size: .83rem;
}

/* Existing widgets */
.klaro .cookie-notice {
    right: 20px !important;
    bottom: 20px !important;
    left: auto !important;
    margin: 0 !important;
    z-index: 10000 !important;
}

#scrollToTop {
    z-index: 9980;
}

@media (max-width: 1180px) {
    .sk-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, .88fr);
        gap: 40px;
    }

    .sk-suite-mini {
        width: 205px;
    }

    .sk-main-nav > a,
    .sk-nav-dropdown > button {
        padding-inline: 9px;
    }
}

@media (max-width: 991px) {
    .sk-main-container,
    .sk-header-inner {
        width: min(100% - 32px, var(--sk-content));
    }

    .sk-nav-toggle {
        display: block;
    }

    .sk-main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        display: none;
        max-height: calc(100vh - 95px);
        align-items: stretch;
        flex-direction: column;
        gap: 3px;
        padding: 12px;
        overflow-y: auto;
        background: rgba(255,255,255,.99);
        border: 1px solid var(--sk-line);
        border-radius: 0 0 18px 18px;
        box-shadow: var(--sk-shadow);
    }

    .sk-main-nav.is-open {
        display: flex;
    }

    .sk-main-nav > a,
    .sk-nav-dropdown > button {
        width: 100%;
        justify-content: space-between;
        padding-inline: 13px;
    }

    .sk-main-nav > .sk-nav-cta {
        margin-left: 0;
        justify-content: center;
    }

    .sk-nav-dropdown {
        width: 100%;
    }

    .sk-nav-menu {
        position: static;
        width: 100%;
        display: none;
        margin-top: 4px;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 12px;
        box-shadow: none;
    }

    .sk-nav-dropdown.is-open .sk-nav-menu {
        display: block;
        transform: none;
    }

    .sk-main-nav .sk-lang-switch {
        align-self: flex-start;
        margin: 5px 0 2px 10px;
    }

    .sk-main-hero {
        min-height: auto;
        padding: 126px 0 95px;
    }

    .sk-hero-grid {
        grid-template-columns: 1fr;
    }

    .sk-hero-copy {
        max-width: 760px;
    }

    .sk-suite-visual {
        width: min(700px, 100%);
        min-height: 540px;
        margin-inline: auto;
    }

    .sk-intro-grid,
    .sk-services-intro,
    .sk-final-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sk-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sk-story-grid {
        grid-template-columns: 1fr;
    }

    .sk-process-track {
        flex-wrap: wrap;
    }

    .sk-process-track > i {
        display: none;
    }

    .sk-process-node {
        min-width: calc(50% - 12px);
        max-width: none;
    }

    .sk-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 720px) {
    .sk-main-container,
    .sk-header-inner {
        width: min(100% - 24px, var(--sk-content));
    }

    .sk-site-header {
        min-height: 68px;
    }

    .sk-brand img {
        width: 38px;
        height: 38px;
    }

    .sk-brand small {
        display: none;
    }

    .sk-main-hero {
        padding: 112px 0 84px;
    }

    .sk-hero-copy h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .sk-hero-actions {
        display: grid;
    }

    .sk-hero-actions .sk-btn {
        width: 100%;
    }

    .sk-suite-visual {
        min-height: 455px;
    }

    .sk-suite-frame {
        top: 44px;
        width: 100%;
        transform: none;
    }

    .sk-suite-main-image {
        height: 265px;
    }

    .sk-suite-mini {
        width: 170px;
    }

    .sk-suite-mini img {
        height: 88px;
    }

    .sk-suite-mini-docs {
        left: -4px;
        top: 4px;
    }

    .sk-suite-mini-resources {
        left: 0;
        bottom: 0;
    }

    .sk-suite-mini-executive {
        right: 0;
        bottom: -10px;
    }

    .sk-scroll-cue {
        display: none;
    }

    .sk-intro-strip,
    .sk-products-section,
    .sk-process-section,
    .sk-product-stories,
    .sk-services-section,
    .sk-faq-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .sk-product-grid,
    .sk-faq-grid {
        grid-template-columns: 1fr;
    }

    .sk-product-card {
        min-height: 410px;
    }

    .sk-portfolio-note {
        grid-template-columns: 1fr;
        padding: 23px;
        text-align: left;
    }

    .sk-process-board {
        padding: 20px;
    }

    .sk-process-track,
    .sk-process-branch {
        flex-direction: column;
    }

    .sk-process-node {
        min-width: 100%;
        max-width: 100%;
    }

    .sk-story-card {
        grid-template-columns: 1fr;
        padding: 28px 0 0 27px;
    }

    .sk-story-card img {
        height: 220px;
        border-radius: 15px 0 0 0;
    }

    .sk-services-cta {
        grid-template-columns: 1fr;
    }

    .sk-service-body {
        padding-left: 22px;
    }

    .sk-final-cta {
        padding: 72px 0;
    }

    .sk-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sk-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .promo-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
    }

    .sk-website-box,
    .development-popup-box {
        padding: 34px 21px 25px;
    }

    .sk-website-actions,
    .development-popup-actions {
        flex-direction: column;
    }

    .sk-website-btn-main,
    .sk-website-btn-secondary,
    .development-popup-primary,
    .development-popup-secondary {
        width: 100%;
    }

    .sk-wall-card {
        padding: 32px 22px;
    }
}

@media (max-width: 480px) {
    .sk-suite-visual {
        min-height: 400px;
    }

    .sk-suite-mini {
        width: 145px;
    }

    .sk-suite-mini span {
        font-size: .52rem;
    }

    .sk-suite-mini img {
        height: 76px;
    }

    .sk-suite-main-image {
        height: 230px;
    }

    .sk-section-heading h2 {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Existing automatic language suggestion and side tab */
.sk-lang-popup {
    position: fixed;
    inset: 0;
    z-index: 9999998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 15, 29, .72);
    backdrop-filter: blur(8px);
}

.sk-lang-box {
    position: relative;
    width: min(450px, 100%);
    padding: 34px 30px 30px;
    color: var(--sk-navy);
    background:
        radial-gradient(circle at top right, rgba(77,163,255,.16), transparent 38%),
        #ffffff;
    border: 1px solid rgba(10,26,47,.10);
    border-radius: 23px;
    box-shadow: 0 34px 100px rgba(0,0,0,.42);
    text-align: center;
}

.sk-lang-close {
    position: absolute;
    top: 12px;
    right: 13px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--sk-navy);
    background: #eaf0f6;
    border: 0;
    border-radius: 50%;
    font-size: 1.35rem;
    cursor: pointer;
}

.sk-lang-globe {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #0875d1, #0052a1);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,82,161,.28);
    font-size: .72rem;
    font-weight: 900;
}

.sk-lang-title {
    margin-bottom: 10px;
    color: var(--sk-navy);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.025em;
}

.sk-lang-text {
    margin-bottom: 22px;
    color: var(--sk-muted);
    font-size: .88rem;
    line-height: 1.65;
}

.sk-lang-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.sk-lang-btn-main,
.sk-lang-btn-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 11px;
    font-size: .76rem;
    font-weight: 850;
    text-decoration: none !important;
}

.sk-lang-btn-main {
    color: #ffffff !important;
    background: #0052a1;
    border: 1px solid #0052a1;
}

.sk-lang-btn-secondary {
    color: var(--sk-navy);
    background: #ffffff;
    border: 1px solid var(--sk-line);
    cursor: pointer;
}

.sk-language-tab {
    position: fixed;
    z-index: 9994;
    right: -132px;
    bottom: 82px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: #dce7f2;
    background: rgba(8, 23, 39, .96);
    border: 1px solid rgba(255,255,255,.10);
    border-right: 0;
    border-radius: 13px 0 0 13px;
    box-shadow: 0 14px 36px rgba(0,0,0,.30);
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: right .3s ease;
    backdrop-filter: blur(10px);
}

.sk-language-tab:hover,
.sk-language-tab:focus-within {
    right: 0;
}

.sk-language-options {
    display: flex;
    gap: 5px;
}

.sk-language-options a {
    min-width: 31px;
    min-height: 28px;
    display: grid;
    place-items: center;
    color: #dce7f2 !important;
    background: rgba(255,255,255,.07);
    border-radius: 7px;
    font-size: .65rem;
    font-weight: 900;
    text-decoration: none !important;
}

.sk-language-options a.active,
.sk-language-options a:hover {
    color: #ffffff !important;
    background: #0052a1;
}

@media (max-width: 720px) {
    .sk-lang-actions {
        flex-direction: column;
    }

    .sk-lang-btn-main,
    .sk-lang-btn-secondary {
        width: 100%;
    }

    .sk-language-tab {
        right: -132px;
        bottom: 68px;
    }
}
