﻿/* ============ Amsativ — Futuristic Edition ============ */
/* Киберпанк палитра: темный космос, неоновые акценты, голографические эффекты */

:root {
    --bg-void: #000000;
    --bg-deep: #0a0a0f;
    --bg-surface: #121218;
    --bg-elevated: #1a1a24;
    --neon-cyan: #00fff9;
    --neon-purple: #b24bf3;
    --neon-pink: #ff2e97;
    --neon-blue: #00d4ff;
    --neon-green: #39ff14;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b7f;
    --glow-cyan: 0 0 20px rgba(0, 255, 249, 0.4), 0 0 40px rgba(0, 255, 249, 0.2);
    --glow-purple: 0 0 20px rgba(178, 75, 243, 0.4), 0 0 40px rgba(178, 75, 243, 0.2);
    --glow-pink: 0 0 20px rgba(255, 46, 151, 0.4), 0 0 40px rgba(255, 46, 151, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(0, 255, 249, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 255, 249, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 249, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero__glow {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 249, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero__orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.hero__orb--1 {
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, var(--neon-purple), transparent);
    animation-delay: 0s;
}

.hero__orb--2 {
    bottom: 20%;
    right: -10%;
    background: radial-gradient(circle, var(--neon-cyan), transparent);
    animation-delay: 5s;
}

.hero__orb--3 {
    top: 50%;
    right: 20%;
    background: radial-gradient(circle, var(--neon-pink), transparent);
    animation-delay: 10s;
    width: 300px;
    height: 300px;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: var(--glow-cyan);
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title__line {
    display: block;
}

.title__line--accent {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hueRotate 5s linear infinite;
}

@keyframes hueRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    position: relative;
}

    .stat::before {
        content: '';
        position: absolute;
        left: -16px;
        top: 50%;
        width: 2px;
        height: 60%;
        background: var(--neon-cyan);
        transform: translateY(-50%);
        box-shadow: var(--glow-cyan);
    }

    .stat:first-child::before {
        display: none;
    }

.stat__value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ BUTTONS ============ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn__text {
    position: relative;
    z-index: 2;
}

.btn__arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--bg-void);
    border-color: var(--neon-cyan);
}

    .btn--primary .btn__glow {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
        opacity: 0;
        transition: opacity 0.3s ease;
        filter: blur(20px);
    }

    .btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--glow-cyan);
    }

        .btn--primary:hover .btn__glow {
            opacity: 0.6;
        }

.btn--outline {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border-glow);
    color: var(--neon-cyan);
    backdrop-filter: blur(10px);
}

    .btn--outline:hover {
        background: rgba(0, 255, 249, 0.1);
        border-color: var(--neon-cyan);
        box-shadow: var(--glow-cyan);
    }

.btn--ghost {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

    .btn--ghost:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--border-glow);
    }

/* ============ SECTIONS ============ */
.section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section--dark {
    background: var(--bg-deep);
}

/* Particles animation for Features section */
.section__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image: linear-gradient(rgba(0, 255, 249, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 249, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: particlesMove 15s linear infinite;
}

@keyframes particlesMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.section__particles::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(178, 75, 243, 0.12), transparent 70%);
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

/* Wave animation for Use Cases section */
.section__wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image: linear-gradient(rgba(178, 75, 243, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(178, 75, 243, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: waveMove 18s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

.section__wave::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 249, 0.1), transparent 70%);
    filter: blur(70px);
    animation: float 12s ease-in-out infinite;
}

/* Circuit board pattern for Pricing section */
.section__circuits {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image: linear-gradient(rgba(0, 255, 249, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 249, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.section__circuits::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 46, 151, 0.08), transparent 70%);
    filter: blur(80px);
    animation: pulse 10s ease-in-out infinite;
    animation-delay: 2s;
}

/* Hexagon pattern for Security section */
.section__hexagons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image: linear-gradient(rgba(0, 255, 249, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 249, 0.03) 1px, transparent 1px);
    background-size: 45px 45px;
    animation: hexagonMove 16s linear infinite;
}

@keyframes hexagonMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(45px, 45px);
    }
}

