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

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

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

/* Шапка */
.header {
    background: #1f1f1f;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2d2d2d;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0080 0%, #ff8c00 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff0080;
}

/* Главная секция */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-forwho {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

.btn-primary,
a.btn-primary {
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 50%, #ff0080 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.6);
}

/* Секции */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Блок болей */
.pain-section {
    padding: 60px 20px 80px;
    background: #1f1a22;
}

.pain-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pain-item {
    background: #252025;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid #3a2a4a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    font-size: 0.98rem;
    color: #d0c4e8;
}

@media (max-width: 768px) {
    .pain-list {
        grid-template-columns: 1fr;
    }
}

/* Слайдер */
.slider-section {
    padding: 80px 20px;
    background: #1f1f1f;
}

.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    min-width: 100%;
    display: none;
    transition: opacity 0.5s;
}

.slide.active {
    display: block;
}

.slide-card {
    background: #252525;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.slide-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slide-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.slide-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.btn-slide {
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.btn-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.6);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2d2d2d;
    border: 1px solid #3d3d3d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: background 0.3s, border-color 0.3s;
    z-index: 10;
    color: #ffffff;
}

.slider-btn:hover {
    background: #3d3d3d;
    border-color: #ff0080;
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

/* Сетка персонажей */
.characters-section {
    padding: 80px 20px;
    background: #1a1a1a;
}

/* Секция выгод */
.benefits-section {
    padding: 80px 20px;
    background: #191921;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.8rem;
}

.benefit-item {
    background: #23232e;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #31314a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #c0c0d8;
}

/* Демо/визуализация */
.demo-section {
    padding: 80px 20px;
    background: #1f1f28;
}

/* Блок тарифов */
.pricing-section {
    padding: 80px 20px;
    background: #1a1a1a;
}

.pricing-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #252525;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.2);
    border-color: #ff0080;
}

.pricing-card-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}


.pricing-card-popular {
    background: linear-gradient(135deg, #252525 0%, #2a1f2a 100%);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 0, 128, 0.4);
}

.pricing-price {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-popular .pricing-amount {
    background: linear-gradient(135deg, #ff0080 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    display: block;
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.5;
}

.pricing-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-icon-check {
    color: #4ade80;
    stroke-width: 2.5;
}

.pricing-icon-info {
    color: #60a5fa;
}

.pricing-icon-warning {
    color: #f59e0b;
}

.pricing-icon-renewal {
    color: #f59e0b;
}

.pricing-icon-message {
    color: #60a5fa;
}

.pricing-icon-sparkle {
    color: #fbbf24;
}

.pricing-icon-image {
    color: #c084fc;
}

.pricing-icon-users {
    color: #f472b6;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.pricing-btn-trial {
    background: transparent;
    color: #ff0080;
    border: 2px solid #ff0080;
}

.pricing-btn-trial:hover {
    background: rgba(255, 0, 128, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.3);
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 50%, #ff0080 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.6);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
}

.demo-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: stretch;
}

.demo-chat {
    background: radial-gradient(circle at top left, rgba(255,0,128,0.15), transparent 60%), #181820;
    border-radius: 20px;
    border: 1px solid #34344a;
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.demo-chat-header {
    padding: 0.9rem 1.2rem;
    background: linear-gradient(135deg, #ff0080 0%, #764ba2 100%);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.telegram-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ffffff;
}

.demo-chat-body {
    padding: 1.4rem 1.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.demo-message-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 85%;
}

.demo-message-ai-wrapper {
    align-self: flex-start;
}

.demo-message-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 0, 128, 0.3);
}

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

.demo-message {
    max-width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.demo-message-user {
    align-self: flex-end;
    background: #2d2d3a;
    max-width: 80%;
}

.demo-message-ai {
    background: #ff0080;
    background: linear-gradient(135deg, #ff0080 0%, #ff7e5f 100%);
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.demo-step {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.demo-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 100%);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.demo-step p {
    font-size: 0.95rem;
    color: #c8c8da;
}

@media (max-width: 900px) {
    .demo-layout {
        grid-template-columns: 1fr;
    }
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.character-card {
    background: #252525;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    border-color: #ff0080;
}

.character-image {
    width: 100%;
    height: 320px;
    background-color: #2d2d2d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.character-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.character-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.character-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.character-description {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.character-btn,
a.character-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff0080 0%, #ff4757 50%, #ff0080 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
    margin-top: auto;
    text-decoration: none;
    display: block;
    text-align: center;
}

.character-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.6);
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: #1f1f1f;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #252525;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #2d2d2d;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #ffffff;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff0080;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Футер */
.footer {
    background: #151515;
    color: white;
    padding: 3rem 20px;
    text-align: center;
    border-top: 1px solid #2d2d2d;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #ff0080;
}

/* Финальный оффер */
.offer-section {
    padding: 80px 20px;
    background: #181818;
    text-align: center;
}

.offer-subtitle {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #c0c0c0;
    font-size: 1rem;
}

.offer-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-benefit-item {
    background: #242424;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    border: 1px solid #333;
}

.offer-cta {
    margin-bottom: 1rem;
}

.offer-note {
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-btn.prev {
        left: -20px;
    }
    
    .slider-btn.next {
        right: -20px;
    }
    
    .characters-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }
}
