

@font-face {
    font-family: 'G8_Bold';
    src: url('G8_Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'G8_Bold';
    src: url('G8_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* ===== CUSTOM CURSORS (nika page) ===== */
body.main-page {
    cursor: url('img/Arrow/Arrow.png') 0 0, auto !important;
}

body.main-page a,
body.main-page button,
body.main-page [role="button"],
body.main-page .nika-lang-btn,
body.main-page .nika-about-toggle,
body.main-page .nika-exp-sub-toggle,
body.main-page .case-card,
body.main-page .illustration-item,
body.main-page .nika-hero-image-container {
    cursor: url('img/Arrow/Hand.png') 16 0, pointer !important;
}

body.main-page a:active,
body.main-page button:active,
body.main-page .nika-lang-btn:active,
body.main-page .case-card:active,
body.main-page .illustration-item:active,
body.main-page .nika-hero-image-container:active {
    cursor: url('img/Arrow/Hand close.png') 16 0, pointer !important;
}

.nika-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nika-logo {
    font-family: 'G8_Bold', sans-serif;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Shimmer gradient for "Anika Pizhma" logo text */
.nika-name-shimmer {
    background: linear-gradient(
        90deg,
        #47E194 0%,
        #FBFBFB 20%,
        #007EFA 40%,
        #FFDAEF 60%,
        #47E194 80%,
        #FBFBFB 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: nikaNameShimmer 4s linear infinite;
}

@keyframes nikaNameShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 250% center; }
}

.logo-pizhma {
    color: #FBFBFB;
}

.logo-is {
    color: #007EFA; /* Nika's brand blue */
}

.logo-here {
    color: #FBFBFB;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FBFBFB;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Custom Hero Section */
.nika-hero-section {
    display: flex;
    align-items: center;
    justify-content: center; /* Center elements horizontally */
    min-height: auto; /* Shrink to content so it sits naturally */
    padding: 40px 0 80px 0; /* Exactly 40px gap from the header at the top */
    gap: 40px; /* Bring text and image closer horizontally */
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.nika-hero-left {
    flex: 1;
    max-width: 520px; /* Keep text column compact and close to center */
    text-align: left;
}

/* Shimmering name tag */
.nika-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
    background: linear-gradient(
        90deg,
        #47E194 0%,
        #FFDAEF 25%,
        #007EFA 50%,
        #FFDAEF 75%,
        #47E194 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: nikaTagShimmer 3s linear infinite;
}

@keyframes nikaTagShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.nika-hero-title {
    font-family: 'G8_Bold', sans-serif;
    font-size: 72px;
    line-height: 0.92;
    color: #FBFBFB;
    margin: 0 0 24px 0;
    letter-spacing: 1px;
}

.nika-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 22px; /* Larger description */
    line-height: 1.6;
    color: #FBFBFB;
    opacity: 0.9;
    margin: 0;
    max-width: 540px;
}

.nika-hero-right {
    flex: 1.3; /* Give the image column a bit more width share */
    max-width: 680px; /* Allow the image container to render much larger */
    display: flex;
    justify-content: center;
    align-items: center;
}

.nika-hero-image-container {
    position: relative;
    max-width: 100%; /* Take full width of its enlarged right column */
    width: 100%;
    cursor: pointer;
    border-radius: 16px;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nika-hero-image-container:active {
    transform: scale(0.96); /* snap-down compression effect on click */
}

.nika-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Pixel Heart Floating Particles */
.pixel-heart {
    position: absolute;
    pointer-events: none;
    width: 64px; /* Even larger hearts */
    height: 58px;
    z-index: 10;
    transform-origin: center;
    animation: floatHeart 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes floatHeart {
    0% {
        transform: translate(0, 0) scale(var(--start-scale)) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--drift-x), var(--drift-y)) scale(0) rotate(var(--drift-rotate));
        opacity: 0;
    }
}

/* Huge Click Burst Hearts */
.nika-big-heart {
    position: absolute;
    pointer-events: none;
    z-index: 99999;
    transform-origin: center;
    will-change: transform, opacity;
}


/* ===== ABOUT ACCORDION ===== */
.nika-about-accordion {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 60px auto;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

/* More breathing room above cases icon on nika page */
.nika-cases-icon-spacer {
    margin-top: 80px;
}

/* ===== LANGUAGE SWITCHER ===== */
.nika-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nika-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 99px;
    padding: 5px 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.nika-lang-btn:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
}

/* Animated gradient border via rotating conic-gradient */
@property --nika-border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes nikaBorderSpin {
    to { --nika-border-angle: 360deg; }
}

/* Animated gradient border — EN: pink / red / white */
.nika-lang-btn[data-lang="en"].active {
    border: 2px solid transparent;
    padding: 6px 11px;
    background-image:
        linear-gradient(rgba(14,14,14,0.95), rgba(14,14,14,0.95)),
        conic-gradient(
            from var(--nika-border-angle),
            #FFDAEF,
            #DD3737,
            #FBFBFB,
            #FFDAEF
        );
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 99px;
    box-shadow:
        0 0 8px rgba(221, 55, 55, 0.4),
        0 0 20px rgba(255, 218, 239, 0.25);
    animation: nikaBorderSpin 3s linear infinite;
}

/* Animated gradient border — RU: white / blue / light-blue */
.nika-lang-btn[data-lang="ru"].active {
    border: 2px solid transparent;
    padding: 6px 11px;
    background-image:
        linear-gradient(rgba(14,14,14,0.95), rgba(14,14,14,0.95)),
        conic-gradient(
            from var(--nika-border-angle),
            #FBFBFB,
            #007EFA,
            #A6D3FF,
            #FBFBFB
        );
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 99px;
    box-shadow:
        0 0 8px rgba(0, 126, 250, 0.45),
        0 0 20px rgba(166, 211, 255, 0.2);
    animation: nikaBorderSpin 3s linear infinite;
}

.nika-flag {
    border-radius: 3px;
    display: block;
    flex-shrink: 0;
}

.nika-lang-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #FBFBFB;
    opacity: 0.85;
    text-transform: uppercase;
}

.nika-lang-btn.active .nika-lang-label {
    color: #FBFBFB;
    opacity: 1;
    -webkit-text-fill-color: #FBFBFB;
    background: none;
}

.nika-about-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 28px 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
}

.nika-about-toggle-label {
    font-family: 'G8_Bold', sans-serif;
    font-size: 36px;
    letter-spacing: 1.5px;
    color: #FBFBFB;
    text-transform: uppercase;
}

.nika-about-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.3s;
}

.nika-about-arrow svg {
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.nika-about-accordion.is-open .nika-about-arrow {
    border-color: #007EFA;
    transform: rotate(180deg);
}

.nika-about-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}



.nika-about-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 24px 40px 40px 40px;
}