.section__hexagons::before {
    content: '';
    position: absolute;
    top: 40%;
    right: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(178, 75, 243, 0.15), transparent 70%);
    filter: blur(65px);
    animation: float 14s ease-in-out infinite;
    animation-delay: 5s;
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section__tag {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: 'Courier New', monospace;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ FEATURES ============ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

    .feature:hover {
        border-color: var(--border-glow);
        transform: translateY(-4px);
        box-shadow: var(--glow-cyan);
    }

.feature__icon {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.icon__glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(0, 255, 249, 0.3), transparent);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .icon__glow {
    opacity: 1;
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature__border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature__border {
    opacity: 1;
}

/* ============ USE CASES ============ */
.usecases {
    display: grid;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.usecase {
    position: relative;
    padding: 32px 32px 32px 100px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .usecase:hover {
        border-color: var(--border-glow);
        transform: translateX(8px);
    }

.usecase__number {
    position: absolute;
    left: 32px;
    top: 32px;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.usecase__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.usecase__text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.usecase__line {
    position: absolute;
    bottom: 0;
    left: 100px;
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.usecase:hover .usecase__line {
    opacity: 1;
}

/* ============ PRICING ============ */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    background: var(--bg-surface);
    border: 2px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

    .price-card:hover {
        border-color: var(--border-glow);
        transform: translateY(-8px);
    }

.price-card--featured {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.price-card__label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--bg-void);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

.price-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.price-card__name {
    font-size: 1.5rem;
    font-weight: 900;
}

.price-card__badge {
    padding: 4px 12px;
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.price-card__price {
    margin-bottom: 32px;
}

.price__currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-right: 4px;
}

.price__value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price__value--custom {
    font-size: 2rem;
}

.price-card__features {
    list-style: none;
    margin-bottom: 32px;
}

    .price-card__features li {
        padding: 12px 0;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border-subtle);
    }

        .price-card__features li:last-child {
            border-bottom: none;
        }

.feature__check {
    display: inline-block;
    width: 24px;
    margin-right: 12px;
    color: var(--neon-cyan);
    font-weight: 900;
}

.price-card__glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, rgba(0, 255, 249, 0.15), transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.price-card:hover .price-card__glow {
    opacity: 1;
}

/* ============ SECURITY ============ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.security-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .security-item:hover {
        border-color: var(--border-glow);
        transform: translateY(-4px);
        box-shadow: var(--glow-cyan);
    }

.security-item__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 249, 0.3));
}

.security-item__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.security-item__text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ CTA ============ */
.cta {
    padding: 120px 0;
}

.cta__inner {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-surface);
    border: 2px solid var(--border-glow);
    border-radius: 32px;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at center, rgba(0, 255, 249, 0.2), transparent 60%);
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

.cta__title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta__text {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .hero__stats {
        gap: 32px;
    }

    .stat__value {
        font-size: 1.5rem;
    }

    .section {
        padding: 80px 0;
    }

    .section__header {
        margin-bottom: 60px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .usecase {
        padding: 32px 24px;
    }

    .usecase__number {
        position: static;
        margin-bottom: 16px;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    .cta__inner {
        padding: 60px 24px;
    }

    .btn {
        padding: 12px 24px;
    }

    .btn--lg {
        padding: 14px 28px;
    }

    /* Убрать прозрачность hero на мобильных */
    .hero__grid {
        opacity: 0.5;
    }

    .hero__glow {
        opacity: 0.3;
    }

    .hero__orb {
        opacity: 0.2;
    }

    /* Уменьшить интенсивность анимаций на мобильных */
    .section__particles,
    .section__wave,
    .section__circuits,
    .section__hexagons {
        opacity: 0.15;
    }

    /* Footer responsive */
    .ftr__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ftr__nav ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============ FOOTER ============ */
.ftr {
    position: relative;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
    overflow: hidden;
}

.ftr__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 255, 249, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 249, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.ftr__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ftr__brand .brand {
    margin-bottom: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 900;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

    .brand:hover {
        color: var(--neon-cyan);
        text-shadow: var(--glow-cyan);
    }

.brand--small {
    font-size: 1.125rem;
}
.lang-switch--desktop {
    fill: currentColor;
    color: #76e9da;
}
.brand__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    font-weight: 900;
    color: var(--bg-void);
    box-shadow: var(--glow-cyan);
}

.brand--small .brand__logo {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
}

.ftr__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ftr__nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

    .ftr__nav a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--neon-cyan);
        transition: width 0.3s ease;
    }

    .ftr__nav a:hover {
        color: var(--neon-cyan);
    }

        .ftr__nav a:hover::after {
            width: 100%;
        }

.ftr__contacts {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .ftr__contacts a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .ftr__contacts a:hover {
            color: var(--neon-cyan);
            text-shadow: 0 0 10px rgba(0, 255, 249, 0.3);
        }

.ftr__copy {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .ftr__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .ftr {
        padding: 60px 0 32px;
    }

    .ftr__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ftr__brand .brand {
        justify-content: center;
    }

    .ftr__nav ul {
        align-items: center;
    }

    .ftr__contacts {
        align-items: center;
    }
}
