@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../assets/fonts/Comfortaa Variable Font.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

/* Phosphor Icons Integration */
.ph {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

.ph-animated {
    transition: transform 0.3s ease, fill 0.3s ease;
}

.ph-animated:hover {
    transform: scale(1.1);
}

/* Custom icon sizes */
.ph-sm { font-size: 1rem; }
.ph-md { font-size: 1.5rem; }
.ph-lg { font-size: 2rem; }
.ph-xl { font-size: 3rem; }

/* Icon colors based on theme */
.ph-primary { color: var(--primary-blue); }
.ph-secondary { color: var(--secondary-grey); }
.ph-teal { color: var(--teal-blue); }
.ph-white { color: white; }

:root {
    --primary-blue: #18448D;
    --primary-blue-rgb: 24, 68, 141;
    --secondary-blue: #0C5E7C;
    --secondary-blue-rgb: 12, 94, 124;
    --teal-blue: #00B5C3;
    --teal-blue-rgb: 0, 181, 195;
    --text-color: #333;
    --text-color-rgb: 51, 51, 51;
    --secondary-grey: #5a5a5a;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --shadow-color: rgba(24, 68, 141, 0.1);
    --accent-color: #4569D4;
    
    /* Дополнительные переменные для отступов и типографики */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    
    --transition-speed: 0.3s;
    
    /* Добавляем переменные для шрифтов */
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Comfortaa', sans-serif;
}

/* Темная тема */
:root.dark-theme {
    --primary-blue: #ffffff;
    --primary-blue-rgb: 255, 255, 255;
    --secondary-blue: #ffffff;
    --secondary-blue-rgb: 255, 255, 255;
    --teal-blue: #00D7E7;
    --teal-blue-rgb: 0, 215, 231;
    --text-color: #ffffff;
    --text-color-rgb: 255, 255, 255;
    --secondary-grey: #ffffff;
    --bg-color: #18448D;
    --card-bg: #1E56A0;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --accent-color: #4A99FF;
}

body {
    font-family: 'Comfortaa', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Навигация */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.nav__logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.nav__logo img {
    height: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__logo:hover img {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-blue));
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-blue);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__action {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav__button {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background-color: var(--primary-blue);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav__button:hover {
    background-color: var(--teal-blue);
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        transition: 0.5s;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 100;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 2rem;
    }

    .nav__toggle {
        display: block;
    }

    .nav__action {
        position: absolute;
        top: 50%;
        right: 4rem;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        position: relative;
        top: 0;
    }
}

/* Основной контент */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Основной контент */
main {
    padding-top: 70px; /* Высота навигационного меню */
}

/* Стили для hero секции */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    overflow-x: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.hero__content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.hero__title {
    margin-bottom: var(--spacing-md);
}

.hero__title-small {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    opacity: 0;
    text-transform: uppercase;
    animation: fadeInText 0.6s ease forwards;
    animation-delay: 0.6s;
}

.hero__title-large {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    opacity: 0;
    animation: fadeInText 0.6s ease forwards;
    animation-delay: 0.9s;
    transform: translateY(20px);
}

.hero__title-medium {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInText 0.6s ease forwards;
    animation-delay: 1.2s;
    transform: translateY(20px);
}

.hero__text {
    font-size: 19px;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-grey);
    max-width: 95%;
    opacity: 0;
    line-height: 1.8;
    animation: fadeInText 0.6s ease forwards;
    animation-delay: 1.5s;
    transform: translateY(20px);
}

.hero__logo {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
}

.hero__logo img {
    width: 120%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(24, 68, 141, 0.2));
    transform: none;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: none !important; /* Принудительно отключаем все анимации */
    transform-style: preserve-3d; /* Добавляем 3D-эффект */
}

.logo-animated {
    /* Добавляем базовое свойство, чтобы класс не был пустым */
    display: block;
    backface-visibility: hidden;
    animation: none !important; /* Принудительно отключаем все анимации */
    perspective: 1000px; /* Добавляем перспективу для 3D */
}

/* 3D-эффект при наведении - без свечения */
.hero__logo:hover img {
    filter: drop-shadow(0 15px 30px rgba(24, 68, 141, 0.3));
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg); /* 3D-эффект при наведении */
}

/* Удаляем все лишние эффекты и анимации */
.hero__logo::before,
.hero__logo::after {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для секции ролей */
.roles {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--background) 0%, rgba(24, 68, 141, 0.03) 100%);
    margin-top: -10vh;
}

/* About CryptoXpress Section */
.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--background) 0%, rgba(24, 68, 141, 0.03) 100%);
    margin-top: -10vh;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about__content.active {
    opacity: 1;
    transform: translateY(0);
}

.about__title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.about__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--teal-blue);
    border-radius: 2px;
}

.about__text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--secondary-grey);
    margin-bottom: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about__highlight {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(24, 68, 141, 0.05);
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0.5rem 0 2.5rem;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
    font-size: 19px;
}

.about__highlight:hover {
    transform: translateX(5px);
    background: rgba(24, 68, 141, 0.08);
}

.about__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__image-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about__image-container.active {
    opacity: 1;
    transform: translateY(0);
}

.about__icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(24, 68, 141, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
}

.about__icon svg {
    width: 70px;
    height: 70px;
    transition: all 0.5s ease;
}

.about__icon:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 30px 60px rgba(24, 68, 141, 0.15);
}

.about__icon:hover svg {
    transform: scale(1.1);
}

.about__icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal-blue));
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
}

.about__icon:hover::before {
    opacity: 0.1;
    transform: scale(1.1) rotate(-5deg);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.about__feature {
    padding: 1.5rem;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 8px 20px rgba(24, 68, 141, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 68, 141, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(24, 68, 141, 0.1);
    border-color: rgba(24, 68, 141, 0.1);
}

.about__feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(24, 68, 141, 0.05), transparent);
    transition: height 0.3s ease;
    z-index: 0;
}

.about__feature:hover::after {
    height: 100%;
}

.about__feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: block;
    padding-left: 0;
    transition: all 0.3s ease;
    transform: translateY(0);
    color: var(--primary-blue);
    text-align: center;
}

.about__feature:hover .about__feature-title {
    transform: scale(1.05);
    color: var(--teal-blue);
}

.about__feature-title::before {
    content: '•';
    display: block;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--teal-blue);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center;
}

.about__feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    text-align: center;
}

.about__feature:hover .about__feature-text {
    transform: translateY(5px);
}

/* Responsive styles for About section */
@media (max-width: 992px) {
    .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__image {
        order: -1;
    }

    .about__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .about__title {
        font-size: 2.8rem;
    }
}

.roles__container {
    text-align: center;
    max-width: 1200px;
}

.roles__content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.roles__content.active {
    opacity: 1;
    transform: translateY(0);
}

.roles__title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.roles__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--teal-blue);
    border-radius: 2px;
}

.roles__text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--secondary-grey);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Обновленные стили для карточек */
.roles__cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.role-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(24, 68, 141, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border: 1px solid rgba(24, 68, 141, 0.08);
    position: relative;
    overflow: hidden;
}

/* Обновленный hover эффект */
.role-card:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(24, 68, 141, 0.12);
    border-color: rgba(24, 68, 141, 0.2);
    background: linear-gradient(to right, white, rgba(24, 68, 141, 0.02));
}

/* Обновляем декоративную линию */
.role-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--teal-blue));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.role-card:hover::before {
    width: 6px;
    opacity: 1;
}

/* Обновленные стили для иконок и анимаций */
.role-card__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-blue), #2C5AC9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(24, 68, 141, 0.2);
}

.role-card__icon-wrapper i {
    font-size: 36px;
    transition: all 0.3s ease;
}

.role-card:hover .role-card__icon-wrapper i {
    transform: scale(1.2);
}

/* Стили для SVG иконок */
.icon-path {
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.8s ease;
}

.icon-circle {
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.8s ease;
}

.icon-inner {
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.8s ease;
    opacity: 0.7;
}

/* Анимации при прокрутке для иконок */
.role-card__icon-wrapper.icon-animated svg {
    animation: iconPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.role-card__icon-wrapper.icon-animated .icon-path,
.role-card__icon-wrapper.icon-animated path {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.9);
    animation: iconFill 0.8s ease forwards;
}

.role-card__icon-wrapper.icon-animated .icon-circle {
    stroke-dashoffset: 0;
    animation: iconRotate 1.2s ease forwards;
}

.role-card__icon-wrapper.icon-animated .icon-inner {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.4);
    animation: iconFadeIn 0.8s ease forwards 0.3s;
}

/* Анимации для звезд при прокрутке */
.role-card:nth-child(1) .role-card__icon-wrapper.icon-animated svg path:nth-child(1) {
    animation: starReveal 0.5s ease forwards 0.1s;
}

.role-card:nth-child(1) .role-card__icon-wrapper.icon-animated svg path:nth-child(2) {
    animation: starReveal 0.5s ease forwards 0.2s;
}

.role-card:nth-child(1) .role-card__icon-wrapper.icon-animated svg path:nth-child(3) {
    animation: starReveal 0.5s ease forwards 0.3s;
}

