/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: #240a0a;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
}

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

/* Buttons */
.btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 77, 0.3);
}

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

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

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(36, 10, 10, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav {
    display: flex;
    gap: 30px;
}

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

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

.nav-ai {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #240a0a;
    transition: color 0.3s ease;
}

.nav-ai:hover {
    color: #ff004d !important;
}

.ai-badge {
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.highlight {
    color: #ff004d;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff004d, transparent);
}

.ai-highlight {
    background: rgba(255, 0, 77, 0.1);
    color: #ff004d;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-block;
    margin: 0 2px;
    border: 1px solid rgba(255, 0, 77, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'JetBrains Mono', 'Poppins', monospace;
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff004d;
    letter-spacing: -0.02em;
}

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

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

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phone-content {
    position: absolute;
    top: 12%;
    left: 15%;
    width: 71%;
    height: 75%;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-preview {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bot-messages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Изначально скрываем все сообщения чата до загрузки JavaScript */
.message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: fadeInUp 0.5s ease;
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 0.6s ease;
}

/* Дополнительное скрытие для каталога ботов */
.bots-grid .bot-messages .message {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

.message.incoming {
    justify-content: flex-start;
}

.message.outgoing {
    justify-content: flex-end;
}

.message .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff004d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.message .text {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 70%;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.message.outgoing .text {
    background: #ff004d;
    color: white;
}

/* Floating Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.1;
    animation: floating 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 40%; right: 30%; animation-delay: 1s; }

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #240a0a;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.comparison-item {
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}

.comparison-item.bad {
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    border: 2px solid #ffebeb;
}

.comparison-item.bad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.1),
        rgba(255, 0, 77, 0.02) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.comparison-item.bad.spotlight-active::before {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.comparison-item.bad.spotlight-active {
    border-color: #ff6b6b;
    transition: all 0.2s ease;
}

.comparison-item.good {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border: 2px solid #c6f6d5;
}

.comparison-item.good::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(16, 185, 129, 0.15),
        rgba(16, 185, 129, 0.03) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.comparison-item.good.spotlight-active::before {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.comparison-item.good.spotlight-active {
    border-color: #10b981;
    transition: all 0.2s ease;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.comparison-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.negative {
    background: #ff004d;
    color: white;
}

.badge.positive {
    background: #10b981;
    color: white;
}

.comparison-item ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.comparison-item li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    z-index: 2;
}

.comparison-item.bad li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.comparison-item.good li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.vs-note {
    text-align: center;
    background: #ff004d;
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.vs-note p {
    font-size: 1.1rem;
    margin: 0;
}

/* Auto Install Note */
.auto-install-note {
    text-align: center;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 2px solid #10b981;
    color: #1a365d;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.auto-install-note p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.auto-install-note strong {
    color: #065f46;
}

/* AI Generation Section */
.ai-generation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.ai-generation::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="%23ff004d" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.ai-demo {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 0, 77, 0.1);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ai-input-demo {
    text-align: center;
    margin-bottom: 40px;
}

.demo-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 20px;
}

.typing-container {
    margin-bottom: 30px;
}

.typing-field {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 25px;
    font-size: 1.1rem;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.typing-field.active {
    border-color: #ff004d;
    box-shadow: 0 0 0 3px rgba(255, 0, 77, 0.1);
}

.typing-text {
    color: #240a0a;
    line-height: 1.6;
    flex: 1;
}

.cursor {
    color: #ff004d;
    font-weight: bold;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.ai-generate-btn {
    font-size: 1.2rem;
    padding: 18px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-generate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Pulse Button Effect */
.pulse-button {
    position: relative;
    animation: pulse-attention 2s infinite;
}

.pulse-button::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff004d, #ff3366);
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff004d, #ff3366);
    opacity: 0;
    z-index: -2;
    animation: pulse-ring 2s infinite 0.3s;
}

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

@keyframes pulse-ring {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Blinking Finger Animation */
.blinking-finger {
    display: inline-block;
    animation: blink-finger 1s infinite;
    min-width: 1.2em;
    text-align: center;
}

@keyframes blink-finger {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-progress {
    text-align: center;
}

.progress-header {
    margin-bottom: 40px;
}

.progress-header h3 {
    font-size: 1.8rem;
    color: #240a0a;
    margin-bottom: 20px;
}

.progress-bar {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.progress-fill {
    background: linear-gradient(90deg, #ff004d, #ff3366);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 4px;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.5s ease;
    opacity: 0.5;
}

.progress-step.active {
    opacity: 1;
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    border: 1px solid #ff004d;
    transform: scale(1.02);
}

.progress-step.completed {
    opacity: 1;
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border: 1px solid #10b981;
}

.step-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.step-info {
    flex: 1;
    text-align: left;
}

.step-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 5px;
}

.step-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.step-status {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.ai-result {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ai-result.show {
    opacity: 1;
    transform: translateY(0);
}

.result-card {
    background: linear-gradient(135deg, #f0fff4, #e6fffa);
    border: 2px solid #10b981;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    animation: pulseSuccess 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.result-card h3 {
    font-size: 2rem;
    color: #240a0a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.result-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.ai-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.ai-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Legacy support for old .ai-features class */
.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 77, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(
        650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.12),
        rgba(255, 0, 77, 0.03) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: radial-gradient(
        450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.4),
        rgba(255, 0, 77, 0.08) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

.feature-card.spotlight-active::before {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.feature-card.spotlight-active::after {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 77, 0.2);
}

.feature-card.spotlight-active {
    border-color: rgba(255, 0, 77, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Highlight Feature Cards - Уникальные преимущества */
.feature-card.highlight-card {
    background: linear-gradient(135deg, #fff8f0, #fff0e6);
    border: 2px solid #ff9a3c;
    position: relative;
}

.feature-card.highlight-card::before {
    background: radial-gradient(
        650px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 154, 60, 0.15),
        rgba(255, 154, 60, 0.05) 40%,
        transparent 70%
    );
}

.feature-card.highlight-card::after {
    background: radial-gradient(
        450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 154, 60, 0.5),
        rgba(255, 154, 60, 0.12) 30%,
        transparent 60%
    );
}

.feature-card.highlight-card:hover {
    box-shadow: 0 8px 30px rgba(255, 154, 60, 0.25);
}

.feature-card.highlight-card.spotlight-active {
    border-color: rgba(255, 154, 60, 0.4);
}

.feature-card.highlight-card h3 {
    color: #d97706;
}

/* AI Bonus Info */
.ai-bonus-info {
    margin-top: 40px;
    text-align: center;
}

.bonus-card {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border: 2px solid #4a90e2;
    border-radius: 15px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bonus-text {
    color: #2c5282;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}

.bonus-text strong {
    color: #1a365d;
}

/* AI Website Generation Section */
.ai-website-generation {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f8 0%, #f8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.ai-website-generation::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="webgrid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%23ff004d" stroke-width="0.3" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23webgrid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.website-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.website-examples {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.website-examples h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 30px;
}

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

.example-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 15px rgba(255, 0, 77, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 77, 0.15);
}

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

.example-item span {
    font-weight: 500;
    color: #240a0a;
}

.website-cta {
    position: relative;
    z-index: 1;
    text-align: center;
}

.website-cta .cta-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.website-cta .cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.website-cta .cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.website-cta .cta-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.website-cta .cta-card .btn {
    position: relative;
    z-index: 2;
    background: white;
    color: #6366f1;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.website-cta .cta-card .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Catalog Section */
.catalog {
    padding: 80px 0;
    background: #fafafa;
}

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

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #240a0a;
    letter-spacing: -0.01em;
}

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

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

.bot-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 77, 0.2);
}

.bot-image {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

/* Phone Container like in autoinstall */
.bot-phone-container {
    position: relative;
    display: inline-block;
    max-width: 200px;
    margin: 0 auto;
}

.bot-phone-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.bot-phone-screen {
    position: absolute;
    top: 12%;
    left: 15%;
    width: 71%;
    height: 75%;
    z-index: 1;
    display: flex;
    align-items: stretch;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    justify-content: center;
}

.bot-phone-screen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Legacy support for old structure */
.bot-phone {
    width: 120px;
    height: 240px;
    margin: 0 auto;
    position: relative;
}

.bot-screen {
    position: absolute;
    top: 12%;
    left: 15%;
    width: 71%;
    height: 75%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: transparent;
}

.bot-screen img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.bot-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #240a0a;
    letter-spacing: -0.005em;
}

.bot-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.catalog-footer p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* CTA Card Styles */
.cta-card {
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.cta-content {
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.cta-card .bot-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-card .bot-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-card .btn-primary {
    background: white;
    color: #ff004d;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-card .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

/* Magic Timer Section */
.magic-timer {
    padding: 60px 0 0px;
    background: linear-gradient(135deg, #240a0a, #3d1a1a);
    color: white;
    text-align: center;
    transition: padding 0.6s ease;
}

.magic-timer.timer-running {
    padding: 60px 0 0px;
}

.magic-timer.timer-completed {
    padding: 60px 0 80px;
}

.magic-timer h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.6s ease-in-out;
    min-height: 3rem;
    letter-spacing: -0.01em;
}

.magic-timer h2.changing {
    opacity: 0;
    transform: translateY(-10px);
}

.magic-timer > .container > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.timer-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.timer-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.timer-text span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #ff004d;
    letter-spacing: -0.02em;
}

.timer-text small {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
    background: rgba(255, 0, 77, 0.2);
    transform: scale(1.05);
}

.step-icon {
    font-size: 1.5rem;
}

.timer-result {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin-bottom: 30px;
}

.timer-result.show {
    opacity: 1;
    transform: translateY(0);
}

.result-text {
    background: rgba(16, 185, 129, 0.15);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #10b981;
    animation: pulseSuccess 2s ease-in-out infinite;
}

@keyframes pulseSuccess {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

.result-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.auto-start-info {
    margin-top: 30px;
    transition: all 0.3s ease;
}

.auto-start-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #240a0a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 15px;
    background: #fafafa;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(36, 10, 10, 0.1);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(
        700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.12),
        rgba(255, 0, 77, 0.03) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.5),
        rgba(255, 0, 77, 0.1) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 0;
    filter: blur(10px);
}

.advantage-card.spotlight-active::before {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.advantage-card.spotlight-active::after {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 77, 0.2);
}

.advantage-card.spotlight-active {
    border-color: rgba(255, 0, 77, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #240a0a;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* How it works */
.how-it-works {
    padding: 80px 0;
    background: #fafafa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #240a0a;
}

.how-it-works-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.work-methods {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.method-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 77, 0.1);
}

.method-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(
        700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.1),
        rgba(255, 0, 77, 0.02) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.method-section.spotlight-active::before {
    opacity: 1;
    transition: opacity 0.2s ease, background 0.1s ease;
}

.method-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 77, 0.2);
}

.method-section.spotlight-active {
    border-color: rgba(255, 0, 77, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease;
}

.method-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.method-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.method-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.mini-step:hover {
    background: #e9ecef;
}

.mini-number {
    width: 28px;
    height: 28px;
    background: #ff004d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mini-text {
    color: #240a0a;
    font-size: 0.95rem;
    font-weight: 500;
}

.method-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.divider-text {
    background: #ff004d;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 77, 0.3);
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.technologies h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.technologies-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.infinite-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.infinite-slider-wrapper::before,
.infinite-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fafafa, transparent);
}

.infinite-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

.infinite-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 40px;
    width: fit-content;
}

@keyframes infiniteSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    flex-shrink: 0;
    width: 160px;
    min-width: 160px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-logo {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 8px;
}

.tech-name {
    font-size: 13px;
    font-weight: 600;
    color: #240a0a;
    text-align: center;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 77, 0.08),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-logo img,
.tech-logo svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-logo img,
.tech-item:hover .tech-logo svg {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.tech-item:hover .tech-name {
    color: #ff004d;
}

/* Адаптивность для технологий - Планшеты */
@media (max-width: 1024px) {
    .technologies h2 {
        font-size: 2rem;
    }
    
    .technologies-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .slider-track {
        gap: 30px;
    }
    
    .tech-item {
        width: 140px;
        min-width: 140px;
        height: 110px;
    }
    
    .tech-logo {
        height: 60px;
    }
}

/* Адаптивность для AI Features - Планшеты */
@media (max-width: 900px) {
    .ai-features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Адаптивность для технологий - Мобильные устройства */
@media (max-width: 768px) {
    .technologies {
        padding: 60px 0;
    }
    
    .technologies h2 {
        font-size: 1.75rem;
        margin-bottom: 10px;
        padding: 0 20px;
    }
    
    .technologies-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .infinite-slider-wrapper::before,
    .infinite-slider-wrapper::after {
        width: 50px;
    }
    
    .slider-track {
        gap: 20px;
    }
    
    .tech-item {
        width: 120px;
        min-width: 120px;
        height: 100px;
        padding: 10px;
        gap: 6px;
    }
    
    .tech-logo {
        height: 55px;
        padding: 5px;
    }
    
    .tech-name {
        font-size: 11px;
    }
    
    /* На мобильных убираем hover эффект spotlight */
    .tech-item::before {
        display: none;
    }
}

/* Адаптивность для технологий - Маленькие мобильные */
@media (max-width: 480px) {
    .technologies {
        padding: 50px 0;
    }
    
    .technologies h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .technologies-subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
    }
    
    .infinite-slider-wrapper::before,
    .infinite-slider-wrapper::after {
        width: 30px;
    }
    
    .slider-track {
        gap: 15px;
    }
    
    .tech-item {
        width: 100px;
        min-width: 100px;
        height: 90px;
        padding: 8px;
        gap: 5px;
        border-radius: 10px;
    }
    
    .tech-logo {
        height: 50px;
        padding: 4px;
    }
    
    .tech-name {
        font-size: 10px;
        font-weight: 500;
    }
    
    .tech-logo img,
    .tech-logo svg {
        filter: grayscale(100%) opacity(0.7);
    }
    
    /* На маленьких экранах делаем логотипы чуть заметнее по умолчанию */
    .tech-item:hover .tech-logo img,
    .tech-item:hover .tech-logo svg {
        transform: scale(1.05);
    }
}

/* Адаптивность для технологий - Очень маленькие экраны */
@media (max-width: 360px) {
    .technologies h2 {
        font-size: 1.3rem;
    }
    
    .technologies-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }
    
    .tech-item {
        width: 90px;
        min-width: 90px;
        height: 85px;
        padding: 6px;
    }
    
    .tech-logo {
        height: 45px;
    }
    
    .tech-name {
        font-size: 9px;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #ff004d;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
}

/* Modal for Bot Screenshots */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 1200px;
    width: 90vw;
    max-height: 95vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.modal-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 40px);
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-image-section {
    padding: 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.modal-screenshot {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.modal-description {
    margin-top: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modal-action {
    margin-top: 25px;
}

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

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #240a0a;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-nav {
    display: none;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff004d;
}

.footer p {
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Общие настройки */
    .container {
        padding: 0 15px;
    }
    
    /* Technologies Section Mobile */
    .technologies {
        padding: 60px 0;
    }
    
    .technologies h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .technologies-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .infinite-slider-wrapper::before,
    .infinite-slider-wrapper::after {
        width: 50px;
    }
    
    .slider-track {
        gap: 30px;
        animation-duration: 20s;
    }
    
    .tech-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    /* Header */
    .header-content {
        padding: 12px 0;
    }
    
    .logo img {
        height: 28px;
    }
    
    .nav {
        display: none;
    }
    
    /* Мобильная версия AI кнопки в шапке */
    .nav-ai {
        padding: 6px 10px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .ai-badge {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        gap: 15px;
        justify-content: center;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .btn.large {
        padding: 16px 24px;
        font-size: 17px;
    }
    
    /* Phone Mockup */
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .phone-content {
        padding: 10px;
        display: flex;
        align-items: center;
    }
    
    .bot-preview {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .bot-messages {
        gap: 10px;
        width: 100%;
    }
    
    .message .text {
        font-size: 11px;
        padding: 8px 12px;
        max-width: 80%;
        line-height: 1.3;
    }
    
    .message .avatar {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    /* Sections */
    .why-choose,
    .ai-generation,
    .catalog,
    .advantages,
    .how-it-works,
    .cta {
        padding: 60px 0;
    }
    
    /* AI Generation Mobile */
    .ai-demo {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .demo-label {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .typing-field {
        padding: 15px 20px;
        min-height: 100px;
        font-size: 1rem;
    }
    
    .ai-generate-btn {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .progress-header h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .progress-steps {
        gap: 15px;
    }
    
    .progress-step {
        padding: 15px;
        gap: 15px;
    }
    
    .step-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .step-info h4 {
        font-size: 1.1rem;
    }
    
    .step-info p {
        font-size: 0.9rem;
    }
    
    .result-card {
        padding: 30px 20px;
    }
    
    .result-card h3 {
        font-size: 1.7rem;
    }
    
    .result-card p {
        font-size: 1rem;
    }
    
    .result-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-features-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    /* AI Bonus Info Mobile */
    .ai-bonus-info {
        margin-top: 30px;
    }
    
    .bonus-card {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        text-align: center;
    }
    
    .bonus-icon {
        font-size: 2rem;
    }
    
    .bonus-text {
        font-size: 1rem;
        text-align: center;
    }
    
    /* AI Website Generation Mobile */
    .ai-website-generation {
        padding: 60px 0;
    }
    
    .website-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .example-item {
        padding: 15px;
        gap: 12px;
    }
    
    .example-icon {
        font-size: 1.5rem;
    }
    
    .website-cta .cta-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .website-cta .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .magic-timer {
        padding: 50px 0 0px;
    }
    
    .magic-timer.timer-completed {
        padding: 50px 0 60px;
    }
    
    /* Typography */
    .why-choose h2,
    .catalog .section-header h2,
    .advantages h2,
    .how-it-works h2,
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .magic-timer h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    /* Grids */
    .comparison {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Cards */
    .comparison-item,
    .bot-card,
    .advantage-card {
        padding: 25px 20px;
    }
    
    .comparison-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comparison-header h3 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .badge {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .bot-phone-container {
        max-width: 150px;
    }
    
    /* Timer */
    .timer-demo {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 20px;
    }
    
    .timer-circle {
        width: 160px;
        height: 160px;
    }
    
    .timer-text span {
        font-size: 2.5rem;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .step {
        padding: 12px 20px;
    }
    
    /* How it works Mobile */
    .how-it-works-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .work-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .method-section {
        padding: 25px 20px;
    }
    
    .method-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .method-header h3 {
        font-size: 1.3rem;
    }
    
    .method-subtitle {
        font-size: 0.95rem;
    }
    
    .method-steps {
        gap: 12px;
    }
    
    .mini-step {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .mini-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .mini-text {
        font-size: 0.9rem;
    }
    
    .method-divider {
        padding: 15px 0;
    }
    
    .divider-text {
        padding: 8px 16px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-nav {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Дополнительные стили для маленьких экранов */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .phone-content {
        padding: 8px;
    }
    
    .bot-messages {
        gap: 8px;
    }
    
    .message .text {
        font-size: 10px;
        padding: 6px 10px;
        max-width: 75%;
        line-height: 1.2;
    }
    
    .message .avatar {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .timer-circle {
        width: 140px;
        height: 140px;
    }
    
    .timer-text span {
        font-size: 2rem;
    }
    
    .magic-timer h2,
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    /* Modal styles for mobile */
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
        margin: 15px;
        width: calc(100vw - 30px);
    }
    
    .modal-header {
        padding: 12px 15px;
        flex-shrink: 0;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 0;
        flex-direction: column;
        overflow-y: auto;
        max-height: calc(85vh - 60px);
    }
    
    .modal-image-section {
        padding: 15px;
        background: #f8f9fa;
        flex-shrink: 0;
    }
    
    .modal-content-section {
        padding: 15px;
        flex-shrink: 0;
    }
    
    .modal-screenshot {
        max-height: 40vh;
        max-width: 100%;
    }
    
    .modal-description {
        text-align: center;
        margin-bottom: 15px;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .modal-action .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Еще более компактные стили для маленьких экранов */
@media (max-width: 480px) {
    .modal-content {
        max-height: 80vh;
        margin: 10px;
        width: calc(100vw - 20px);
    }
    
    .modal-header {
        padding: 10px 12px;
    }
    
    .modal-header h3 {
        font-size: 0.95rem;
    }
    
    .modal-body {
        max-height: calc(80vh - 50px);
    }
    
    .modal-image-section {
        padding: 12px;
    }
    
    .modal-content-section {
        padding: 12px;
    }
    
    .modal-screenshot {
        max-height: 35vh;
    }
    
    .modal-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .modal-action .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Стили для больших экранов (десктопы) */
@media (min-width: 1024px) {
    .modal-content {
        width: 900px;
        max-width: 90vw;
        max-height: 700px;
    }
    
    .modal-body {
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: stretch;
        text-align: left;
        overflow: hidden;
    }
    
    .modal-image-section {
        flex: 1;
        padding: 30px 20px 30px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
    }
    
    .modal-content-section {
        flex: 1;
        padding: 30px 30px 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-y: auto;
    }
    
    .modal-screenshot {
        max-height: 500px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .modal-description {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .modal-action {
        margin-top: auto;
    }
}

/* Cost Comparison Section */
.cost-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

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

.cost-comparison h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 16px;
}

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

.comparison-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.timeline-side {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-side.freelancer {
    border-left: 4px solid #ff6b6b;
}

.timeline-side.botmix {
    border-left: 4px solid #4ecdc4;
}

.timeline-header {
    margin-bottom: 32px;
}

.timeline-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 16px;
}

.timeline-total {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.total-time, .total-cost {
    font-size: 1rem;
    color: #666;
}

.total-time span, .total-cost span {
    font-weight: 700;
    color: #240a0a;
}

.timeline-side.freelancer .total-time span {
    color: #ff6b6b;
}

.timeline-side.botmix .total-time span {
    color: #4ecdc4;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.timeline-step.instant {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
}

.timeline-step.instant:hover {
    background: linear-gradient(135deg, #d8f5d8, #e8f8e8);
}

.step-duration {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    min-width: 80px;
    text-align: center;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.timeline-step.instant .step-duration {
    color: #4ecdc4;
    border-color: #4ecdc4;
    background: #f0fffe;
}

.step-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 8px;
}

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

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-text {
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    padding: 16px 24px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 0, 77, 0.3);
    z-index: 2;
}



.botmix-benefits {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f0fffe, #e8f5f5);
    border-radius: 12px;
    border: 1px solid #4ecdc4;
}

.botmix-benefits h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 16px;
}

.botmix-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.botmix-benefits li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.comparison-conclusion {
    display: flex;
    justify-content: center;
}

.conclusion-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    border: 2px solid #4ecdc4;
}

.conclusion-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 24px;
}

.conclusion-stats {
    margin-bottom: 24px;
}

.stat-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4ecdc4;
}

.conclusion-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Mobile Responsive for Cost Comparison */
@media (max-width: 768px) {
    .cost-comparison {
        padding: 60px 0;
    }
    
    .cost-comparison h2 {
        font-size: 2rem;
    }
    
    .comparison-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .vs-divider {
        margin: 20px 0;
    }
    
    
    
    .timeline-side {
        padding: 24px;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-duration {
        min-width: auto;
        text-align: left;
        align-self: flex-start;
    }
    
    .stat-comparison {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .conclusion-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .cost-comparison .section-header p {
        font-size: 1rem;
    }
    
    .timeline-header h3 {
        font-size: 1.3rem;
    }
    
    .timeline-total {
        font-size: 0.9rem;
    }
    
    .step-info h4 {
        font-size: 1rem;
    }
    
    .step-info p {
        font-size: 0.9rem;
    }
    
    .conclusion-card h3 {
        font-size: 1.5rem;
    }
}
/* Le
gal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 30px;
    text-align: center;
}

.legal-text {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff004d;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff004d20;
}

.legal-text p {
    margin-bottom: 15px;
    color: #240a0a;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
    color: #240a0a;
}

.legal-text strong {
    color: #ff004d;
    font-weight: 600;
}

.update-date {
    text-align: center;
    font-weight: 600;
    color: #ff004d;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ff004d20;
}

/* Contacts Page Styles */
.contacts-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.contacts-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contacts-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #240a0a;
    margin-bottom: 20px;
    text-align: center;
}

.contacts-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contacts-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-link {
    color: #ff004d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff3366;
}

.company-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.company-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 25px;
    text-align: center;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-item strong {
    color: #ff004d;
    font-weight: 600;
    min-width: 200px;
}

.company-item span {
    color: #240a0a;
    flex: 1;
}

.support-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.support-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 25px;
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 10px;
}

.support-item p {
    color: #666;
    margin-bottom: 10px;
}

.support-item ul {
    text-align: left;
    color: #666;
    padding-left: 20px;
}

.support-item li {
    margin-bottom: 5px;
}

.faq-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 25px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    padding: 20px;
    border-left: 4px solid #ff004d;
    background: #fafafa;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #240a0a;
    margin-bottom: 10px;
}

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

.cta-section {
    background: linear-gradient(135deg, #ff004d, #ff3366);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 0, 77, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: white;
    color: #ff004d;
    border: 2px solid white;
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #ff004d;
}

/* Footer Legal Links */
.footer-legal {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff004d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-text {
        padding: 25px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .contacts-content h1 {
        font-size: 2rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .company-item {
        flex-direction: column;
    }
    
    .company-item strong {
        min-width: auto;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}