header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(10, 14, 35, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    transition: var(--transition);
}

.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 70px;
    height: 70px;
    display: block;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    transition: var(--transition);
}

.logo-container:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.8)) hue-rotate(45deg) brightness(1.2);
    transform: none;
    animation: logo-color-change 3s ease-in-out infinite;
}

@keyframes logo-color-change {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.8));
    }
    33% {
        filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.8));
    }
    66% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

.tagline {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

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

.header-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-switch:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.18);
}

.lang-switch-value {
    color: rgba(255, 255, 255, 0.62);
}

.lang-switch.is-en .lang-switch-label {
    color: rgba(255, 255, 255, 0.62);
}

.lang-switch.is-en .lang-switch-value {
    color: #ffffff;
}

/* Улучшенный Main */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.logo-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-logo {
    display: block;
    width: min(100%, 980px);
    max-width: 940px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #e2e8f0;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(16, 185, 129, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    margin: 2rem auto;
    color: #10b981;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.security-badge:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

/* Улучшенные Features */
.features {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.feature-item {
    flex: 0 1 250px;
    min-width: 300px; 
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animated {
    opacity: 1;
    transform: translateY(0);
    animation: slideUpFadeIn 0.6s ease forwards;
}

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

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}

.feature-item:hover p {
    opacity: 1;
}

/* Улучшенные Services Section */
.services-section {
    padding: 1rem 0 3rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1.1rem;
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    letter-spacing: 1px;
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.services-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.6s ease;
    z-index: -1;
}

.tab-btn.active {
    color: white;
    border-color: transparent;
}

.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(19, 26, 63, 0.88) 0%, rgba(17, 25, 58, 0.94) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(160, 174, 255, 0.12);
    backdrop-filter: blur(20px);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(2, 8, 32, 0.26);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.34);
    box-shadow: 0 26px 70px rgba(7, 10, 33, 0.4), 0 0 45px rgba(124, 58, 237, 0.16);
}

.service-img {
    height: 200px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(135deg, #8d4df6 0%, #7540f0 45%, #6934ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at 80% 75%, rgba(138, 92, 246, 0.22), transparent 38%);
    opacity: 0.9;
}

.service-img::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    background: linear-gradient(180deg, rgba(10, 14, 35, 0), rgba(10, 14, 35, 0.3));
}

.service-img i {
    transition: all 0.5s ease;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 24px rgba(28, 16, 82, 0.28));
}

.service-card:hover .service-img i {
    animation: float-icon-hover 2s ease-in-out;
    color: #fff7c2;
    filter: drop-shadow(0 14px 30px rgba(255, 243, 171, 0.28));
}

.service-card:nth-child(1) .service-img i {
    animation-delay: 0s;
    font-size: 3.6rem;
}
.service-card:nth-child(2) .service-img i {
    animation-delay: 0.2s;
    font-size: 3.25rem;
}
.service-card:nth-child(3) .service-img i {
    animation-delay: 0.4s;
    font-size: 3.5rem;
}

.service-card:nth-child(2) .service-img {
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #9052fa 0%, #7a41f1 45%, #6b33ea 100%);
}

.service-card:nth-child(3) .service-img {
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.17), transparent 34%),
        linear-gradient(135deg, #8c4df4 0%, #7d48f2 40%, #6f39eb 100%);
}

@keyframes float-icon-hover {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg) scale(1.1);
    }
    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.15);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.05);
    }
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.55rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.7;
    flex-grow: 1;
    opacity: 0.9;
}

/* Улучшенные кнопки */
.btn-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    width: fit-content;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::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: left 0.6s ease;
}

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

.btn-hover {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hover:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: fit-content;
    font-size: 0.9rem;
}

.action-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.action-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

/* Улучшенные статистики */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background:
        radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.14), transparent 38%),
        linear-gradient(135deg, rgba(22, 30, 73, 0.95) 0%, rgba(28, 37, 90, 0.96) 52%, rgba(33, 41, 98, 0.94) 100%);
    border-radius: 24px;
    border: 1px solid rgba(154, 168, 255, 0.12);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 45px rgba(2, 8, 32, 0.22);
}

.stat-item {
    text-align: center;
    padding: 1rem;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 222, 89, 0.12), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(180deg, #fff59f 0%, #ffd84a 38%, #ffbf00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 22px rgba(255, 208, 72, 0.24);
}

.stat-label {
    color: #d8def5;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.stat-item:hover .stat-label {
    opacity: 1;
    color: white;
}

/* Улучшенные Innovations Section */
.innovations-section {
    padding: 1rem 0 4rem;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.05), transparent 70%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.35rem;
    margin-top: 1.1rem;
    align-items: stretch;
}

.innovation-card {
    background:
        linear-gradient(180deg, rgba(39, 50, 103, 0.96) 0%, rgba(29, 38, 84, 0.98) 100%);
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(156, 175, 255, 0.12);
    backdrop-filter: blur(18px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon text"
        "chips chips";
    gap: 0.8rem 0.95rem;
    height: 100%;
    box-shadow: 0 16px 38px rgba(6, 10, 35, 0.22);
}

.innovation-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at top right, rgba(135, 92, 255, 0.22), transparent 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%);
    opacity: 0.95;
    transition: var(--transition);
    z-index: -1;
}