/* Анимации при наведении - оставляем для дополнительного эффекта */
.role-card:hover .icon-path {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.9);
}

.role-card:hover .icon-circle {
    stroke-dashoffset: 0;
    transform: rotate(180deg);
}

.role-card:hover .icon-inner {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.4);
}

/* Keyframes для анимаций иконок */
@keyframes iconPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes iconFill {
    0% {
        fill-opacity: 0;
        stroke-dashoffset: 100;
    }
    100% {
        fill-opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
        stroke-dashoffset: 100;
    }
    100% {
        transform: rotate(180deg);
        stroke-dashoffset: 0;
    }
}

@keyframes iconFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes starReveal {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes iconPathReveal {
    0% {
        stroke-dashoffset: 100;
        fill-opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        fill-opacity: 1;
    }
}

/* Стиль для иконки первого уровня (Initiate) */
.role-card:nth-child(1) .role-card__icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-grey), #4B4C55);
    box-shadow: 0 10px 20px rgba(44, 45, 50, 0.2);
}

.role-card:nth-child(1) .role-card__title {
    color: var(--secondary-grey);
}

.role-card:nth-child(1) .role-card__level {
    color: var(--secondary-grey);
    background: rgba(44, 45, 50, 0.1);
    border: 1px solid rgba(44, 45, 50, 0.3);
}

.role-card:nth-child(1):hover .role-card__level {
    background: rgba(44, 45, 50, 0.2);
}

.role-card:nth-child(1) .role-card__section h4 {
    color: var(--secondary-grey);
}

.role-card:nth-child(1) .role-card__section h4::before {
    background-color: var(--secondary-grey);
}

.role-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--secondary-grey) 0%, transparent 100%);
}

.role-card:nth-child(1) .role-card__list li::before {
    color: var(--secondary-grey);
}

.role-card:nth-child(1) .role-card__description {
    background: rgba(44, 45, 50, 0.05);
    border: 1px solid rgba(44, 45, 50, 0.1);
}

.role-card:nth-child(1):hover .role-card__description {
    background: rgba(44, 45, 50, 0.1);
    border: 1px solid rgba(44, 45, 50, 0.2);
}

/* Стили для второй карточки (Pioneer Level 2) */
.role-card:nth-child(2) .role-card__icon-wrapper {
    background: #0C5E7C;
    border-radius: 16px;
}

.role-card:nth-child(2) .role-card__title {
    color: #0C5E7C;
}

.role-card:nth-child(2) .role-card__level {
    color: #0C5E7C;
    background: rgba(12, 94, 124, 0.08);
    border: 1px solid rgba(12, 94, 124, 0.1);
}

.role-card:nth-child(2):hover .role-card__level {
    background: rgba(12, 94, 124, 0.12);
}

.role-card:nth-child(2) .role-card__section h4 {
    color: #0C5E7C;
}

.role-card:nth-child(2) .role-card__section h4::before {
    background: #0C5E7C;
}

.role-card:nth-child(2)::before {
    background: linear-gradient(to bottom, #0C5E7C, #0A4E68);
}

.role-card:nth-child(2) .role-card__list li::before {
    color: #0C5E7C;
}

.role-card:nth-child(2) .role-card__description {
    background: linear-gradient(to right, rgba(12, 94, 124, 0.02), rgba(10, 78, 104, 0.02));
    border-bottom: 2px solid rgba(12, 94, 124, 0.1);
}

.role-card:nth-child(2):hover .role-card__description {
    background: linear-gradient(to right, rgba(12, 94, 124, 0.04), rgba(10, 78, 104, 0.04));
    border-bottom-color: #0C5E7C;
}

/* Стили для третьей карточки (Architect Level 3) */
.role-card:nth-child(3) .role-card__icon-wrapper {
    background: #18448D;
    border-radius: 16px;
}

.role-card:nth-child(3) .role-card__title {
    color: #18448D;
}

.role-card:nth-child(3) .role-card__level {
    color: #18448D;
    background: rgba(24, 68, 141, 0.08);
    border: 1px solid rgba(24, 68, 141, 0.1);
}

.role-card:nth-child(3):hover .role-card__level {
    background: rgba(24, 68, 141, 0.12);
}

.role-card:nth-child(3) .role-card__section h4 {
    color: #18448D;
}

.role-card:nth-child(3) .role-card__section h4::before {
    background: #18448D;
}

.role-card:nth-child(3)::before {
    background: linear-gradient(to bottom, #18448D, #143A7A);
}

.role-card:nth-child(3) .role-card__list li::before {
    color: #18448D;
}

.role-card:nth-child(3) .role-card__description {
    background: linear-gradient(to right, rgba(24, 68, 141, 0.02), rgba(20, 58, 122, 0.02));
    border-bottom: 2px solid rgba(24, 68, 141, 0.1);
}

.role-card:nth-child(3):hover .role-card__description {
    background: linear-gradient(to right, rgba(24, 68, 141, 0.04), rgba(20, 58, 122, 0.04));
    border-bottom-color: #18448D;
}

/* Улучшенный заголовок */
.role-card__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.role-card:hover .role-card__title {
    transform: translateX(5px);
}

.role-card__level {
    font-size: 0.9rem;
    color: var(--teal-blue);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    background: rgba(12, 94, 124, 0.08);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 94, 124, 0.1);
}

.role-card:hover .role-card__level {
    background: rgba(12, 94, 124, 0.12);
    transform: scale(1.05);
}

/* Улучшенные секции */
.role-card__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.role-card__section {
    background: rgba(24, 68, 141, 0.02);
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(24, 68, 141, 0.05);
    text-align: left;
}

.role-card__section:hover {
    background: rgba(24, 68, 141, 0.04);
    transform: translateY(-5px);
}

.role-card__section h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    text-align: left;
}

.role-card__section h4::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--teal-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.role-card__section:hover h4::before {
    transform: scale(1.2);
}

/* Обновляем стили для списков */
.role-card__list {
    list-style: none;
    padding: 0;
}

.role-card__list li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: var(--secondary-grey);
    transition: all 0.3s ease;
}

.role-card__list li:last-child {
    margin-bottom: 0;
}

/* Иконка для обычных списков (Requirements) */
.role-card__list li::before {
    content: '❖';
    position: absolute;
    left: 0;
    color: var(--teal-blue);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Иконка для Benefits (заменяем звездочку на кристалл/бриллиант) */
.role-card__section:nth-child(2) .role-card__list li::before {
    content: '◈';
    font-size: 1rem;
    transform: translateY(-1px); /* Небольшая корректировка позиционирования */
}

/* Иконка для To Keep The Role */
.role-card__section:nth-child(3) .role-card__list li::before {
    content: '⬥';
    font-size: 1.1rem;
}

/* Анимация при наведении */
.role-card__list li:hover::before {
    transform: scale(1.2) translateX(2px);
}

/* Специальная анимация для Benefits */
.role-card__section:nth-child(2) .role-card__list li:hover::before {
    transform: scale(1.2) rotate(45deg);
    color: var(--primary-blue);
}

/* Специальная анимация для To Keep The Role */
.role-card__section:nth-child(3) .role-card__list li:hover::before {
    transform: scale(1.2) rotate(45deg);
}

/* Убираем лишние анимации */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 10px 20px rgba(24, 68, 141, 0.05); }
    50% { box-shadow: 0 20px 30px rgba(24, 68, 141, 0.1); }
}

/* Убираем лишние keyframes */
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Обновляем появление карточек */
.role-card {
    opacity: 0;
    animation: cardReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.role-card:nth-child(1) { animation-delay: 0.2s; }
.role-card:nth-child(2) { animation-delay: 0.4s; }
.role-card:nth-child(3) { animation-delay: 0.6s; }

/* Стилизуем иконки в заголовках */
.role-card__icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(24, 68, 141, 0.2));
}

/* Добавляем общие стили для всех секций */
section {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Добавляем стили для контейнера с прокруткой */
html {
    scroll-behavior: smooth;
}

/* Удаляем все специфичные стили для секций, связанные со скроллом */
section {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Удаляем все snap-scroll стили */
html, body {
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
}

.role-card__description {
    font-size: 19px;
    color: var(--secondary-grey);
    margin: 1rem 0 2rem;
    line-height: 1.6;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(to right, rgba(24, 68, 141, 0.02), rgba(12, 94, 124, 0.02));
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(12, 94, 124, 0.1);
    text-align: left;
}

/* Убираем предыдущий декоративный элемент и добавляем подчеркивание */
.role-card:hover .role-card__description {
    background: linear-gradient(to right, rgba(24, 68, 141, 0.04), rgba(12, 94, 124, 0.04));
    transform: translateX(5px);
    border-bottom-color: var(--teal-blue);
}

/* Стили для секции прогресса */
.progression {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, rgba(24, 68, 141, 0.03) 0%, rgba(12, 94, 124, 0.02) 100%);
}

.progression__content {
    max-width: 1000px;
    margin: 0 auto;
}

.progression__title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.progression__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-teal) 100%);
    border-radius: 3px;
}

.progression__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.9;
}

.progression__items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.progression__item {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: itemReveal 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.progression__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.progression__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-blue);
    border-radius: 2px 0 0 2px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.progression__item:hover::before {
    width: 6px;
    opacity: 1;
}

