/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.text-line:nth-child(1) { animation-delay: 0.2s; }
.text-line:nth-child(2) { animation-delay: 0.4s; }
.text-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #667eea;
    border-bottom: 2px solid #667eea;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* SCROLLYTELLING SECTIONS */
.scrolly-section {
    position: relative;
    height: 800vh; /* 8x viewport height for much more scrolling space and slower transitions */
}

.scrolly-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.webappz-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0e4b99 100%);
}

.doyoula-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #2d1b69 50%, #11998e 100%);
}

.bots-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #4b0082 50%, #8b008b 100%);
}

.scrolly-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: sticky;
    top: 0;
    align-items: center;
    gap: 60px;
    padding: 0 60px;
    z-index: 1;
}

.scrolly-graphic {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.graphic-content.active {
    opacity: 1;
    transform: scale(1);
}

.scrolly-text {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
}

.text-step {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.text-step.active {
    opacity: 1;
}

.text-step h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-step p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Chapter Intro */
.chapter-intro {
    text-align: center;
}

.chapter-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: #667eea;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.chapter-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chapter-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
}

/* Scroll Visual Elements */
.scroll-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.big-number-display {
    text-align: center;
}

.big-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.big-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
}

.floating-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.screenshot-display {
    position: relative;
}

.scroll-screenshot {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Visual */
.features-visual {
    text-align: center;
}

.features-grid-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-bubble {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.feature-bubble:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* Doyoula specific elements */
.typewriter-display {
    text-align: center;
    max-width: 500px;
}

.statement-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
}

.statement-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.floating-features-scroll {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.feature-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: circleFloat 3s ease-in-out infinite;
}

.feature-circle:nth-child(1) { animation-delay: 0s; }
.feature-circle:nth-child(2) { animation-delay: 0.5s; }
.feature-circle:nth-child(3) { animation-delay: 1s; }
.feature-circle:nth-child(4) { animation-delay: 1.5s; }

@keyframes circleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.features-list-compact {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.ai-tools-visual {
    text-align: center;
}

.ai-tools-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.ai-tool-mini {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ai-tool-mini:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

/* Bots specific elements */
.bot-showcase {
    text-align: center;
}

.bot-avatar-display {
    font-size: 4rem;
    margin-bottom: 15px;
}

.bot-name-display {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.telegram-mockup-mini {
    background: #2b2b2b;
    border-radius: 15px;
    padding: 15px;
    max-width: 250px;
    margin: 0 auto;
}

.message-bubble {
    background: #667eea;
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    border-bottom-left-radius: 5px;
}

.bots-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.bots-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bots-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* New Content Styles */

/* WebAppz specific elements */
.platforms-showcase {
    text-align: center;
}

.platforms-showcase h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.platform-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.success-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
}

.success-item {
    text-align: center;
}

.success-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.success-label {
    font-size: 1rem;
    color: #b0b0b0;
}

/* Doyoula specific elements */
.community-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.community-item {
    text-align: center;
}

.community-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #11998e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.community-label {
    font-size: 1rem;
    color: #b0b0b0;
}

.monetization-showcase {
    text-align: center;
}

.monetization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.monetization-item {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.monetization-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 153, 142, 0.3);
}

/* Bots specific elements */
.bots-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comparison-item.highlight {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.comparison-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comparison-feature {
    font-size: 0.8rem;
    padding: 5px 0;
}

.comparison-feature.positive {
    color: #10B981;
}

.comparison-feature.negative {
    color: #EF4444;
}

.future-bots {
    text-align: center;
}

.future-bots h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.future-bots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.future-bot {
    background: rgba(139, 0, 139, 0.2);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 139, 0.3);
    transition: all 0.3s ease;
}

.future-bot:hover {
    background: rgba(139, 0, 139, 0.3);
    transform: scale(1.05);
}

/* Enhanced Visual Elements */

/* WebAppz testimonials and pricing */
.testimonials-showcase {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.rating-stars {
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pricing-teaser {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    max-width: 350px;
    margin: 0 auto 30px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.5); }
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: #b0b0b0;
    margin-left: 5px;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-feature {
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 500;
}

/* Bots stats */
.bots-stats-showcase {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.bot-stat-item {
    text-align: center;
}

.bot-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b008b 0%, #4b0082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.bot-stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.ai-models-showcase {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-model {
    background: linear-gradient(135deg, #4b0082 0%, #8b008b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 0, 139, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.ai-model:nth-child(1) { animation-delay: 0s; }
.ai-model:nth-child(2) { animation-delay: 0.5s; }
.ai-model:nth-child(3) { animation-delay: 1s; }
.ai-model:nth-child(4) { animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Doyoula enhanced elements */
.success-stories {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.story-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.story-item:hover {
    background: rgba(17, 153, 142, 0.1);
    transform: translateX(5px);
}

.story-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.story-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.trending-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.trending-tag {
    background: linear-gradient(135deg, #11998e 0%, #2d1b69 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    animation: wave 3s ease-in-out infinite;
}

.trending-tag:nth-child(1) { animation-delay: 0s; }
.trending-tag:nth-child(2) { animation-delay: 1s; }
.trending-tag:nth-child(3) { animation-delay: 2s; }

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    33% { transform: translateY(-3px); }
    66% { transform: translateY(3px); }
}

.free-trial {
    text-align: center;
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.2), rgba(45, 27, 105, 0.2));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(17, 153, 142, 0.4);
    max-width: 350px;
    margin: 0 auto 30px;
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { box-shadow: 0 0 20px rgba(17, 153, 142, 0.3); }
    50% { box-shadow: 0 0 40px rgba(17, 153, 142, 0.6); }
}

.trial-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.trial-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trial-feature {
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 500;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-text p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    margin-bottom: 0;
}

.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
    padding: 0 60px;
}

.contact-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-text p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 50;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-icon {
    font-size: 1.2rem;
}

.telegram-icon {
    color: #0088cc;
    filter: drop-shadow(0 0 3px rgba(0, 136, 204, 0.5));
    transition: all 0.3s ease;
}

.telegram-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(0, 136, 204, 0.8));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Footer */
.footer {
    background: #000000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 100;
    min-height: 120px;
}

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

.footer-logo {
    margin-bottom: 15px;
}

.footer-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scrolly-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .scrolly-section {
        height: 600vh;
    }
    
    .text-step h3 {
        font-size: 2rem;
    }
    
    .big-number {
        font-size: 4rem;
    }
    
    .floating-logo {
        max-width: 200px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-stats,
    .community-stats {
        gap: 20px;
    }
    
    .bots-comparison {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .scrolly-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .scrolly-section {
        height: 500vh;
    }
    
    .chapter-title {
        font-size: 2.5rem;
    }
    
    .text-step h3 {
        font-size: 1.8rem;
    }
    
    .text-step p {
        font-size: 1rem;
    }
    
    .big-number {
        font-size: 3rem;
    }
    
    .big-label {
        font-size: 1.2rem;
    }
    
    .floating-logo {
        max-width: 150px;
    }
    
    .scroll-screenshot {
        max-width: 250px;
    }
    
    .features-grid-scroll {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .floating-features-scroll {
        gap: 10px;
    }
    
    .feature-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .ai-tools-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .ai-tool-mini {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .bots-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .bots-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .stats {
        justify-content: center;
        gap: 20px;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .scrolly-section {
        height: 200vh;
    }
    
    .chapter-title {
        font-size: 2rem;
    }
    
    .text-step h3 {
        font-size: 1.5rem;
    }
    
    .big-number {
        font-size: 2.5rem;
    }
    
    .floating-logo {
        max-width: 120px;
    }
    
    .scroll-screenshot {
        max-width: 200px;
    }
    
    .statement-text {
        font-size: 1.5rem;
    }
    
    .bot-avatar-display {
        font-size: 3rem;
    }
    
    .bot-name-display {
        font-size: 1.5rem;
    }
    
    .telegram-mockup-mini {
        max-width: 200px;
    }
}