.innovation-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 28%),
        radial-gradient(circle at 85% 88%, rgba(115, 95, 255, 0.16), transparent 26%);
    pointer-events: none;
}

.innovation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(132, 98, 255, 0.28);
    box-shadow: 0 22px 48px rgba(8, 12, 37, 0.28), 0 0 30px rgba(116, 96, 255, 0.14);
}

.innovation-icon {
    grid-area: icon;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #5fd2ff 0%, #7a6cff 48%, #9b4dff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    font-size: 1.25rem;
    color: white;
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(92, 105, 255, 0.32);
    align-self: start;
    position: relative;
    z-index: 1;
}

.innovation-card:hover .innovation-icon {
    transform: translateY(-2px) scale(1.04);
}

.innovation-card h3 {
    grid-area: title;
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: white;
    font-weight: 700;
    align-self: center;
    text-wrap: balance;
}

.innovation-card p {
    grid-area: text;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.86;
    font-size: 0.92rem;
}

.innovation-features {
    grid-area: chips;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.1rem;
    align-items: stretch;
}

.innovation-features span {
    background: rgba(89, 118, 255, 0.16);
    color: #b9c9ff;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.74rem;
    border: 1px solid rgba(115, 142, 255, 0.22);
    transition: var(--transition);
    line-height: 1.1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    height: 40px;
    min-height: 40px;
}

.innovation-features span:hover {
    background: rgba(89, 118, 255, 0.28);
    transform: translateY(-2px);
}

footer {
    background: rgba(10, 14, 35, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

/* Добавляем небольшой градиент для глубины */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.footer-content .logo-image {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
    transition: var(--transition);
}

.footer-wordmark {
    width: clamp(180px, 24vw, 280px) !important;
    height: auto !important;
    max-width: 100%;
}

.footer-content:hover .logo-image {
    filter: drop-shadow(0 0 25px rgba(124, 58, 237, 0.8)) hue-rotate(45deg) brightness(1.2);
    transform: rotate(-5deg);
    animation: logo-color-change 3s ease-in-out infinite;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
    transition: var(--transition);
}

.footer-info p:hover {
    color: white;
    transform: translateX(5px);
}

.footer-team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.35rem;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.footer-team-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Анимации для табов */
.tab-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация появления элементов */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация чисел статистики */
.stat-number {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-logo {
        max-width: 600px;
    }
    .section-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 3rem 0;
    }
    .hero-logo {
        max-width: 500px;
    }
    .services-grid,
    .innovations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }
    main {
        padding: 2rem 1rem;
    }
    header {
        padding: 1rem;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .header-nav {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .header-nav .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .header-nav .lang-switch {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .hero {
        padding: 2rem 0;
    }
    .hero-logo {
        max-width: 300px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    .section-title h2 {
        font-size: 2.5rem;
    }
    .services-tabs {
        gap: 0.5rem;
    }
    .tab-btn {
        width: 100%;
        max-width: none;
    }
    .services-grid,
    .innovations-grid,
    .features {
        grid-template-columns: 1fr;
    }
    .innovation-card {
        grid-template-columns: 56px minmax(0, 1fr);
        padding: 1.1rem;
        gap: 0.75rem 0.85rem;
    }
    .innovation-card h3 {
        font-size: 1.05rem;
    }
    .innovation-card p {
        font-size: 0.88rem;
    }
    .btn-container {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        min-width: 250px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem;
    }
    .logo-image {
        width: 56px;
    }
    .tagline {
        font-size: 1rem;
        line-height: 1.4;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .service-card,
    .innovation-card {
        padding: 1.5rem;
    }
    .hero-logo {
        max-width: 250px;
    }
    .btn {
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }
    .footer-content {
        gap: 1rem;
    }
    .footer-info p {
        font-size: 0.95rem;
        gap: 0.6rem;
    }
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }
}

/* ========== CTA ОТКРЫТИЯ СЧЁТА ========== */
.account-cta {
    position: sticky;
    bottom: 24px;
    z-index: 50;
    margin: 3rem 0 4rem;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.account-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 1.6rem 1.6rem 1.4rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(6, 182, 212, 0.28));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
    touch-action: pan-y;
    will-change: transform, opacity;
}

.account-cta-text h3 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.account-cta-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1rem;
}

.account-cta-note {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #f8fafc;
    opacity: 0.85;
}

.account-cta-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 14, 35, 0.6);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.account-cta-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.account-cta.is-hidden {
    display: none;
}

.account-cta-inner.is-dismissed {
    transform: translateX(120%);
    opacity: 0;
}

.account-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .account-cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: min(420px, 100%);
    }

    .account-cta-text h3 {
        font-size: 1.4rem;
    }

    .account-cta-actions {
        width: 100%;
        justify-content: center;
    }

    .account-cta-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-page {
        padding-bottom: 150px;
    }
}

@media (max-width: 480px) {
    .account-cta-text p {
        font-size: 0.9rem;
    }
}

.section-title.no-underline .title-decoration {
    display: none;
}