.progression__item-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.progression__item-left h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.progression__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progression__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.progression__icon:hover::before {
    opacity: 1;
}

.progression__icon i {
    font-size: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.progression__item:hover .progression__icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.progression__item:hover .progression__icon i {
    transform: scale(1.1);
    animation: none; /* Удаляю анимацию пульсации */
}

.progression__item-right {
    flex-grow: 1;
    padding-left: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.progression__item:hover .progression__item-right {
    padding-left: 35px;
}

.progression__item-right p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.progression__item-right strong {
    font-weight: 700;
    color: var(--primary-blue);
}

.progression__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    pointer-events: none;
}

.progression__item:hover::after {
    opacity: 1;
}

.progression__item:nth-child(2) .progression__icon i {
    color: var(--teal-blue);
}

.progression__item:nth-child(1) .progression__icon i,
.progression__item:nth-child(3) .progression__icon i {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .progression__item {
        flex-direction: column;
        padding: 20px;
    }
    
    .progression__item-left {
        width: 100%;
        margin-bottom: 15px;
        align-items: center;
    }
    
    .progression__item-left h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .progression__icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }
    
    .progression__icon i {
        font-size: 32px;
    }
    
    .progression__item-right {
        padding-left: 0;
        text-align: center;
    }
    
    .progression__item:hover .progression__item-right {
        padding-left: 0;
    }
    
    .progression__item:nth-child(2):hover .progression__item-right {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .progression__icon {
        width: 60px;
        height: 60px;
    }
    
    .progression__icon i {
        font-size: 28px;
    }
    
    .progression__item-left h3 {
        font-size: 18px;
    }
    
    .progression__item-right .highlight {
        font-size: 0.9em;
    }
    
    .progression__item:hover .progression__item-right {
        padding-left: 15px;
    }
}

/* Стили для выделенных элементов в секции Progression System */
.highlight {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.2) 100%);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 3px solid var(--primary-blue);
    display: inline-block;
    margin: 2px 0;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.highlight:hover::after {
    width: 100%;
}

/* Особые стили для выделенных элементов во втором пункте (Achievements & Specialization) */
.progression__item:nth-child(2) .highlight {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.1) 0%, rgba(12, 94, 124, 0.2) 100%);
    color: #0C5E7C;
    border-left: 3px solid #0C5E7C;
}

.progression__item:nth-child(2) .highlight::after {
    background: #0C5E7C;
}

.progression__item:nth-child(2) .highlight:hover {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.2) 0%, rgba(12, 94, 124, 0.3) 100%);
    box-shadow: 0 4px 8px rgba(12, 94, 124, 0.2);
}

/* Адаптивные стили для выделенных элементов */
@media (max-width: 768px) {
    .highlight {
        padding: 3px 8px;
        font-size: 0.95em;
        display: inline-block;
        text-align: center;
    }
    
    .progression__item-right .highlight {
        margin: 4px 2px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .highlight {
        padding: 2px 6px;
        font-size: 0.9em;
    }
    
    .progression__item-right .highlight {
        margin: 3px 1px;
    }
}

/* Удаляю стили выделения для секции Rewards System */
.rewards__card .highlight,
.rewards__list .highlight,
.rewards__card-content .highlight,
.rewards__intro .highlight,
.rewards .highlight,
.rewards__content .highlight {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    font-weight: inherit !important;
    border-left: none !important;
    display: inline !important;
    margin: 0 !important;
    position: static !important;
    box-shadow: none !important;
    transition: none !important;
    text-decoration: none !important;
    transform: none !important;
}

.rewards__card .highlight::after,
.rewards__list .highlight::after,
.rewards__card-content .highlight::after,
.rewards__intro .highlight::after,
.rewards .highlight::after,
.rewards__content .highlight::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.rewards__card .highlight:hover,
.rewards__list .highlight:hover,
.rewards__card-content .highlight:hover,
.rewards__intro .highlight:hover,
.rewards .highlight:hover,
.rewards__content .highlight:hover {
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
    color: inherit !important;
}

/* Стили для секции наград */
.rewards {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, rgba(12, 94, 124, 0.02) 0%, rgba(24, 68, 141, 0.03) 100%);
}

.rewards__content {
    max-width: 1200px;
    margin: 0 auto;
}

.rewards__title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.rewards__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 19px;
    line-height: 1.8;
    color: var(--secondary-grey);
}

.rewards__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.rewards__card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(24, 68, 141, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rewards__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(24, 68, 141, 0.1);
}

.rewards__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--teal-blue));
    opacity: 0.7;
    transition: height 0.3s ease;
}

.rewards__card:hover::before {
    height: 6px;
    opacity: 1;
}

.rewards__card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(24, 68, 141, 0.1);
}

.rewards__card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.rewards__card-icon i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.rewards__card:hover .rewards__card-icon i {
    transform: scale(1.2);
}

.rewards__card-header h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.rewards__card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rewards__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rewards__list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    color: var(--secondary-grey);
    font-size: 17px;
}

.rewards__list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.rewards__important {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rewards__important::before {
    display: none;
}

/* Обновляем стили для иконок в rewards */
.rewards__card-icon svg {
    width: 40px;
    height: 40px;
}

.rewards__card-icon .icon-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.8s ease;
    fill: none;
    stroke: var(--teal-blue);
    stroke-width: 2;
}

/* Анимация при наведении */
.rewards__card:hover .rewards__card-icon .icon-path {
    stroke-dashoffset: 0;
    fill: var(--teal-blue);
    stroke: var(--teal-blue);
    opacity: 1;
}

/* Добавляем свечение для иконок */
.rewards__card-icon {
    position: relative;
    overflow: visible;
}

.rewards__card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(24, 68, 141, 0.3);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rewards__card:hover .rewards__card-icon::after {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(24, 68, 141, 0.1);
}

.rewards__card:nth-child(1):hover .rewards__card-icon .icon-path {
    transform: scaleY(1.1);
}

.rewards__card:nth-child(2):hover .rewards__card-icon .icon-path {
    transform: scale(1.1);
}

/* Улучшенные стили для денежной иконки в секции Level 3 Architect */
.rewards__card:nth-child(2) .rewards__card-icon {
    background: rgba(12, 94, 124, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(12, 94, 124, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rewards__card:nth-child(2) .rewards__card-icon i {
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.rewards__card:nth-child(2):hover .rewards__card-icon {
    background: rgba(12, 94, 124, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(12, 94, 124, 0.2);
}

.rewards__card:nth-child(2):hover .rewards__card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(12, 94, 124, 0.5));
}

/* Стили для SVG-иконки в секции Level 3 Architect */
.rewards__card:nth-child(2) .rewards__card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
    stroke: var(--primary-blue);
    stroke-width: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rewards__card:nth-child(2):hover .rewards__card-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(12, 94, 124, 0.5));
}

.rewards__card:nth-child(2) .rewards__card-icon {
    background: rgba(12, 94, 124, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(12, 94, 124, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rewards__card:nth-child(2):hover .rewards__card-icon {
    background: rgba(12, 94, 124, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(12, 94, 124, 0.2);
}

.rewards__card:nth-child(2) .rewards__card-icon i {
    font-size: 28px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.rewards__card:nth-child(2):hover .rewards__card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(12, 94, 124, 0.5));
}

/* Стили для секции шагов */
.steps {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, rgba(24, 68, 141, 0.03) 0%, rgba(12, 94, 124, 0.02) 100%);
}

.steps__content {
    max-width: 900px;
    margin: 0 auto;
}

.steps__title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.steps__title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--teal-blue);
    border-radius: 2px;
}

.steps__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 19px;
    line-height: 1.8;
    color: var(--secondary-grey);
    opacity: 0.9;
}

.steps__timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: stepReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }

.step__number {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__number span {
    width: 40px;
    height: 40px;
    background: #02b5c4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step__line {
    position: absolute;
    top: 40px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(to bottom, var(--primary-blue), var(--teal-blue));
    opacity: 0.3;
}

.step:last-child .step__line {
    display: none;
}

.step__content {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(24, 68, 141, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    position: relative;
    border: 1px solid rgba(24, 68, 141, 0.08);
}

.step:hover .step__content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(24, 68, 141, 0.1);
    border-color: rgba(24, 68, 141, 0.2);
}

.step:hover .step__number span {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(24, 68, 141, 0.2);
}

.step__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.step__icon i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.step:hover .step__icon i {
    transform: scale(1.2);
}

.step__content h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step__content p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--secondary-grey);
}

.step__notice {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(24, 68, 141, 0.05) 0%, rgba(12, 94, 124, 0.08) 100%);
    border-left: 3px solid var(--teal-blue);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--teal-blue);
    line-height: 1.5;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step__notice::before {
    content: '⏱';
    font-size: 1.1rem;
}

