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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6), 0 0 20px rgba(102, 126, 234, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 40px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-price-comparison {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #6366f1 100%);
    border-radius: 1rem;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: slideInFromTop 0.8s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.hero-price-comparison:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.hero-price-comparison:active {
    transform: translateY(-1px) scale(1.01);
}

.hero-price-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.1) 100%);
    animation: shimmer 3s infinite;
}

.price-comparison-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.price-old {
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-width: 120px;
}

.price-old .price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.25rem;
}

.price-old .price-amount {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: line-through;
    opacity: 0.85;
    margin-bottom: 0.125rem;
}

.price-old .price-note {
    display: block;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: lowercase;
}

.price-arrow {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    animation: bounce 2s infinite;
}

.price-new {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-width: 120px;
    border: 2px solid rgba(255,255,255,0.3);
}

.price-new .price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.25rem;
}

.price-new .price-amount {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 0.125rem;
}

.price-new .price-note {
    display: block;
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-transform: lowercase;
}

.price-savings {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.savings-text {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

/* Marketplaces strip */
.marketplaces-strip {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.marketplaces-strip-label {
    font-weight: 600;
}

.marketplace-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.marketplace-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.marketplace-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.marketplace-icon.wb {
    background: linear-gradient(135deg, #ff4b8b 0%, #9b00ff 100%);
    color: #ffffff;
}

.marketplace-icon.ozon {
    background: #005cff;
    color: #ffffff;
}

.marketplace-icon.yandex {
    background: #ffcc00;
    color: #1f2937;
}

.marketplace-icon.samokat {
    background: #ff0050;
    color: #ffffff;
}

.marketplace-icon.wb .marketplace-dot {
    background: #ffd1ec;
}

.marketplace-icon.ozon .marketplace-dot {
    background: #9ec5ff;
}

.marketplace-icon.yandex .marketplace-dot {
    background: #ffffff;
}

.marketplace-icon.samokat .marketplace-dot {
    background: #ffd1e0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-cta {
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.btn-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-1);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-hero .btn-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero .btn-timer-info {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-hero .btn-timer {
    font-size: 0.85rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    letter-spacing: 0.05em;
}

/* Ensure button text stays white in all states */
.btn-primary,
.btn-primary:visited,
.btn-primary span,
.btn-hero,
.btn-hero:visited,
.btn-hero span {
    color: #ffffff !important;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6), 0 0 40px rgba(102, 126, 234, 0.4);
}

.btn-pulse {
    animation: pulseButton 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5), 0 0 20px rgba(102, 126, 234, 0.3);
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5), 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.7), 0 0 40px rgba(102, 126, 234, 0.5);
    }
}

.btn-highlight {
    position: relative;
    background: var(--gradient-1);
    animation: highlightButton 2.5s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5), 0 0 15px rgba(102, 126, 234, 0.3);
}

@keyframes highlightButton {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5), 0 0 15px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.8), 0 0 30px rgba(102, 126, 234, 0.6);
        transform: scale(1.02);
    }
}

.hero-guarantee {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.fomo-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    animation: fadeInUp 1.6s ease, shake 3s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.fomo-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.fomo-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.fomo-timer {
    display: block;
    margin-top: 0.25rem;
    font-weight: 700;
    color: #dc2626;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.phone-mockup-wrapper {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}

.telegram-miniapp-badge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

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

.phone-mockup {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    border: 4px solid #0088cc;
    border-radius: 2.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 102, 170, 0.1) 100%);
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.3), var(--shadow-2xl);
    animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.3), var(--shadow-2xl);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 136, 204, 0.5), var(--shadow-2xl);
    }
}

.phone-screen {
    background: #1f2937;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
}

.screen-content {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message.generated .message-bubble {
    background: #f9fafb;
}

.generated-image-wrapper {
    margin-top: 0.75rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.generated-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.bot-message,
.user-message {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-hidden {
    opacity: 0;
    transform: translateY(8px);
}

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

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.message-bubble {
    background: #f3f4f6;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 80%;
    animation: slideIn 0.5s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.message-bubble p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
}

.message-bubble.user {
    background: var(--gradient-1);
    color: white;
}

.loading-dots {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

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

/* Maslow's Pyramid Section */
.maslow-section {
    padding: 50px 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.maslow-pyramid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pyramid-level {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pyramid-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pyramid-level:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pyramid-level:hover::before {
    transform: scaleY(1);
}

.level-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.level-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.level-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.level-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Features Section */
.features {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Examples Section */
.examples {
    padding: 50px 0;
    background: var(--bg-secondary);
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.example-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.example-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.example-info {
    padding: 1rem;
}

.example-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.example-info p {
    color: var(--text-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-stats {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
    background: var(--bg-secondary);
}

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

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-badge.best {
    background: var(--gradient-2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--gradient-1);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-savings {
    text-align: center;
    margin-top: 1rem;
    color: #10b981;
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: var(--gradient-1);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-cta.btn-highlight {
    animation: highlightButtonCta 2.5s ease-in-out infinite;
}

@keyframes highlightButtonCta {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.4);
        transform: scale(1.02);
    }
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    body {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;

    .hero-price-comparison {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .price-comparison-content {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .price-old,
    .price-new {
        min-width: auto;
        padding: 0.5rem;
    }

    .price-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
    }

    .price-savings {
        text-align: center;
        min-width: auto;
    }

    .savings-text {
        font-size: 1rem;
    }
    }

    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-subtitle {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    p, h1, h2, h3, h4, h5, h6, span, div, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        align-items: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .stat-item {
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .marketplaces-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .marketplace-icons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        gap: 0.5rem;
    }

    .marketplace-icon {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
        white-space: normal;
        word-break: break-word;
    }

    .hero-cta {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .btn-hero {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem 1.5rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .maslow-pyramid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .level-content {
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cta-content p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .fomo-banner {
        flex-direction: column;
        text-align: center;
    }

    .example-grid {
        grid-template-columns: 1fr;
    }

    .example-item {
        display: flex;
        flex-direction: column;
    }

    .example-image {
        height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phone-mockup-wrapper {
        max-width: 100%;
    }
    
    .phone-mockup {
        max-width: 100%;
    }
    
    .telegram-miniapp-badge {
        top: -40px;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-hero .btn-timer-info {
        font-size: 0.7rem;
    }
    
    .btn-hero .btn-timer {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Center alignment for mobile */
@media (max-width: 768px) {
    .container {
        text-align: center;
        padding: 0 15px;
    }

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

    .section-header {
        text-align: center;
        padding: 0 10px;
    }

    .section-title {
        padding: 0 10px;
        font-size: 1.75rem;
    }

    .section-subtitle {
        padding: 0 10px;
    }

    .hero-badge {
        max-width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
}