/* Animated gradient avatar */
@property --nika-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes nikaAvatarSpin {
    to { --nika-angle: 360deg; }
}

.nika-avatar-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 7px;
    background: conic-gradient(
        from var(--nika-angle),
        #47E194 0%,
        #FFDAEF 33%,
        #007EFA 83%,
        #47E194 100%
    );
    animation: nikaAvatarSpin 3s linear infinite;
}

.nika-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.nika-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nika-about-text {
    flex: 1;
}

.nika-about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #FBFBFB;
    opacity: 0.88;
    margin: 0 0 20px 0;
}

.nika-about-text p:last-child {
    margin-bottom: 0;
}

.nika-about-what {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #FBFBFB;
    opacity: 0.9;
    margin: 20px 0 12px 0 !important;
}

.nika-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nika-about-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #FBFBFB;
    opacity: 0.88;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nika-dot {
    display: inline-block;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
}

.nika-about-list li strong {
    color: #FBFBFB;
    font-weight: 600;
    opacity: 1;
}

@media (max-width: 900px) {
    .nika-about-toggle {
        padding: 22px 24px;
    }

    .nika-about-toggle-label {
        font-size: 26px;
    }

    .nika-about-inner {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        padding: 0 16px;
    }

    .nika-about-accordion {
        width: calc(100% - 32px);
        margin-left: 16px;
        margin-right: 16px;
    }

    .nika-avatar-wrap {
        width: 150px;
        height: 150px;
    }

    .nika-about-text p {
        font-size: 17px;
    }
}

/* Custom Contacts Section */
.nika-contacts-section {
    padding: 120px 0;
    background: #0E0E0E;
    margin-left: -80px;
    margin-right: -80px;
    padding-left: 80px;
    padding-right: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nika-contacts-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.nika-contacts-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nika-contacts-title {
    font-family: 'G8_Bold', sans-serif;
    font-size: 80px;
    line-height: 0.95;
    color: #FBFBFB;
    margin: 0 0 24px 0;
    letter-spacing: 1.5px;
}

.nika-contacts-title-gradient {
    background: linear-gradient(
        90deg,
        #FFDAEF 0%,
        #007EFA 25%,
        #47E194 50%,
        #007EFA 75%,
        #FFDAEF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: contactsShimmer 4s linear infinite;
    display: inline-block;
}

@keyframes contactsShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.nika-contacts-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #FBFBFB;
    opacity: 0.7;
    margin: 0 0 40px 0;
    max-width: 520px;
}

.nika-pulse-text {
    display: inline-block;
    color: #FBFBFB;
    opacity: 1;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(251, 251, 251, 0.4);
    animation: heartbeat 2s infinite ease-in-out;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.08);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.08);
    }
    70% {
        transform: scale(1);
    }
}