.step__notice:hover {
    background: linear-gradient(135deg, rgba(24, 68, 141, 0.08) 0%, rgba(12, 94, 124, 0.12) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(12, 94, 124, 0.1);
}

@media (max-width: 768px) {
    .step__notice {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
}

/* Анимация для иконок */
.step__icon .icon-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: all 0.8s ease;
    fill: none;
}

.step:hover .step__icon .icon-path {
    stroke-dashoffset: 0;
    fill: rgba(24, 68, 141, 0.1);
}

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

/* Специальные стили для иконки в секции Achievements & Specialization */
.progression__item:nth-child(2) .progression__icon svg path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: all 0.8s ease;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.progression__item:nth-child(2) .progression__icon.icon-animated svg path {
    animation: trophyReveal 1.2s ease forwards;
}

@keyframes trophyReveal {
    0% {
        stroke-dashoffset: 120;
        opacity: 0;
    }
    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Обновляем стили при наведении для новой иконки */
.progression__item:nth-child(2):hover .progression__icon svg path {
    stroke-dashoffset: 0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .progression__item {
        padding: 20px;
    }
    
    .progression__item-center {
        margin-bottom: 15px;
    }
    
    .progression__item-center h3 {
        font-size: 20px;
    }
    
    .progression__icon {
        width: 70px;
        height: 70px;
    }
    
    .progression__icon i {
        font-size: 32px;
    }
    
    .progression__item-right {
        padding-left: 10px;
    }
    
    .progression__item:hover .progression__item-right {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .progression__icon {
        width: 60px;
        height: 60px;
    }
    
    .progression__icon i {
        font-size: 28px;
    }
    
    .progression__item-center h3 {
        font-size: 18px;
    }
}

/* Стили для выделенных элементов в секции Progression System */
.highlight {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.2) 100%);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 3px solid var(--primary-blue);
    display: inline-block;
    margin: 2px 0;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.highlight:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.highlight:hover::after {
    width: 100%;
}

/* Особые стили для выделенных элементов во втором пункте (Achievements & Specialization) */
.progression__item:nth-child(2) .highlight {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.1) 0%, rgba(12, 94, 124, 0.2) 100%);
    color: #0C5E7C;
    border-left: 3px solid #0C5E7C;
}

.progression__item:nth-child(2) .highlight::after {
    background: #0C5E7C;
}

.progression__item:nth-child(2) .highlight:hover {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.2) 0%, rgba(12, 94, 124, 0.3) 100%);
    box-shadow: 0 4px 8px rgba(12, 94, 124, 0.2);
}

/* Адаптивные стили для выделенных элементов */
@media (max-width: 768px) {
    .highlight {
        padding: 3px 8px;
        font-size: 0.95em;
        display: inline-block;
        text-align: center;
    }
    
    .progression__item-right .highlight {
        margin: 4px 2px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .highlight {
        padding: 2px 6px;
        font-size: 0.9em;
    }
    
    .progression__item-right .highlight {
        margin: 3px 1px;
    }
}

/* Удаляю стили выделения для секции Rewards System */
.rewards__card .highlight,
.rewards__list .highlight,
.rewards__card-content .highlight,
.rewards__intro .highlight,
.rewards .highlight,
.rewards__content .highlight {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
    font-weight: inherit !important;
    border-left: none !important;
    display: inline !important;
    margin: 0 !important;
    position: static !important;
    box-shadow: none !important;
    transition: none !important;
    text-decoration: none !important;
    transform: none !important;
}

.rewards__card .highlight::after,
.rewards__list .highlight::after,
.rewards__card-content .highlight::after,
.rewards__intro .highlight::after,
.rewards .highlight::after,
.rewards__content .highlight::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.rewards__card .highlight:hover,
.rewards__list .highlight:hover,
.rewards__card-content .highlight:hover,
.rewards__intro .highlight:hover,
.rewards .highlight:hover,
.rewards__content .highlight:hover {
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
    color: inherit !important;
}

.step__content .highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.1) 0%, rgba(12, 94, 124, 0.15) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid var(--primary-blue);
}

.step__content .highlight:hover {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.15) 0%, rgba(12, 94, 124, 0.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(12, 94, 124, 0.2);
}

.step__content .highlight::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.step__content .highlight:hover::after {
    width: 100%;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(24, 68, 141, 0.05) 0%, rgba(12, 94, 124, 0.08) 100%);
}

.cta__container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta__box {
    position: relative;
    padding: 4rem;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(12, 94, 124, 0.1);
    overflow: hidden;
}

.cta__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 16px;
    background: linear-gradient(90deg, #0C5E7C, #18448D, #0C5E7C) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderAnimation 4s linear infinite;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta__title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta__text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-grey);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta__button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0C5E7C 0%, #18448D 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(12, 94, 124, 0.3);
}

.cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(12, 94, 124, 0.4);
}

.cta__button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta__box {
        padding: 3rem 2rem;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .cta__text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta__box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta__title {
        font-size: 1.8rem;
    }
    
    .cta__text {
        font-size: 1rem;
    }
    
    .cta__button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(12, 94, 124, 0.05) 0%, rgba(12, 94, 124, 0.1) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(12, 94, 124, 0.2);
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo {
    margin-bottom: 40px;
}

.footer__logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(12, 94, 124, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__logo-img:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(12, 94, 124, 0.3));
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    width: 100%;
}

.footer__column {
    min-width: 200px;
}

.footer__title {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-teal) 100%);
    border-radius: 2px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__link {
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer__link i {
    color: var(--color-primary);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer__link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer__link:hover i {
    transform: scale(1.2);
}

.footer__social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(12, 94, 124, 0.1);
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(12, 94, 124, 0.3);
}

.footer__bottom {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 94, 124, 0.1);
}

.footer__copyright {
    color: var(--color-text-light);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer__column {
        text-align: center;
        width: 100%;
    }
    
    .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__link {
        justify-content: center;
    }
}

