:root {
    --primary-color: #6C63FF;
    --secondary-color: #4CAF50;
    --accent-color: #FF6B6B;
    --text-color: #2C3E50;
    --light-text: #95A5A6;
    --background: #FFFFFF;
    --light-background: #F8F9FA;
    --gradient-1: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
    --gradient-2: linear-gradient(135deg, #4CAF50 0%, #6C63FF 100%);
    --border-radius: 12px;
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 15px 35px rgba(108, 99, 255, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes scaleIn {
    from { 
        transform: scale(0.9); 
        opacity: 0; 
    }
    to { 
        transform: scale(1); 
        opacity: 1; 
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background);
    cursor: none;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease, opacity 0.3s ease;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}

.cursor-hover .cursor {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--accent-color);
}

.cursor-hover .cursor-follower {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--accent-color);
    opacity: 0.8;
}

/* Специальные эффекты для разных элементов */
.btn:hover ~ .cursor,
.btn:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(1.8);
}

.logo:hover ~ .cursor,
.logo:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(1.3);
}

.social-link:hover ~ .cursor,
.social-link:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(1.4);
}

.footer-link:hover ~ .cursor,
.footer-link:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Improved container spacing */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Enhanced header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Improved navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Enhanced logo */
.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

/* Enhanced buttons */
.btn {
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
}

.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.primary {
    background: var(--gradient-1);
    color: white;
    border: 2px solid transparent;
}

.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: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.4);
}

.primary:hover::before {
    left: 100%;
}

.primary:hover::after {
    width: 400px;
    height: 400px;
}

.primary:active {
    transform: translateY(0);
}

.primary, .secondary {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.3);
}

.secondary:hover::before {
    width: 400px;
    height: 400px;
}

.secondary:active {
    transform: translateY(0);
}

/* Navigation Button */
.nav-btn {
    padding: 12px 24px;
    background: rgba(108, 99, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-btn:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.nav-btn:hover::before {
    left: 0;
}

/* Enhanced hero section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    filter: blur(100px);
    opacity: 0.1;
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    filter: blur(80px);
    opacity: 0.08;
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Enhanced hero content */
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
    animation: fadeIn 1s ease;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--light-text);
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.2s backwards;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Enhanced hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin: 40px 0;
    animation: fadeIn 1s ease 0.3s backwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 500;
}

/* Enhanced hero buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease 0.4s backwards;
    flex-wrap: wrap;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--background);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.2);
}

.step-number {
    font-size: 72px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 0.8;
}

.step-card h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    max-width: 250px;
}

.step-card p {
    color: var(--light-text);
    line-height: 1.6;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-background);
}

.services h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
}

.service-logo {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.service-card p {
    color: var(--light-text);
    font-size: 16px;
}

.benefit-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(108, 99, 255, 0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(108, 99, 255, 0.5));
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 24px;
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--light-background);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    filter: blur(100px);
    opacity: 0.1;
    bottom: -300px;
    left: -300px;
    border-radius: 50%;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.5s ease backwards;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 580px;
}

.price-card .btn {
    margin-top: 30px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 80px rgba(108, 99, 255, 0.3);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.popular {
    background: var(--gradient-1);
    border: 2px solid transparent;
    position: relative;
    color: white;
}

.popular * {
    color: white !important;
}

.popular h3 {
    color: white !important;
}

.popular .price-value {
    color: white !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: white !important;
}

.popular .price-currency {
    color: white !important;
}

.popular .features li {
    color: white !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.popular .features {
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    z-index: 10 !important;
    position: relative !important;
}

.popular .features li::before {
    content: '✓' !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    font-weight: bold !important;
    font-size: 14px !important;
}

.popular ul.features {
    z-index: 10;
    position: relative;
}

.popular .price-card-content {
    position: relative;
    z-index: 5;
    background: transparent !important;
}

.popular ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
}

.popular .btn {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid white !important;
}

.popular .btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3) !important;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.price {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-text);
}

.price-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    min-height: 120px;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
}

.features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Enhanced cards */
.benefit-card,
.price-card,
.step-card,
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card::before,
.price-card::before,
.step-card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.benefit-card:hover::before,
.price-card:hover::before,
.step-card:hover::before,
.service-card:hover::before {
    left: 100%;
}