/* Elegant minimalist social icons */
.nika-contacts-socials {
    display: flex;
    gap: 16px;
}

.nika-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    width: auto;
    height: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nika-social-btn svg {
    width: 38px;
    height: 38px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.nika-social-btn .stop-1,
.nika-social-btn .stop-2,
.nika-social-btn .stop-3 {
    transition: stop-color 0.4s ease;
}

/* Hover transitions to brand gradient colors */
.nika-social-btn:hover .stop-1 {
    stop-color: #007EFA;
}
.nika-social-btn:hover .stop-2 {
    stop-color: #FFDAEF;
}
.nika-social-btn:hover .stop-3 {
    stop-color: #47E194;
}

/* Color shifting animation on hover */
@keyframes shiftStop1 {
    0%, 100% { stop-color: #007EFA; }
    33% { stop-color: #FFDAEF; }
    66% { stop-color: #47E194; }
}
@keyframes shiftStop2 {
    0%, 100% { stop-color: #FFDAEF; }
    33% { stop-color: #47E194; }
    66% { stop-color: #007EFA; }
}
@keyframes shiftStop3 {
    0%, 100% { stop-color: #47E194; }
    33% { stop-color: #007EFA; }
    66% { stop-color: #FFDAEF; }
}

.nika-social-btn:hover .stop-1 {
    animation: shiftStop1 3s linear infinite;
    animation-delay: 0.4s;
}
.nika-social-btn:hover .stop-2 {
    animation: shiftStop2 3s linear infinite;
    animation-delay: 0.4s;
}
.nika-social-btn:hover .stop-3 {
    animation: shiftStop3 3s linear infinite;
    animation-delay: 0.4s;
}

/* Glow animation */
@keyframes socialGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(0, 126, 250, 0.9)) drop-shadow(0 0 15px rgba(0, 126, 250, 0.5));
    }
    33% {
        filter: drop-shadow(0 0 6px rgba(255, 218, 239, 0.9)) drop-shadow(0 0 15px rgba(255, 218, 239, 0.5));
    }
    66% {
        filter: drop-shadow(0 0 6px rgba(71, 225, 148, 0.9)) drop-shadow(0 0 15px rgba(71, 225, 148, 0.5));
    }
}

.nika-social-btn:hover {
    transform: scale(1.2);
}

.nika-social-btn:hover svg {
    animation: socialGlow 3s linear infinite;
}


/* Contact Cards Grid */
.nika-contacts-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.nika-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.nika-contact-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
}

/* Interactive custom borders on hover */
.nika-contact-card.card-email:hover {
    border-color: #FFDAEF;
    box-shadow: 0 0 20px rgba(255, 218, 239, 0.15);
}

.nika-contact-card.card-telegram:hover {
    border-color: #007EFA;
    box-shadow: 0 0 20px rgba(0, 126, 250, 0.2);
}

.nika-contact-card.card-community:hover {
    border-color: #47E194;
    box-shadow: 0 0 20px rgba(71, 225, 148, 0.18);
}

.card-icon {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #FBFBFB;
    transition: background 0.3s ease, color 0.3s ease;
}

.card-email:hover .card-icon {
    background: rgba(255, 218, 239, 0.1);
    color: #FFDAEF;
}

.card-telegram:hover .card-icon {
    background: rgba(0, 126, 250, 0.1);
    color: #007EFA;
}

.card-community:hover .card-icon {
    background: rgba(71, 225, 148, 0.1);
    color: #47E194;
}

.card-bone-icon {
    width: 22px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card-community:hover .card-bone-icon {
    transform: scale(1.1);
    opacity: 1;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 4px;
}

.card-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FBFBFB;
    opacity: 0.4;
    text-transform: uppercase;
}

.card-value {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #FBFBFB;
    opacity: 0.95;
    transition: color 0.3s ease;
}

.card-email:hover .card-value {
    color: #FFDAEF;
}
.card-telegram:hover .card-value {
    color: #007EFA;
}
.card-community:hover .card-value {
    color: #47E194;
}

.card-arrow {
    font-size: 20px;
    color: #FBFBFB;
    opacity: 0.3;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.nika-contact-card:hover .card-arrow {
    transform: translateX(4px);
    opacity: 0.8;
}

.card-email:hover .card-arrow { color: #FFDAEF; }
.card-telegram:hover .card-arrow { color: #007EFA; }
.card-community:hover .card-arrow { color: #47E194; }

/* Responsive Styles */
@media (max-width: 1100px) {
    .nika-contacts-section {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 900px) {
    .nika-hero-section {
        flex-direction: column-reverse;
        padding: 40px 16px;
        box-sizing: border-box;
        gap: 32px;
        text-align: left;
        min-height: auto;
    }

    .nika-hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nika-hero-title {
        font-size: 64px;
    }

    .nika-hero-subtitle {
        font-size: 20px;
        margin-bottom: 24px;
    }



    .nika-hero-desc {
        font-size: 18px; /* Increased from 16px */
    }

    .nika-hero-image-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .nika-hero-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .nika-contacts-section {
        padding: 60px 16px;
        margin-left: 0;
        margin-right: 0;
    }

    .cases-header-icon img {
        width: 72px !important;
    }

    .nika-contacts-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nika-contacts-left {
        align-items: center;
        text-align: center;
    }

    .nika-contacts-title {
        font-size: 56px;
    }

    .nika-contacts-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .nika-contacts-socials {
        justify-content: center;
        width: 100%;
    }
}

/* ===== ABOUT CONTEXT PARAGRAPH ===== */
.nika-about-context-p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #FBFBFB;
    opacity: 0.75;
    margin: 20px 0 0 0 !important;
}

/* ===== EXPERIENCE ACCORDION (nested inside About) ===== */
.nika-exp-sub {
    margin: 32px 0 0 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.nika-exp-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 16px;
}

.nika-exp-sub.is-open .nika-about-arrow {
    border-color: #47E194;
    transform: rotate(180deg);
}

.nika-exp-sub .nika-exp-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.nika-exp-sub.is-open .nika-exp-body {
    max-height: 4000px;
}

/* Bump About body limit to fit Background & Context + nested Experience */
.nika-about-accordion.is-open .nika-about-body {
    max-height: 6000px;
}

.nika-exp-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 28px 28px 28px;
}

.nika-exp-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nika-exp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nika-exp-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 14px;
    margin-bottom: 10px;
}

.nika-exp-role {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FBFBFB;
    line-height: 1.4;
}

.nika-exp-company {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #47E194;
    line-height: 1.4;
}

.nika-exp-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #FBFBFB;
    opacity: 0.45;
    line-height: 1.4;
}

.nika-exp-duties {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nika-exp-duties li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #FBFBFB;
    opacity: 0.72;
}

.nika-exp-duties li::before {
    content: none;
}

@media (max-width: 900px) {
    .nika-exp-inner {
        padding: 0 24px 32px 24px;
    }

    .nika-exp-role {
        font-size: 15px;
    }

    .nika-exp-company {
        font-size: 14px;
    }
}

/* Headings typography: G8_Bold (Russian version only) */
html[lang="ru"] .nika-hero-title,
html[lang="ru"] .nika-about-toggle-label,
html[lang="ru"] .nika-contacts-title,
html[lang="ru"] .why-us-v3-title,
html[lang="ru"] .why-us-v3-card-title {
    font-family: 'G8_Bold', sans-serif !important;
    font-weight: bold !important;
}

html[lang="ru"] .nika-hero-title,
html[lang="ru"] .nika-contacts-title {
    font-size: 64px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

@media (max-width: 900px) {
    .nika-hero-title {
        font-size: 38px !important;
        line-height: 1.15 !important;
    }

    html[lang="ru"] .nika-hero-title {
        font-size: 32px !important;
    }

    .nika-contacts-title {
        font-size: 38px !important;
        line-height: 1.15 !important;
    }

    .nika-lang-btn {
        padding: 4px 6px !important;
        gap: 4px !important;
    }
    
    .nika-lang-btn.active {
        padding: 5px 7px !important;
    }

    .nika-lang-label {
        font-size: 11px !important;
    }

    .nika-flag {
        width: 22px !important;
        height: 15px !important;
    }

    body.main-page .header-mobile-hero,
    .header-mobile-hero {
        justify-content: space-between !important;
        padding: 16px 24px !important;
        gap: 0 !important;
    }
    
    body.main-page .header-mobile-hero .nika-logo,
    .header-mobile-hero .nika-logo {
        font-size: 22px !important;
    }

    /* Push lang switcher to right edge */
    #pizhma-lang-switcher-mobile {
        margin-left: auto !important;
    }
}

/* Hide/show elements based on active language */
html[lang="en"] .lang-ru {
    display: none !important;
}
html[lang="ru"] .lang-en {
    display: none !important;
}
html:not([lang="ru"]) .lang-ru {
    display: none !important;
}

/* Completely remove the floating burger menu from Nika pages */
body.main-page .mobile-nav-toggle-floating,
body.main-page.is-scrolled .mobile-nav-toggle-floating,
.mobile-nav-toggle-floating {
    display: none !important;
}


