﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', system-ui, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] {
    direction: rtl;
}

.animated-gradient {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.9;
    }
}

.grid-background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 6%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

    nav.scrolled {
        padding: 0.8rem 6%;
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(99, 102, 241, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}



.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #a855f7);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.language-selector {
    position: relative;
}

.lang-button {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

    .lang-button:hover {
        background: rgba(99, 102, 241, 0.25);
        border-color: #6366f1;
        transform: translateY(-2px);
    }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

.lang-option:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(4px);
}

[dir="rtl"] .lang-option:hover {
    transform: translateX(-4px);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
    color: #fff;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 6% 6rem;
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-card {
    position: absolute;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: floatAnimation 25s ease-in-out infinite;
    font-size: 2.5rem;
}

    .float-card:nth-child(1) {
        top: 15%;
        left: 8%;
        animation-delay: 0s;
    }

    .float-card:nth-child(2) {
        top: 55%;
        right: 12%;
        animation-delay: 8s;
    }

    .float-card:nth-child(3) {
        bottom: 15%;
        left: 12%;
        animation-delay: 16s;
    }

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-15px) translateX(-20px) rotate(-3deg);
        opacity: 1;
    }

    75% {
        transform: translateY(-40px) translateX(15px) rotate(4deg);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.25));
    border: 1px solid rgba(99, 102, 241, 0.5);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    display: inline-block;
    animation: fadeInUp 1s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s backwards;
    letter-spacing: -2px;
}

.hero h2 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 850px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-primary {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

    .cta-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .cta-primary:hover::before {
        left: 100%;
    }

    .cta-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.6);
    }

.cta-secondary {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(99, 102, 241, 0.6);
    border-radius: 60px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .cta-secondary:hover {
        background: rgba(99, 102, 241, 0.15);
        border-color: #6366f1;
        transform: translateY(-4px);
    }

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
/*    gap: 4rem;
*/    margin-top: 6rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.features-section {
    padding: 10rem 6%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.section-label {
    color: #6366f1;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 28px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(99, 102, 241, 0.6);
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.products-showcase {
    padding: 10rem 6%;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 32px;
    padding: 3.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .product-card:hover {
        transform: translateY(-12px);
        border-color: rgba(99, 102, 241, 0.7);
        box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
    }

        .product-card:hover::after {
            opacity: 1;
        }

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.product-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.product-title-group h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.product-category {
    font-size: 0.8rem;
    color: #8b5cf6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.product-features {
    list-style: none;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    margin-bottom: 24px;
}

    .product-features li {
        padding: 1rem 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.15);
        font-weight: 500;
    }

        .product-features li:last-child {
            border-bottom: none;
        }

        .product-features li::before {
            content: '✓';
            color: #6366f1;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.2rem;
        }

[dir="rtl"] .product-features li {
    flex-direction: row-reverse;
}

.product-cta {
    margin-top: 2.5rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

    .product-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    }

    .testimonials-section {
        padding: 10rem 6%;
        background: rgba(0, 0, 0, 0.4);
        position: relative;
        z-index: 1;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 28px;
    padding: 3rem;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        border-color: rgba(99, 102, 241, 0.6);
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.cta-section {
    padding: 10rem 6%;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 50%);
        animation: rotate 40s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #e0e7ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 5rem 6% 3rem;
    border-top: 1px solid rgba(99, 102, 241, 0.25);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
    font-weight: 700;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.65);
    line-height: 2.2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

    .footer-section a:hover {
        color: #a855f7;
        transform: translateX(5px);
    }

[dir="rtl"] .footer-section a:hover {
    transform: translateX(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    color: rgba(255, 255, 255, 0.55);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 7rem 5% 4rem;
    }

        .hero h1 {
            font-size: 3rem;
            letter-spacing: -1px;
        }

        .hero h2 {
            font-size: 1.25rem;
        }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-group {
        width: 100%;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        padding: 1.2rem 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .float-card {
        display: none;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.6rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile version */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #333;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 1000;
    }

    [dir="rtl"] .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: unset;
        background: #333;
        flex-direction: column;
        width: 200px;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        user-select: none;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}


.footer-contacts {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.footer-contacts a {
    color: rgba(255,255,255,0.65);
    transition: color 0.25s ease;
}

.footer-contacts a:hover {
    color: #a855f7;
}