.highlight {
    position: relative;
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Подключение шрифта Comfortaa */
@font-face {
    font-family: 'Comfortaa';
    src: url('../assets/fonts/Comfortaa Variable Font.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

/* Общие стили */
a {
    text-decoration: none;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

:root.dark-theme .logo-light {
    display: none;
}

:root.dark-theme .logo-dark {
    display: block;
}

/* Переключатель темы */
.theme-toggle {
    margin-left: 1rem;
    position: relative;
    z-index: 100;
}

.theme-toggle__button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.theme-toggle__button:hover {
    background-color: rgba(var(--primary-blue-rgb, 24, 68, 141), 0.1);
}

.theme-toggle__icon {
    font-size: 1.5rem;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
}

.theme-toggle__icon--light {
    color: var(--primary-blue);
    opacity: 1;
    transform: translateY(0);
}

.theme-toggle__icon--dark {
    color: white;
    opacity: 0;
    transform: translateY(10px);
}

:root.dark-theme .theme-toggle__icon--light {
    transform: translateY(-40px);
    opacity: 0;
}

:root.dark-theme .theme-toggle__icon--dark {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .theme-toggle {
        margin: 0;
        position: absolute;
        right: 80px;
        top: 15px;
    }
}

/* Анимация переключения темы */
body, section, .header, .nav, .footer, .role-card, .progression__item, .rewards__card, .step, .cta__box, .hero {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Специфичные стили для темной темы */
:root.dark-theme .header {
    background-color: rgba(30, 86, 160, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

:root.dark-theme .nav__link {
    color: #f0f0f0;
}

:root.dark-theme .nav__link:hover {
    color: #ffffff;
}

:root.dark-theme .nav__button,
:root.dark-theme .nav__button:link,
:root.dark-theme .nav__button:visited,
:root.dark-theme .nav__button:active,
:root.dark-theme .nav__button:focus {
    background-color: white !important;
    color: #18448d(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

:root.dark-theme .nav__button:hover {
    background-color: white !important;
    color: var(--teal-blue) !important;
    border-color: var(--teal-blue) !important;
}

/* Дополнительное правило для мобильной версии */
@media (max-width: 992px) {
    :root.dark-theme .nav__button,
    :root.dark-theme .nav__button:link,
    :root.dark-theme .nav__button:visited,
    :root.dark-theme .nav__button:active {
        background-color: white !important;
        color: var(--primary-blue) !important;
        border: 2px solid var(--primary-blue) !important;
    }
}

:root.dark-theme .role-card,
:root.dark-theme .progression__item,
:root.dark-theme .rewards__card,
:root.dark-theme .step__content,
:root.dark-theme .cta__box {
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

:root.dark-theme .role-card__title,
:root.dark-theme .progression__item-left h3,
:root.dark-theme .rewards__card-header h3,
:root.dark-theme .step__content h3 {
    color: #ffffff;
}

:root.dark-theme .role-card__description,
:root.dark-theme .progression__item-right p,
:root.dark-theme .rewards__list li,
:root.dark-theme .step__content p {
    color: rgba(255, 255, 255, 0.9);
}

:root.dark-theme .highlight {
    color: #00D7E7;
}

:root.dark-theme .footer {
    background: linear-gradient(180deg, #1E3F88 0%, #19387B 100%);
}

:root.dark-theme .footer__title {
    color: #ffffff;
}

:root.dark-theme .footer__link {
    color: rgba(255, 255, 255, 0.8);
}

:root.dark-theme .footer__link:hover {
    color: #ffffff;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

:root.dark-theme .logo-light {
    display: none !important;
}

:root.dark-theme .logo-dark {
    display: block !important;
}

/* Стили для логотипа в футере */
.footer__logo-img {
    height: 50px;
    transition: transform 0.3s ease;
}

/* Стили для логотипа в hero секции */
:root.dark-theme .hero__logo .logo-light {
    display: none !important;
}

:root.dark-theme .hero__logo .logo-dark {
    display: block !important;
}

:root.dark-theme .role-card,
:root.dark-theme .progression__item,
:root.dark-theme .rewards__card,
:root.dark-theme .step__content,
:root.dark-theme .cta__box {
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

:root.dark-theme .role-card:hover {
    background: linear-gradient(to right, var(--card-bg), rgba(0, 215, 231, 0.1));
    border-color: rgba(255, 255, 255, 0.2);
}

:root.dark-theme .role-card::before {
    background: linear-gradient(to bottom, #ffffff, var(--teal-blue));
}

:root.dark-theme .progression__item::before {
    background: linear-gradient(135deg, #ffffff, var(--teal-blue));
}

:root.dark-theme .rewards__card::before {
    background: linear-gradient(135deg, #ffffff, var(--teal-blue));
}

:root.dark-theme .about__feature {
    background-color: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

:root.dark-theme .about__feature:hover {
    background-color: rgba(0, 215, 231, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

:root.dark-theme .step__notice {
    background-color: rgba(0, 215, 231, 0.1);
    border-color: rgba(0, 215, 231, 0.3);
}

:root.dark-theme .role-card__title,
:root.dark-theme .progression__item-left h3,
:root.dark-theme .rewards__card-header h3,
:root.dark-theme .step__content h3 {
    color: #ffffff;
}

:root.dark-theme .role-card__description,
:root.dark-theme .progression__item-right p,
:root.dark-theme .rewards__list li,
:root.dark-theme .step__content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Улучшение видимости для карточек ролей в темной теме */
:root.dark-theme .role-card__level {
    color: #ffffff;
    background-color: rgba(0, 215, 231, 0.2);
}

:root.dark-theme .role-card__section h4 {
    color: #ffffff;
}

:root.dark-theme .role-card__list li {
    color: #ffffff;
}

:root.dark-theme .role-card__list li::before {
    background-color: rgba(255, 255, 255, 0.8);
}

:root.dark-theme .role-card:hover .role-card__level {
    background-color: rgba(0, 215, 231, 0.4);
}

/* Стили для иконок в темной теме */
:root.dark-theme .role-card__icon-wrapper {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

:root.dark-theme .role-card__icon-wrapper i,
:root.dark-theme .role-card__icon-wrapper svg path {
    color: #ffffff;
    fill: #ffffff;
}

:root.dark-theme .role-card:hover .role-card__icon-wrapper {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

:root.dark-theme .icon-path,
:root.dark-theme .icon-circle,
:root.dark-theme .icon-inner {
    fill: #ffffff;
    stroke: #ffffff;
}

:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper,
:root.dark-theme .role-card:nth-child(2) .role-card__icon-wrapper,
:root.dark-theme .role-card:nth-child(3) .role-card__icon-wrapper {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

:root.dark-theme .role-card:nth-child(1):hover .role-card__icon-wrapper,
:root.dark-theme .role-card:nth-child(2):hover .role-card__icon-wrapper,
:root.dark-theme .role-card:nth-child(3):hover .role-card__icon-wrapper {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Специфичное исправление для иконки Initiate (Level 1) в темной теме */
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper {
    background-color: transparent !important; /* Принудительно делаем фон прозрачным */
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

:root.dark-theme .role-card:nth-child(1):hover .role-card__icon-wrapper {
    background-color: transparent !important;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Принудительное исправление фона иконки Initiate в темной теме */
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

:root.dark-theme .role-card:nth-child(1):hover .role-card__icon-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

/* Перезаписываем все возможные градиенты и фоны для иконки */
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper::before,
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper::after {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    opacity: 0 !important;
}

/* Звезда должна быть белой */
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper svg,
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper i,
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper svg path,
:root.dark-theme .role-card:nth-child(1) .role-card__icon-wrapper svg * {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* Исправление маркеров списков для темной темы - убираем белые прямоугольники */
:root.dark-theme .role-card__list li::before {
    background-color: transparent !important;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 !important;
    top: 7px;
}

:root.dark-theme .role-card__list li:hover::before {
    background-color: transparent !important;
    border-color: var(--teal-blue);
    box-shadow: 0 0 5px rgba(0, 215, 231, 0.5);
}

:root.dark-theme .role-card__section:nth-child(1) .role-card__list li::before,
:root.dark-theme .role-card__section:nth-child(2) .role-card__list li::before,
:root.dark-theme .role-card__section:nth-child(3) .role-card__list li::before {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 !important;
    transform: rotate(45deg);
}

/* Убираем все предыдущие стили для маркеров в темной теме и устанавливаем единый ромбовидный стиль */
:root.dark-theme .role-card__list li::before {
    content: "";
    position: absolute;
    left: -15px;
    width: 6px !important;
    height: 6px !important;
    background-color: transparent !important;
    transform: rotate(45deg) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 0 !important;
    top: 7px !important;
}

:root.dark-theme .role-card__list li:hover::before {
    background-color: transparent !important;
    border-color: var(--teal-blue) !important;
    box-shadow: 0 0 5px rgba(0, 215, 231, 0.5) !important;
}

/* Переопределяем все возможные варианты маркеров для разных секций */
:root.dark-theme .role-card__section:nth-child(1) .role-card__list li::before,
:root.dark-theme .role-card__section:nth-child(2) .role-card__list li::before,
:root.dark-theme .role-card__section:nth-child(3) .role-card__list li::before,
:root.dark-theme .role-card:nth-child(1) .role-card__list li::before,
:root.dark-theme .role-card:nth-child(2) .role-card__list li::before,
:root.dark-theme .role-card:nth-child(3) .role-card__list li::before {
    width: 6px !important;
    height: 6px !important;
    background-color: transparent !important;
    transform: rotate(45deg) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 0 !important;
}

/* Аналогично для состояния при наведении */
:root.dark-theme .role-card__section:nth-child(1) .role-card__list li:hover::before,
:root.dark-theme .role-card__section:nth-child(2) .role-card__list li:hover::before,
:root.dark-theme .role-card__section:nth-child(3) .role-card__list li:hover::before,
:root.dark-theme .role-card:nth-child(1) .role-card__list li:hover::before,
:root.dark-theme .role-card:nth-child(2) .role-card__list li:hover::before,
:root.dark-theme .role-card:nth-child(3) .role-card__list li:hover::before {
    background-color: transparent !important;
    border-color: var(--teal-blue) !important;
}

/* Исправляем цвет маркеров перед заголовками секций для Level 2 и Level 3 в темной теме */
:root.dark-theme .role-card:nth-child(2) .role-card__section h4::before,
:root.dark-theme .role-card:nth-child(3) .role-card__section h4::before {
    background-color: #ffffff !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

:root.dark-theme .role-card:nth-child(2) .role-card__section:hover h4::before,
:root.dark-theme .role-card:nth-child(3) .role-card__section:hover h4::before {
    background-color: var(--teal-blue) !important;
    box-shadow: 0 0 8px var(--teal-blue);
}

/* Убедимся, что маркеры у первого уровня также имеют корректный цвет */
:root.dark-theme .role-card:nth-child(1) .role-card__section h4::before {
    background-color: #ffffff !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

:root.dark-theme .role-card:nth-child(1) .role-card__section:hover h4::before {
    background-color: var(--teal-blue) !important;
    box-shadow: 0 0 8px var(--teal-blue);
}

/* Добавляем белую рамку вокруг текста описания ролей в темной теме */
:root.dark-theme .role-card__description {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

:root.dark-theme .role-card:hover .role-card__description {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Убедимся, что стили применяются для всех трех карточек */
:root.dark-theme .role-card:nth-child(1) .role-card__description,
:root.dark-theme .role-card:nth-child(2) .role-card__description,
:root.dark-theme .role-card:nth-child(3) .role-card__description {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 8px;
}

:root.dark-theme .role-card:nth-child(1):hover .role-card__description,
:root.dark-theme .role-card:nth-child(2):hover .role-card__description,
:root.dark-theme .role-card:nth-child(3):hover .role-card__description {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Добавляем стили для иконки Achievements & Specialization (третий элемент) */
.progression__item:nth-child(3) .progression__icon i {
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.progression__item:nth-child(3):hover .progression__icon i {
    color: var(--teal-blue);
}

/* Стили для иконок в темной теме */
:root.dark-theme .progression__item:nth-child(1) .progression__icon i,
:root.dark-theme .progression__item:nth-child(2) .progression__icon i,
:root.dark-theme .progression__item:nth-child(3) .progression__icon i {
    color: #ffffff;
}

:root.dark-theme .progression__item:nth-child(1):hover .progression__icon i,
:root.dark-theme .progression__item:nth-child(2):hover .progression__icon i,
:root.dark-theme .progression__item:nth-child(3):hover .progression__icon i {
    color: var(--teal-blue);
}

/* Если у иконки есть SVG, обрабатываем и его */
.progression__item:nth-child(3) .progression__icon svg path {
    fill: var(--primary-blue);
    transition: all 0.3s ease;
}

:root.dark-theme .progression__item:nth-child(3) .progression__icon svg path {
    fill: #ffffff;
}

.progression__item:nth-child(3):hover .progression__icon svg path {
    fill: var(--teal-blue);
}

/* Установить синий цвет для всех иконок в прогрессии */
.progression__icon i {
    color: var(--primary-blue);
}

/* Убираю специфические правила для второй иконки */
.progression__item:nth-child(2) .progression__icon i {
    color: var(--primary-blue);
}

/* Убираю изменение цвета при наведении, для первой и второй иконки */
.progression__item:nth-child(1) .progression__icon i,
.progression__item:nth-child(2):hover .progression__icon i {
    color: var(--primary-blue);
}

/* Третья иконка (Achievements & Specialization) - синяя */
.progression__item:nth-child(3) .progression__icon i {
    color: var(--primary-blue);
}

/* Убираю изменение цвета при наведении для третьей иконки */
.progression__item:nth-child(3):hover .progression__icon i {
    color: var(--primary-blue);
}

/* Для SVG путей тоже синий цвет */
.progression__item .progression__icon svg path {
    fill: var(--primary-blue);
}

.progression__item:hover .progression__icon svg path {
    fill: var(--primary-blue);
}

.progression__item:nth-child(2) .progression__icon svg path,
.progression__item:nth-child(3) .progression__icon svg path {
    fill: var(--primary-blue);
}

.progression__item:nth-child(2):hover .progression__icon svg path,
.progression__item:nth-child(3):hover .progression__icon svg path {
    fill: var(--primary-blue);
}

/* В темной теме все иконки белые, без изменений при наведении */
:root.dark-theme .progression__icon i {
    color: #ffffff;
}

:root.dark-theme .progression__item:hover .progression__icon i {
    color: #ffffff;
}

:root.dark-theme .progression__item .progression__icon svg path {
    fill: #ffffff;
}

:root.dark-theme .progression__item:hover .progression__icon svg path {
    fill: #ffffff;
}

/* Настройка иконок для Rewards System */
/* Иконки для всех карточек в разделе Rewards синие в светлой теме */
.rewards__card-icon i,
.rewards__card-icon svg path {
    color: var(--primary-blue);
    fill: var(--primary-blue);
}

/* Переопределяем конкретно для второй карточки (Weekly Rewards) */
.rewards__card:nth-child(2) .rewards__card-icon i {
    color: var(--primary-blue) !important;
}

.rewards__card:nth-child(2) .rewards__card-icon svg path {
    fill: var(--primary-blue) !important;
}

/* Переопределяем конкретно для третьей карточки (Monthly Rewards) */
.rewards__card:nth-child(3) .rewards__card-icon i {
    color: var(--primary-blue) !important;
}

.rewards__card:nth-child(3) .rewards__card-icon svg path {
    fill: var(--primary-blue) !important;
}

/* Убираем изменение цвета при наведении */
.rewards__card:hover .rewards__card-icon i,
.rewards__card:nth-child(2):hover .rewards__card-icon i,
.rewards__card:nth-child(3):hover .rewards__card-icon i {
    color: var(--primary-blue) !important;
}

.rewards__card:hover .rewards__card-icon svg path,
.rewards__card:nth-child(2):hover .rewards__card-icon svg path,
.rewards__card:nth-child(3):hover .rewards__card-icon svg path {
    fill: var(--primary-blue) !important;
}

/* Иконки в темной теме - белые */
:root.dark-theme .rewards__card-icon i,
:root.dark-theme .rewards__card-icon svg path {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* Убираем изменение цвета при наведении в темной теме */
:root.dark-theme .rewards__card:hover .rewards__card-icon i,
:root.dark-theme .rewards__card:nth-child(2):hover .rewards__card-icon i,
:root.dark-theme .rewards__card:nth-child(3):hover .rewards__card-icon i {
    color: #ffffff !important;
}

:root.dark-theme .rewards__card:hover .rewards__card-icon svg path,
:root.dark-theme .rewards__card:nth-child(2):hover .rewards__card-icon svg path,
:root.dark-theme .rewards__card:nth-child(3):hover .rewards__card-icon svg path {
    fill: #ffffff !important;
}

/* Стиль для восклицательного знака в темной теме */
:root.dark-theme .rewards__important::before {
    display: none;
}

/* Полное переопределение всех стилей кнопки в темной теме */
html body :root.dark-theme .nav .nav__container .nav__action .nav__button,
:root.dark-theme .nav__button,
:root.dark-theme .nav__button:link,
:root.dark-theme .nav__button:visited,
:root.dark-theme .nav__button:active,
:root.dark-theme .nav__button:focus {
    background-color: var(--primary-blue) !important;
    color: #18448d !important;
    border: 2px solid white !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

html body :root.dark-theme .nav .nav__container .nav__action .nav__button:hover,
:root.dark-theme .nav__button:hover {
    background-color: var(--teal-blue) !important;
    color: white !important;
    border-color: white !important;
}

/* Мобильная версия */
@media (max-width: 992px) {
    html body :root.dark-theme .nav .nav__container .nav__action .nav__button,
    :root.dark-theme .nav__button,
    :root.dark-theme .nav__button:link,
    :root.dark-theme .nav__button:visited,
    :root.dark-theme .nav__button:active,
    :root.dark-theme .nav__button:focus {
        background-color: var(--primary-blue) !important;
        color: #18448d !important;
        border: 2px solid white !important;
    }
}

/* Удаляем старые медиа-запросы и добавляем новые */

/* Медиа-запросы для планшетов (992px и меньше) */
@media (max-width: 992px) {
    /* Предотвращение горизонтального скролла */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Навигация */
    .header {
        width: 100%;
        max-width: 100%;
    }
    
    .nav {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .nav__container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav__logo {
        display: flex;
        align-items: center;
    }
    
    .nav__action {
        display: flex;
        align-items: center;
        margin-right: 1rem;
    }
    
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--bg-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 6rem 2rem;
        transition: right 0.4s ease-in-out;
        z-index: 98;
        overflow-y: auto;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 2rem;
    }

    .nav__toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 99;
    }

    .nav__button {
        padding: 0.75rem 1.5rem;
        white-space: nowrap;
        position: relative;
        top: -2px;
    }
    
    .theme-toggle {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 100;
    }
    
    /* Секция About */
    .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about__image {
        order: -1;
    }
    
    .about__features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Секция Roles */
    .roles {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .roles__container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .roles__cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    
    .role-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        padding: 1.5rem;
    }
    
    .role-card__description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    /* Секция Hero */
    .hero {
        width: 100%;
        max-width: 100%;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero__logo {
        margin: 0 auto;
    }
    
    /* Секция Progression */
    .progression {
        width: 100%;
        max-width: 100%;
    }
    
    .progression__item {
        flex-direction: column;
        padding: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .progression__item-left {
        margin-bottom: 1.5rem;
    }
    
    .progression__icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .progression__item-right {
        padding-left: 0;
    }
    
    .progression__item:hover .progression__item-right {
        transform: translateY(0);
    }
    
    /* Общие контейнеры */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Секция Rewards */
    .rewards {
        width: 100%;
        max-width: 100%;
    }
    
    .rewards__cards {
        width: 100%;
        max-width: 100%;
    }
    
    .rewards__card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Медиа-запросы для мобильных устройств (768px и меньше) */
@media (max-width: 768px) {
    /* Общие стили */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Навигация */
    .nav__container {
        padding: 0.5rem 0;
    }
    
    .nav__logo {
        max-width: 120px;
    }
    
    .nav__action {
        margin-right: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav__button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        position: relative;
        top: -2px;
    }
    
    /* Секция About */
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .about__title {
        font-size: 2rem;
    }
    
    /* Секция Roles */
    .roles__title, 
    .progression__title,
    .rewards__title,
    .steps__title {
        font-size: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Карточки ролей */
    .role-card {
        padding: 1.5rem;
        overflow: hidden;
        font-size: 0.95rem;
    }
    
    .role-card__title {
        font-size: 1.5rem;
        word-wrap: break-word;
        margin-bottom: 0.5rem;
    }
    
    .role-card__level {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .role-card__description {
        font-size: 0.95rem;
        word-wrap: break-word;
        width: 100%;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .role-card__section {
        margin-bottom: 1.2rem;
    }
    
    .role-card__section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .role-card__list {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
        list-style-position: outside;
    }
    
    .role-card__list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        padding-left: 0.3rem;
    }
    
    .role-card__icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    /* Секция Footer */
    .footer {
        padding: 3rem 0 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer__column {
        margin-bottom: 1.5rem;
    }
    
    .footer__title::after {
        width: 40px;
    }
    
    .footer__link {
        font-size: 0.9rem;
    }
    
    /* Секция CTA */
    .cta {
        padding: 4rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .cta__box {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cta__title {
        font-size: 1.8rem;
    }
    
    .cta__text {
        font-size: 1rem;
    }
    
    /* Секция Progression */
    .progression__item {
        margin-bottom: 1.5rem;
    }
    
    .progression__item-left h3 {
        font-size: 1.2rem;
    }
    
    .progression__icon {
        width: 60px;
        height: 60px;
    }
    
    .progression__icon i {
        font-size: 1.5rem;
    }
    
    /* Секция Steps */
    .steps {
        width: 100%;
        max-width: 100%;
    }
    
    .step {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .step__notice {
        padding: 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Highlight стили */
    .highlight {
        padding: 0.2rem 0.5rem;
        font-size: inherit;
    }
    
    .progression__item-right .highlight {
        display: inline-block;
        margin: 0.5rem 0;
    }
}

/* Медиа-запросы для маленьких мобильных устройств (480px и меньше) */
@media (max-width: 480px) {
    /* Общие стили */
    html {
        font-size: 14px;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Навигация */
    .nav__container {
        padding: 0.5rem 0;
    }
    
    .nav__logo {
        max-width: 100px;
    }
    
    .nav__action {
        margin-right: 0.8rem;
    }
    
    .nav__button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        position: relative;
        top: -1px;
    }
    
    .nav__toggle {
        font-size: 1.3rem;
    }
    
    .nav__menu {
        width: 85%;
        padding: 5rem 1.5rem;
    }
    
    /* Карточки ролей */
    .role-card {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .role-card__title {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .role-card__level {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .role-card__description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .role-card__section {
        margin-bottom: 1rem;
    }
    
    .role-card__section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .role-card__list {
        padding-left: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .role-card__list li {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
        padding-left: 0.2rem;
    }
    
    .role-card__icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    /* Секция Hero */
    .hero__title-large {
        font-size: 2.2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero__title-medium {
        font-size: 1.6rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Секция Progression */
    .progression__icon {
        width: 50px;
        height: 50px;
    }
    
    .progression__icon i {
        font-size: 1.2rem;
    }
    
    .progression__item-left h3 {
        font-size: 1.1rem;
    }
    
    /* Секция Highlight */
    .highlight {
        padding: 0.15rem 0.4rem;
        font-size: 0.9em;
    }
    
    .progression__item-right .highlight {
        margin: 0.3rem 0;
    }
    
    /* Секция CTA */
    .cta__box {
        padding: 1.5rem 1rem;
    }
    
    .cta__title {
        font-size: 1.5rem;
    }
    
    .cta__text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta__button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Секция Footer */
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    /* Секция Rewards */
    .rewards__cards {
        gap: 1.5rem;
    }
    
    .rewards__card {
        padding: 1.5rem;
    }
}

/* Медиа-запросы для очень маленьких устройств (360px и меньше) */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    /* Навигация */
    .nav__logo {
        max-width: 90px;
    }
    
    .nav__button {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .nav__toggle {
        font-size: 1.2rem;
    }
    
    /* Карточки ролей */
    .role-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .role-card__title {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .role-card__level {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.7rem;
    }
    
    .role-card__description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.25;
    }
    
    .role-card__section {
        margin-bottom: 0.8rem;
    }
    
    .role-card__section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .role-card__list {
        padding-left: 1rem;
        margin-bottom: 0.7rem;
    }
    
    .role-card__list li {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
        padding-left: 0.2rem;
    }
    
    .role-card__icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    /* Секция Hero */
    .hero__title-large {
        font-size: 2rem;
    }
    
    .hero__title-medium {
        font-size: 1.4rem;
    }
    
    .hero__text {
        font-size: 0.9rem;
    }
}

/* Исправление для текста в карточках, чтобы он не выходил за границы */
.role-card__description,
.role-card__list li,
.role-card__section h4,
.role-card__title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Исправление для ссылок в карточках */
.role-card__list li a {
    word-break: break-word;
}

/* Исправление для Telegram app текста */
.role-card__list li a[href*="telegram"] {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Дополнительные исправления для карточек Ambassador Roles */
@media (max-width: 768px) {
    /* Изменяем структуру карточек на вертикальную */
    .role-card {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        overflow: hidden;
        font-size: 0.95rem;
    }
    
    .role-card__main {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .role-card__section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 1.2rem;
    }
    
    /* Уменьшаем отступы и размеры для лучшего отображения */
    .role-card__list {
        margin-left: 0;
        padding-left: 1.2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .role-card__list li {
        margin-bottom: 0.4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Улучшаем отображение текста в карточках */
    .role-card__description {
        font-size: 0.9rem;
        line-height: 1.3;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Уменьшаем размер шрифта для Telegram app */
    .role-card__list li a[href*="telegram"] {
        font-size: 0.85rem;
        word-break: break-all;
    }
    
    /* Изменяем структуру секций внутри карточки */
    .role-card__section {
        display: flex;
        flex-direction: column;
    }
    
    /* Изменяем структуру заголовков и списков */
    .role-card__section h4 {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 0.8rem;
    }
    
    /* Изменяем структуру элементов списка */
    .role-card__list li {
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Добавляем перенос слов для всех текстовых элементов */
    .role-card__title,
    .role-card__level,
    .role-card__description,
    .role-card__section h4,
    .role-card__list li,
    .role-card__list li a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Уменьшаем размеры для маленьких экранов */
    .role-card {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .role-card__list {
        padding-left: 1rem;
    }
    
    .role-card__list li {
        font-size: 0.8rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }
    
    .role-card__description {
        font-size: 0.85rem;
        line-height: 1.25;
    }
    
    /* Уменьшаем размер шрифта для Telegram app */
    .role-card__list li a[href*="telegram"] {
        font-size: 0.8rem;
        word-break: break-all;
    }
    
    /* Дополнительные стили для улучшения читаемости */
    .role-card__section {
        margin-bottom: 1rem;
    }
    
    .role-card__section h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 360px) {
    /* Еще больше уменьшаем размеры для очень маленьких экранов */
    .role-card {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .role-card__list {
        padding-left: 0.8rem;
    }
    
    .role-card__list li {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .role-card__description {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Уменьшаем размер шрифта для Telegram app */
    .role-card__list li a[href*="telegram"] {
        font-size: 0.75rem;
        word-break: break-all;
    }
    
    /* Дополнительные стили для улучшения читаемости */
    .role-card__section {
        margin-bottom: 0.8rem;
    }
    
    .role-card__section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
}

/* Добавляем специальные стили для элементов с длинным текстом */
@media (max-width: 768px) {
    /* Стили для Telegram app ссылки */
    .role-card__list li a[href*="telegram"] {
        display: inline-block;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-all;
        hyphens: auto;
    }
    
    /* Стили для длинных слов в описании */
    .role-card__description {
        word-break: break-word;
    }
    
    /* Стили для элементов списка с длинным текстом */
    .role-card__list li {
        word-break: break-word;
    }
    
    /* Стили для заголовков с длинным текстом */
    .role-card__section h4 {
        word-break: break-word;
    }
    
    /* Стили для всех текстовых элементов */
    .role-card * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Изменяем структуру карточки для вертикального отображения */
    .role-card {
        display: flex;
        flex-direction: column;
    }
    
    /* Изменяем структуру секций Benefits и Requirements */
    .role-card__section:nth-child(1),
    .role-card__section:nth-child(2) {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        float: none;
        clear: both;
    }
}

/* Исправление для текста в карточках, чтобы он не выходил за границы */
.role-card__description,
.role-card__list li,
.role-card__section h4,
.role-card__title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Исправление для ссылок в карточках */
.role-card__list li a {
    word-break: break-word;
}

/* Исправление для Telegram app текста */
.role-card__list li a[href*="telegram"] {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
}

/* Центрирование кнопки Join Now в навбаре */
.nav__button {
    position: relative;
    top: -3px;
}

@media (max-width: 992px) {
    .nav__button {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav__action {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav__button {
        top: 0;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav__action {
        margin-right: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .nav__button {
        top: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .nav__action {
        margin-right: 0.8rem;
        height: 100%;
    }
}

@media (max-width: 360px) {
    .nav__button {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Добавляем стили для предупреждающей плашки */
.content-disclaimer {
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.1), rgba(var(--teal-blue-rgb), 0.15));
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.05), rgba(var(--teal-blue-rgb), 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.content-disclaimer:hover::before {
    opacity: 1;
}

.content-disclaimer__title {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.content-disclaimer__title i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.content-disclaimer__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

:root.dark-theme .content-disclaimer {
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.15), rgba(var(--teal-blue-rgb), 0.2));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

:root.dark-theme .content-disclaimer__title {
    color: var(--teal-blue);
}

:root.dark-theme .content-disclaimer__text {
    color: var(--text-color-dark);
}

@media (max-width: 768px) {
    .content-disclaimer {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .content-disclaimer__title {
        font-size: 1.1rem;
    }
    
    .content-disclaimer__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-disclaimer {
        padding: 1rem;
        margin: 1.25rem 0;
    }
    
    .content-disclaimer__title {
        font-size: 1rem;
    }
    
    .content-disclaimer__text {
        font-size: 0.9rem;
    }
}

/* Стили для предупреждающей плашки с повышенным приоритетом */
.content-disclaimer {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.1), rgba(0, 180, 216, 0.15)) !important;
    border-left: 4px solid #0C5E7C !important;
    padding: 1.5rem !important;
    margin: 2rem 0 !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    z-index: 10 !important;
}

.content-disclaimer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.05), rgba(0, 180, 216, 0.1)) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 1 !important;
}

.content-disclaimer:hover::before {
    opacity: 1 !important;
}

.content-disclaimer__title {
    font-family: 'Comfortaa', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    color: #0C5E7C !important;
    margin-bottom: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.content-disclaimer__title i {
    margin-right: 0.75rem !important;
    font-size: 1.5rem !important;
}

.content-disclaimer__text {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Темная тема */
:root.dark-theme .content-disclaimer {
    background: linear-gradient(135deg, rgba(12, 94, 124, 0.15), rgba(0, 180, 216, 0.2)) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border-left: 4px solid #00B4D8 !important;
}

:root.dark-theme .content-disclaimer__title {
    color: #00B4D8 !important;
}

:root.dark-theme .content-disclaimer__text {
    color: #e0e0e0 !important;
}

@media (max-width: 768px) {
    .content-disclaimer {
        padding: 1.25rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .content-disclaimer__title {
        font-size: 1.1rem !important;
    }
    
    .content-disclaimer__text {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .content-disclaimer {
        padding: 1rem !important;
        margin: 1.25rem 0 !important;
    }
    
    .content-disclaimer__title {
        font-size: 1rem !important;
    }
    
    .content-disclaimer__text {
        font-size: 0.9rem !important;
    }
}

/* Evaluation System Section */
.evaluation {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.evaluation__container {
    position: relative;
    z-index: 2;
}

.evaluation__content {
    max-width: 1100px;
    margin: 0 auto;
}

.evaluation__title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.evaluation__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-blue));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.evaluation__intro, .evaluation__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.evaluation__subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

.evaluation__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.evaluation-card {
    background: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evaluation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.03), rgba(var(--teal-blue-rgb), 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.evaluation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.evaluation-card:hover::before {
    opacity: 1;
}

.evaluation-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.evaluation-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-blue-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.evaluation-card:hover .evaluation-card__icon {
    transform: scale(1.1);
    background: rgba(var(--primary-blue-rgb), 0.15);
}

.evaluation-card__title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.evaluation-card__content {
    position: relative;
    z-index: 2;
}

.evaluation-card__content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.evaluation__types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.evaluation-type {
    display: flex;
    align-items: flex-start;
    background: rgba(var(--primary-blue-rgb), 0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.evaluation-type:hover {
    background: rgba(var(--primary-blue-rgb), 0.08);
    transform: translateY(-3px);
}

.evaluation-type__icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.evaluation-type__content h4 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.evaluation-type__content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.evaluation__format {
    margin-top: 2rem;
    background: rgba(var(--teal-blue-rgb), 0.05);
    border-radius: 0.75rem;
    padding: 2rem;
}

/* Темная тема */
:root.dark-theme .evaluation-card {
    background: var(--card-bg-dark);
}

:root.dark-theme .evaluation-type {
    background: rgba(var(--primary-blue-rgb), 0.08);
}

:root.dark-theme .evaluation-type:hover {
    background: rgba(var(--primary-blue-rgb), 0.12);
}

:root.dark-theme .evaluation__format {
    background: rgba(var(--teal-blue-rgb), 0.08);
}

/* Адаптивность */
@media (max-width: 992px) {
    .evaluation {
        padding: 5rem 0;
    }
    
    .evaluation__title {
        font-size: 2.2rem;
    }
    
    .evaluation__subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .evaluation {
        padding: 4rem 0;
    }
    
    .evaluation__title {
        font-size: 2rem;
    }
    
    .evaluation__subtitle {
        font-size: 1.4rem;
    }
    
    .evaluation__intro, .evaluation__text {
        font-size: 1rem;
    }
    
    .evaluation-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .evaluation {
        padding: 3rem 0;
    }
    
    .evaluation__title {
        font-size: 1.75rem;
    }
    
    .evaluation__subtitle {
        font-size: 1.25rem;
    }
    
    .evaluation-card__title {
        font-size: 1.15rem;
    }
}

/* Обновляем адаптивность для карточек */
@media (max-width: 768px) {
    .evaluation__cards {
        grid-template-columns: 1fr;
    }
}

/* Karma System */
.evaluation__karma {
    margin-bottom: 3rem;
}

.karma-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.karma-level {
    background: var(--card-bg);
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.karma-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.9;
    transition: height 0.3s ease;
}

.karma-level--low::before {
    background: linear-gradient(to right, #ff6b6b, #ff8e8e);
}

.karma-level--neutral::before {
    background: linear-gradient(to right, #f7b731, #ffda79);
}

.karma-level--high::before {
    background: linear-gradient(to right, #20bf6b, #26de81);
}

.karma-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.karma-level:hover::before {
    height: 6px;
    opacity: 1;
}

.karma-level__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.karma-level__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.karma-level--low .karma-level__icon {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.karma-level--neutral .karma-level__icon {
    background: rgba(247, 183, 49, 0.15);
    color: #f7b731;
}

.karma-level--high .karma-level__icon {
    background: rgba(32, 191, 107, 0.15);
    color: #20bf6b;
}

.karma-level__title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-right: auto;
}

.karma-level__points {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    margin-left: auto;
}

.karma-level--low .karma-level__points {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.karma-level--neutral .karma-level__points {
    background: rgba(247, 183, 49, 0.15);
    color: #f7b731;
}

.karma-level--high .karma-level__points {
    background: rgba(32, 191, 107, 0.15);
    color: #20bf6b;
}

.karma-level__content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.karma-level__content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.karma-level__indicator {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.karma-level__bar {
    height: 100%;
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.karma-level__bar--low {
    background: linear-gradient(to right, #ff6b6b, #ff8e8e);
}

.karma-level__bar--neutral {
    background: linear-gradient(to right, #f7b731, #ffda79);
}

.karma-level__bar--high {
    background: linear-gradient(to right, #20bf6b, #26de81);
}

.karma-level.in-view .karma-level__bar--low {
    width: 40%;
}

.karma-level.in-view .karma-level__bar--neutral {
    width: 65%;
}

.karma-level.in-view .karma-level__bar--high {
    width: 90%;
}

.karma-explainer {
    background: rgba(var(--primary-blue-rgb), 0.05);
    border-radius: 0.75rem;
    padding: 1.75rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.karma-explainer__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.karma-explainer__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.karma-explainer__item--positive .karma-explainer__icon {
    background: rgba(32, 191, 107, 0.15);
    color: #20bf6b;
}

.karma-explainer__item--negative .karma-explainer__icon {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.karma-explainer__content h4 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.karma-explainer__content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.karma-explainer__item--positive .karma-explainer__content p {
    color: #20bf6b;
}

.karma-explainer__item--negative .karma-explainer__content p {
    color: #ff6b6b;
}

/* Темная тема для кармы */
:root.dark-theme .karma-level {
    background: var(--card-bg-dark);
}

:root.dark-theme .karma-level__indicator {
    background: rgba(255, 255, 255, 0.1);
}

:root.dark-theme .karma-explainer {
    background: rgba(var(--primary-blue-rgb), 0.1);
}

/* Адаптивность для кармы */
@media (max-width: 992px) {
    .karma-levels {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .karma-levels {
        grid-template-columns: 1fr;
    }
    
    .karma-explainer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Referral Program Section */
.referral {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.referral__container {
    position: relative;
    z-index: 2;
}

.referral__content {
    max-width: 1000px;
    margin: 0 auto;
}

.referral__title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.referral__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-blue));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.referral__intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.referral__subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

.referral__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.referral-step {
    display: flex;
    align-items: flex-start;
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.referral-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--teal-blue));
    opacity: 0.7;
    transition: width 0.3s ease;
}

.referral-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.referral-step:hover::before {
    width: 6px;
    opacity: 1;
}

.referral-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 1.5rem;
    box-shadow: 0 4px 12px rgba(var(--primary-blue-rgb), 0.3);
    transition: all 0.3s ease;
}

.referral-step:hover .referral-step__number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(var(--primary-blue-rgb), 0.4);
}

.referral-step__content {
    flex-grow: 1;
}

.referral-step__content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Темная тема для реферальной программы */
:root.dark-theme .referral-step {
    background: var(--card-bg-dark);
}

:root.dark-theme .referral-step__number {
    background: var(--teal-blue);
}

/* Адаптивность для реферальной программы */
@media (max-width: 768px) {
    .referral {
        padding: 4rem 0;
    }
    
    .referral__title {
        font-size: 2.2rem;
    }
    
    .referral__subtitle {
        font-size: 1.5rem;
    }
    
    .referral__intro {
        font-size: 1.1rem;
    }
    
    .referral-step {
        padding: 1.25rem;
    }
    
    .referral-step__number {
        min-width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .referral-step__content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .referral {
        padding: 3rem 0;
    }
    
    .referral__title {
        font-size: 1.9rem;
    }
    
    .referral__subtitle {
        font-size: 1.3rem;
    }
    
    .referral__intro {
        font-size: 1rem;
    }
    
    .referral-step {
        padding: 1rem;
    }
    
    .referral-step__number {
        min-width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
    
    .referral-step__content p {
        font-size: 0.95rem;
    }
}