/* Enhanced FAQ */
.faq {
    padding: 100px 0;
    background: var(--light-background);
}

.faq h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced FAQ - дополнительные улучшения */
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleX(1);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    user-select: none;
}

.faq-question:hover {
    background: rgba(108, 99, 255, 0.02);
}

.faq-question:focus {
    background: rgba(108, 99, 255, 0.05);
    box-shadow: inset 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.faq-question:focus:not(:focus-visible) {
    box-shadow: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(108, 99, 255, 0.02);
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: rgba(108, 99, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding: 0 30px 25px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-answer p {
    animation: fadeInUp 0.3s ease 0.1s both;
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
        font-size: 15px;
    }
}

/* Legal Page Styles */
.legal-page {
    padding: 100px 0;
    background: var(--background);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--text-color);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--light-text);
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--light-text);
}

.legal-section strong {
    color: var(--text-color);
}

/* Enhanced responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 50px auto;
        width: 95%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .requisites-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .requisites-info p {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-link {
        font-size: 13px;
    }
}

/* Animations for Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent Flash of Unstyled Content */
/* .benefits, .pricing {
    opacity: 0;
}

.benefits.loaded, .pricing.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
} */

/* Enhanced scrollbar - красивые ползунки */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(108, 99, 255, 0.3);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 99, 255, 0.6);
    background-clip: content-box;
}

/* Для Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(108, 99, 255, 0.3) transparent;
}

/* Альтернативный вариант - полностью скрыть ползунки */
/* 
::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
*/

/* Enhanced selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Enhanced focus visible */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 50px;
    width: 90%;
    max-width: 500px;
    position: relative;
    margin: 100px auto;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Form styles */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: var(--light-text);
    opacity: 0.7;
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced sections */
.how-it-works {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    filter: blur(100px);
    opacity: 0.08;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.1);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Reputation Section */
.reputation {
    padding: 100px 0;
    background: var(--light-background);
    position: relative;
}

.reputation::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    filter: blur(120px);
    opacity: 0.08;
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.reputation h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reputation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reputation-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.3;
}

.reputation-text p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 40px;
}

.reputation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.rep-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.rep-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
}

.rep-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.rep-label {
    font-size: 14px;
    color: var(--light-text);
    font-weight: 500;
}

.reputation-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-decoration: none;
}

.reputation-visual {
    display: flex;
    justify-content: center;
}

.reputation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reputation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(108, 99, 255, 0.2);
}

.forum-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.forum-logo {
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.forum-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.forum-desc {
    font-size: 14px;
    color: var(--light-text);
}

.reputation-score {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-background);
    border-radius: 15px;
}

.score-number {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.score-stars {
    font-size: 20px;
    margin-bottom: 8px;
}

.score-label {
    font-size: 14px;
    color: var(--light-text);
}

.recent-reviews {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    padding: 15px;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.review-text {
    display: block;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.review-author {
    font-size: 12px;
    color: var(--light-text);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    filter: blur(100px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.features h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transform: translateX(10px);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 80px;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-content p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Contact Channels Section */
.contact-channels {
    padding: 100px 0;
    background: var(--light-background);
    position: relative;
}

.contact-channels h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 42px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.1);
    color: var(--text-color);
}

.channel-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.channel-icon.telegram {
    background: var(--gradient-1);
}

.channel-icon.support {
    background: var(--gradient-2);
}

.channel-info {
    flex: 1;
}

.channel-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.channel-info p {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 14px;
}

.channel-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.channel-arrow {
    color: var(--light-text);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.channel-card:hover .channel-arrow {
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-size: 18px;
    padding: 20px 40px;
    margin-top: 30px;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Install button styles */
.install-btn {
    background: var(--gradient-1);
    color: white;
    border: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
    }
}

/* Enhanced footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

/* Enhanced social links */
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
}

/* Enhanced footer main */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.footer-list a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    width: 20px;
    color: white;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.contact-item a:hover {
    color: white;
}

.requisites-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requisites-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
    cursor: none;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link:hover::after {
    transform: scaleX(1);
}