* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

#telegram-widget{
    display: flex;
    justify-content: center;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0068ff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0068ff;
}

.nav-link:hover::after {
    width: 100%;
}

/* Кнопки */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #0068ff;
    color: white;
    border: 2px solid #0068ff;
}

.btn-primary:hover {
    background: #0052cc;
    border-color: #0052cc;
}

.btn-secondary {
    background: transparent;
    color: #0068ff;
    border: 2px solid #0068ff;
}

.btn-secondary:hover {
    background: #0068ff;
    color: white;
}

/* Hero секция */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-preview {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.9;
}

/* Секция функций */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 104, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: start;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0068ff, #ff6b6b, #feca57);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: #0068ff;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.btn-cta {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    background: #0068ff;
    border: 2px solid #0068ff;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 104, 255, 0.3);
}

.btn-cta:hover {
    background: transparent;
    box-shadow: 0 0 30px rgba(0, 104, 255, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

.control-center {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-screen {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.screen-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0068ff, transparent, #0068ff);
    border-radius: 12px;
    opacity: 0.3;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.screen-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.data-stream {
    height: 4px;
    background: linear-gradient(90deg, transparent, #0068ff, transparent);
    border-radius: 2px;
    animation: stream 2s linear infinite;
}

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

.control-elements {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.control-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Тарифы */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 104, 255, 0.15);
    border-color: #0068ff;
}

.pricing-card.popular {
    border: 2px solid #0068ff;
    box-shadow: 0 8px 30px rgba(0, 104, 255, 0.2);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, #0068ff, #00b4ff);
}

.pricing-card.free {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-header {
    margin-bottom: 20px;
    position: relative;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0068ff, #00b4ff);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.free .pricing-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.pricing-price {
    margin-bottom: 20px;
}

.price-value {
    font-size: 42px;
    font-weight: 700;
    color: #0068ff;
    display: block;
}

.pricing-card.free .price-value {
    color: #28a745;
}

.pricing-tokens {
    margin-bottom: 30px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
}

.pricing-tokens strong {
    display: block;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.token-price {
    font-size: 14px;
    color: #666;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.pricing-feature svg {
    flex-shrink: 0;
    color: #0068ff;
}

.pricing-card.free .pricing-feature svg {
    color: #28a745;
}

.pricing-feature span {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Футер */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 104, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 104, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0068ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Информация о пользователе */
.user-info {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 35px 30px;
    margin: 30px auto;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 104, 255, 0.1);
}

.user-info.active {
    display: block;
    animation: userInfoSlideIn 0.5s ease-out;
}

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

.user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid #0068ff;
    position: relative;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #666;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.user-username {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.user-role {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.role-user {
    background: #e3f2fd;
    color: #0068ff;
    border: 1px solid #0068ff;
}

.role-admin {
    background: #ffebee;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

.user-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-actions .btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.user-actions .btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.user-actions .btn-primary {
    background: #0068ff;
    color: white;
    border: 1px solid #0068ff;
}

.user-actions .btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 104, 255, 0.3);
}

.user-actions .btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.user-actions .btn-secondary:hover {
    background: #e0e0e0;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    color: #999;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #666;
}

.modal-body {
    padding: 30px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-container {
        gap: 10px;
    }

    .nav-logo span {
        font-size: 18px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .section-title {
        margin-bottom: 50px;
        font-size: 28px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-links {
        justify-content: center;
        gap: 20px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .pricing-card {
        padding: 30px 24px;
    }

    .section-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    .user-info {
        margin: 20px 15px;
        padding: 30px 25px;
        max-width: 380px;
    }

    .user-avatar {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .user-name {
        font-size: 20px;
    }

    .user-actions .btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}
.pain {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.pain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.pain-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    line-height: 1.2;
}

.pain-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.pain-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 104, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.pain-card:hover::before {
    left: 100%;
}

.pain-card:hover {
    border-color: #0068ff;
    box-shadow: 0 0 30px rgba(0, 104, 255, 0.2);
    transform: translateY(-5px);
}

.pain-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon svg {
    width: 48px;
    height: 48px;
    color: #ffffff;
    opacity: 0.8;
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1a1a1a;
}

/* Решение (Платформа одного окна) */
.solution {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.solution-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
    line-height: 1.2;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.solution-feature {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 64px;
    height: 64px;
    color: #0068ff;
}

.solution-feature h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #ffffff;
}

.solution-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Мета-игра */
.meta-game {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 104, 255, 0.1) 0%, rgba(0, 104, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.meta-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,104,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.meta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.meta-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #ffffff;
}

.meta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* О команде */
.team {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.team-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
    line-height: 1.2;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #0068ff;
    box-shadow: 0 0 30px rgba(0, 104, 255, 0.2);
    transform: translateY(-5px);
}

.member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.member-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #0068ff, transparent, #0068ff);
    border-radius: 50%;
    opacity: 0.3;
    animation: memberGlow 4s ease-in-out infinite alternate;
}

@keyframes memberGlow {
    0% { opacity: 0.2; transform: scale(0.9); }
    100% { opacity: 0.4; transform: scale(1.1); }
}

.team-member h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #ffffff;
}

.member-role {
    font-size: 16px;
    color: #0068ff;
    font-weight: 500;
    margin-bottom: 16px;
}

.member-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* История */
.story {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.2;
}

.story-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.story-quote {
    font-size: 24px;
    font-style: italic;
    color: #0068ff;
    line-height: 1.4;
    position: relative;
    padding: 20px 40px;
}

.story-quote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: 0;
    top: -10px;
    color: rgba(0, 104, 255, 0.3);
    font-family: serif;
}

.story-quote::after {
    content: '"';
    font-size: 60px;
    position: absolute;
    right: 0;
    bottom: -30px;
    color: rgba(0, 104, 255, 0.3);
    font-family: serif;
}

/* Финальный CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 104, 255, 0.1) 0%, rgba(0, 104, 255, 0.2) 100%);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 104, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.2;
}

.cta-content button {
    margin-bottom: 20px;
}

.cta-deadline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
}

/* Футер */
.footer {
    padding: 60px 0 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0068ff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    animation: modalFadeIn 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 104, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
}

.modal-close {
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #0068ff;
    background: rgba(0, 104, 255, 0.1);
}

.modal-body {
    padding: 40px;
    position: relative;
    z-index: 1;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 280px;
        height: 280px;
        margin: 60px auto 0;
    }

    .control-screen {
        width: 250px;
        height: 160px;
    }

    .pain-title,
    .solution-title,
    .team-title,
    .story-content h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .pain-cards,
    .solution-features,
    .team-grid {
        flex-direction: column;
        gap: 30px;
    }

    .pain-card,
    .solution-feature,
    .team-member {
        padding: 30px 20px;
    }

    .meta-content h2 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header {
        padding: 25px 30px 15px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-body {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .pain-title,
    .solution-title,
    .team-title,
    .story-content h2,
    .cta-content h2 {
        font-size: 24px;
    }

    .pain-card,
    .solution-feature,
    .team-member {
        padding: 25px 15px;
    }

    .meta-content h2 {
        font-size: 28px;
    }

    .meta-description {
        font-size: 16px;
    }

    .story-text {
        font-size: 16px;
    }

    .story-quote {
        font-size: 18px;
        padding: 15px 20px;
    }

    .modal-content {
        width: 98%;
        margin: 5% auto;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 25px 20px;
    }
}

/* Общие стили */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 20px;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Hero секция */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}


.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.hero-image {
    text-align: center;
}

.hero-placeholder {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px dashed #e0e0e0;
}

.hero-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon svg {
    width: 64px;
    height: 64px;
    color: #0068ff;
}

.hero-placeholder p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Преимущества */
.features {
    padding: 80px 0;
    background: white;
}


.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: #0068ff;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Продукт */
.product {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-content {
    display: flex;
    gap: 60px;
    align-items: start;
}

.product-description {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.product-description p {
    margin-bottom: 20px;
}

.product-description strong {
    color: #0068ff;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon-small {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-small svg {
    width: 24px;
    height: 24px;
    color: #0068ff;
}

.product-feature span {
    color: #333;
    line-height: 1.5;
}

/* Команда */
.team {
    padding: 80px 0;
    background: white;
}


.team-member {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.member-avatar {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
}

.member-avatar svg {
    width: 32px;
    height: 32px;
    color: #666;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.member-role {
    font-size: 16px;
    color: #0068ff;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Как это работает */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0068ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Статистика */
.stats {
    padding: 60px 0;
    background: #0068ff;
    color: white;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    justify-content: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Призыв к действию */
.cta {
    padding: 80px 0;
    background: #0068ff;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: white;
}

.cta-feature svg {
    flex-shrink: 0;
}

.cta-note {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    font-style: italic;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 18px;
    background: white;
    color: #0068ff;
    border: 2px solid white;
}

.btn-xl:hover {
    background: transparent;
    color: white;
}

/* Футер */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 28px;
    width: auto;
}



.footer-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0068ff;
}

.footer-section p {
    color: #888;
    font-size: 12px;
    margin-top: 8px;
}

.footer-cta {
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Кнопки */
.btn-primary {
    background: #0068ff;
    border: none;
    color: white;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 104, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #0068ff;
    color: #0068ff;
    font-size: 16px;
    padding: 13px 38px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0068ff;
    color: white;
    transform: translateY(-2px);
}

/* Модальное окно */
.modal {
    
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 450px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 300;
}

.modal-close {
    color: #999;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #666;
}

.modal-body {
    padding: 30px;
}

/* Сообщения об ошибках и предупреждениях */
.error {
    display: none;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 1px solid #f44336;
    border-left: 4px solid #d32f2f;
    color: #c62828;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: errorSlideIn 0.3s ease-out;
}

.error::before {
    content: '⚠️ ';
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning {
    display: none;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 1px solid #ffc107;
    border-left: 4px solid #ff9800;
    color: #e65100;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: warningSlideIn 0.3s ease-out;
}

.warning::before {
    content: '💡 ';
}

@keyframes warningSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Успешное сообщение */
.success {
    display: none;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #4caf50;
    border-left: 4px solid #2e7d32;
    color: #1b5e20;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    animation: successSlideIn 0.3s ease-out;
}

.success::before {
    content: '✅ ';
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для модального окна авторизации с вкладками */
.auth-modal .modal-body {
    padding: 0;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    color: #0068ff;
    border-bottom-color: #0068ff;
}

.auth-tab:hover {
    color: #0068ff;
    background: rgba(0, 104, 255, 0.05);
}

.auth-content {
    display: none;
    padding: 0;
}

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

.auth-section {
    margin-bottom: 30px;
}

.auth-section h3 {
    margin-bottom: 0;
    color: #333;
    font-size: 20px;
    text-align: center;
}

.auth-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #0068ff;
    box-shadow: 0 0 0 2px rgba(0, 104, 255, 0.1);
}

.auth-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 8px;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.auth-switch p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.auth-switch a {
    color: #0068ff;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}


