/* ═══════════════════════════════════════════════════════════════════════════
   BOTMARKET LANDING PAGE - STYLES
   Plataforma SaaS de Bots Inteligentes para Telegram
   
   Otimizado para:
   - Alertas automáticos via Telegram
   - Automação de notificações inteligentes
   - Bots com IA (Claude, GPT) para insights em tempo real
   - Monitoramento automatizado de ações, criptomoedas, Tesouro Direto
   
   © 2026 BotMarket - botmarket.digital
═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   CSS VARIABLES - BOTMARKET PALETTE
═══════════════════════════════════════════ */
:root {
    /* Primary Colors - Based on Logo */
    --coral: #E86F5C;
    --coral-dark: #D45A47;
    --coral-light: #F5A090;
    --coral-pale: #FDE8E4;
    
    /* Secondary Colors */
    --blue: #4A9DB8;
    --blue-dark: #3A8BA5;
    --blue-light: #6DBDD5;
    --blue-pale: #E3F4F9;
    
    /* Neutral Colors */
    --cream: #FDF9F7;
    --cream-dark: #F5EDE8;
    --dark: #2D3436;
    --dark-soft: #4A5568;
    --gray: #718096;
    --gray-light: #A0AEC0;
    --white: #FFFFFF;
    
    /* Semantic Colors */
    --success: #48BB78;
    --warning: #F6AD55;
    --error: #FC8181;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(232, 111, 92, 0.04);
    --shadow-sm: 0 2px 8px rgba(232, 111, 92, 0.08);
    --shadow-md: 0 8px 30px rgba(232, 111, 92, 0.12);
    --shadow-lg: 0 20px 60px rgba(232, 111, 92, 0.15);
    --shadow-xl: 0 30px 80px rgba(232, 111, 92, 0.2);
    --shadow-blue: 0 8px 30px rgba(74, 157, 184, 0.2);
    --shadow-dark: 0 20px 60px rgba(45, 52, 54, 0.3);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
}

/* ═══════════════════════════════════════════
   RESET & BASE STYLES
═══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.highlight { color: var(--coral); }
.highlight-blue { color: var(--blue); }

.gradient-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Visibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--coral);
    border: 2px solid var(--coral);
}

.btn-secondary:hover {
    background: var(--coral);
    color: var(--white);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74, 157, 184, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid transparent;
}

.btn-ghost:hover {
    background: var(--cream-dark);
}

.btn-white {
    background: var(--white);
    color: var(--coral);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

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

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

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

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-down { animation: fadeInDown 0.6s ease-out forwards; }
.animate-fade-left { animation: fadeInLeft 0.6s ease-out forwards; }
.animate-fade-right { animation: fadeInRight 0.6s ease-out forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 2s ease-in-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll Animation Base */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: show elements after page load if JS animation hasn't triggered */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* Fallback for elements that should be visible */
.automation-card[data-animate],
.benefit-card[data-animate],
.step-card[data-animate],
.bot-preview-card[data-animate],
.pricing-card[data-animate],
.faq-item[data-animate],
.ecosystem-card[data-animate],
.process-step[data-animate],
.reward-card[data-animate] {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: var(--space-md) 0;
    background: rgba(253, 249, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 111, 92, 0.08);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text .coral { color: var(--coral); }
.logo-text .blue { color: var(--blue); }

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-soft);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--coral);
}

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

.nav-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
    z-index: 10000;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2D3436;
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-btn.active span {
    background: #E86F5C;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-content {
    padding: 100px 32px 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #F5EDE8;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: #2D3436;
    padding: 18px 16px;
    transition: all 0.15s ease;
    text-decoration: none;
    display: block;
    border-radius: 12px;
    margin: 4px 0;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: #E86F5C;
    background: #FDE8E4;
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 32px;
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(232, 111, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(74, 157, 184, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--coral);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.hero-badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--dark-soft);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-soft);
    margin-top: var(--space-xs);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
}

/* Phone Mockup - Telegram Style */
.telegram-phone {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 44px;
    padding: 8px;
    box-shadow: 
        0 50px 100px -20px rgba(45, 52, 54, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #333;
    position: relative;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.telegram-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.telegram-screen {
    width: 100%;
    height: 100%;
    background: #17212B;
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Telegram Header */
.tg-header {
    background: #242F3D;
    padding: 44px 12px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-back {
    opacity: 0.9;
}

.tg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-info {
    flex: 1;
}

.tg-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.tg-status {
    color: #6AB3F3;
    font-size: 0.75rem;
}

.tg-actions {
    opacity: 0.8;
}

/* Telegram Chat */
.tg-chat {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.tg-message {
    display: flex;
    opacity: 0;
    animation: tgFadeIn 0.4s ease-out forwards;
}

.tg-message.bot {
    justify-content: flex-start;
}

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

.tg-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    position: relative;
}

.tg-message.bot .tg-bubble {
    background: #182533;
    border-top-left-radius: 4px;
}

.tg-message.user .tg-bubble {
    background: #2B5278;
    border-top-right-radius: 4px;
}

.tg-bubble.alert {
    background: linear-gradient(135deg, #1E3A5F 0%, #2B5278 100%);
    border-left: 3px solid #6AB3F3;
}

.tg-text {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
}

.tg-text strong {
    color: #6AB3F3;
}

.tg-text.tg-small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.tg-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
    margin-top: 4px;
}

/* Telegram Input */
.tg-input {
    background: #17212B;
    padding: 8px 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-input-field {
    flex: 1;
    background: #242F3D;
    border-radius: 20px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.tg-send {
    width: 40px;
    height: 40px;
    background: #242F3D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-1 {
    top: 10%;
    right: -20px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-card-2 {
    bottom: 20%;
    left: -30px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-icon.coral { background: var(--coral-pale); }
.floating-icon.blue { background: var(--blue-pale); }

.floating-text {
    font-size: 0.8rem;
}

.floating-text strong {
    display: block;
    font-weight: 600;
    color: var(--dark);
}

.floating-text span {
    color: var(--dark-soft);
}

/* ═══════════════════════════════════════════
   SECTION COMMON STYLES
═══════════════════════════════════════════ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--coral-pale);
    color: var(--coral);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--dark-soft);
    line-height: 1.7;
}

/* Section Dividers */
.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral-light), transparent);
}

/* ═══════════════════════════════════════════
   AUTOMATIONS SECTION
═══════════════════════════════════════════ */
.automations {
    background: var(--white);
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.automation-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.automation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--coral-light);
    background: var(--white);
}

.automation-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--coral-pale) 0%, var(--blue-pale) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.automation-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--dark);
}

.automation-card p {
    font-size: 0.9rem;
    color: var(--dark-soft);
    line-height: 1.5;
}

/* Responsive automation grid */
@media (max-width: 1024px) {
    .automation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .automation-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════ */
.solution {
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.solution-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.solution-card.users {
    border-color: rgba(232, 111, 92, 0.15);
}

.solution-card.creators {
    border-color: rgba(74, 157, 184, 0.15);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.solution-card.users::before {
    background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.solution-card.creators::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.solution-card.users .solution-icon { background: var(--coral-pale); }
.solution-card.creators .solution-icon { background: var(--blue-pale); }

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.solution-card.users h3 { color: var(--coral); }
.solution-card.creators h3 { color: var(--blue); }

.solution-card > p {
    color: var(--dark-soft);
    margin-bottom: var(--space-lg);
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--dark);
}

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

.solution-features li .check {
    flex-shrink: 0;
    font-weight: 700;
}

.solution-card.users .solution-features .check { color: var(--coral); }
.solution-card.creators .solution-features .check { color: var(--blue); }

/* ═══════════════════════════════════════════
   BOTS PORTFOLIO SECTION
═══════════════════════════════════════════ */
.bots-portfolio {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.bots-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.bot-preview-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--cream-dark);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.bot-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--coral-light);
}

.bot-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--blue));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bot-preview-card:hover::before {
    opacity: 1;
}

.bot-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--coral-pale) 0%, var(--blue-pale) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.bot-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.bot-preview-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
}

.bot-preview-card p {
    font-size: 0.9rem;
    color: var(--dark-soft);
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.bot-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cream);
    color: var(--gray);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: auto;
    flex-shrink: 0;
}

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

.bots-cta p {
    color: var(--dark-soft);
    margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════ */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--coral-light);
    background: var(--white);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--coral-pale) 0%, var(--blue-pale) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--dark-soft);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS SECTION
═══════════════════════════════════════════ */
.how-it-works {
    background: var(--cream);
}

.steps-container {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 66.66%; /* Ajustado para 3 steps */
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--blue));
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* Grid para 3 steps */
.steps-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Linha ajustada para 3 steps */
.steps-container:has(.steps-grid-3) .steps-line {
    width: 50%;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--white);
    border: 3px solid var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    transition: all var(--transition-base);
}

.step-card:hover .step-number {
    background: var(--coral);
    color: var(--white);
    transform: scale(1.1);
}

.step-card:nth-child(even) .step-number {
    border-color: var(--blue);
    color: var(--blue);
}

.step-card:nth-child(even):hover .step-number {
    background: var(--blue);
    color: var(--white);
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--dark-soft);
}

/* ═══════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════ */
.pricing {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border: 2px solid var(--cream-dark);
    transition: all 0.4s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--coral);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pricing-card.featured .pricing-icon {
    background: var(--coral-pale);
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.pricing-price {
    font-family: var(--font-display);
    margin-bottom: var(--space-lg);
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--dark-soft);
}

.pricing-price .free {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
}

.pricing-features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.9rem;
    color: var(--dark);
}

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

.pricing-features .check {
    color: var(--coral);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq {
    background: var(--white);
}

.faq .container-sm {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--coral-light);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    line-height: 1.4;
}

.faq-item h4::before {
    content: "?";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--coral-pale);
    color: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
}

.faq-item p {
    color: var(--dark-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 32px;
}

/* Accordion Style Alternative */
.faq-accordion .faq-item {
    cursor: pointer;
}

.faq-accordion .faq-item h4::after {
    content: "+";
    margin-left: auto;
    font-size: 1.25rem;
    color: var(--coral);
    transition: transform var(--transition-fast);
}

.faq-accordion .faq-item.active h4::after {
    transform: rotate(45deg);
}

.faq-accordion .faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding-top: 0;
    padding-bottom: 0;
}

.faq-accordion .faq-item.active p {
    max-height: 500px;
    padding-top: var(--space-sm);
}

/* Categories for FAQ */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.faq-category-btn {
    padding: var(--space-sm) var(--space-md);
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-full);
    color: var(--dark-soft);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

/* ═══════════════════════════════════════════
   ECOSYSTEM SECTION
═══════════════════════════════════════════ */
.ecosystem {
    background: var(--cream);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.ecosystem-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.ecosystem-card.users {
    border-color: rgba(232, 111, 92, 0.15);
}

.ecosystem-card.users::before {
    background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.ecosystem-card.creators {
    border-color: rgba(74, 157, 184, 0.15);
}

.ecosystem-card.creators::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ecosystem-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.ecosystem-card.users .ecosystem-icon {
    background: var(--coral-pale);
}

.ecosystem-card.creators .ecosystem-icon {
    background: var(--blue-pale);
}

.ecosystem-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.ecosystem-card.users h3 { color: var(--coral); }
.ecosystem-card.creators h3 { color: var(--blue); }

.ecosystem-subtitle {
    color: var(--dark-soft);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.ecosystem-features {
    margin-bottom: var(--space-xl);
}

.ecosystem-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.95rem;
    color: var(--dark);
}

.ecosystem-features li .check {
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 2px;
}

.ecosystem-card.users .ecosystem-features .check { color: var(--coral); }
.ecosystem-card.creators .ecosystem-features .check { color: var(--blue); }

.ecosystem-card .btn {
    width: 100%;
}

/* ═══════════════════════════════════════════
   CO-CREATION SECTION
═══════════════════════════════════════════ */
.cocreation {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.cocreation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E86F5C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cocreation .section-header {
    position: relative;
    z-index: 1;
}

.cocreation .section-header .section-title,
.cocreation .section-header .section-description {
    color: var(--white);
}

.cocreation .section-header .section-description {
    opacity: 0.8;
}

/* Process Steps */
.cocreation-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 200px;
    text-align: center;
    transition: all var(--transition-base);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--coral);
    transform: translateY(-4px);
}

.process-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.process-content h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.process-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.process-arrow {
    color: var(--coral);
    font-size: 1.5rem;
    margin-top: var(--space-xl);
    opacity: 0.5;
}

/* Rewards Cards */
.cocreation-rewards {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.reward-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    transition: all var(--transition-base);
}

.reward-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.reward-card.featured {
    background: rgba(232, 111, 92, 0.15);
    border-color: var(--coral);
}

.reward-card.featured:hover {
    background: rgba(232, 111, 92, 0.25);
}

.reward-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reward-card.featured .reward-icon {
    background: var(--coral);
}

.reward-info {
    display: flex;
    flex-direction: column;
}

.reward-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.reward-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA */
.cocreation-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cocreation-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.cocreation-note {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .cocreation-process {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: var(--space-sm) 0;
    }

    .cocreation-rewards {
        flex-direction: column;
        align-items: center;
    }

    .reward-card {
        width: 100%;
        max-width: 320px;
    }
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta {
    background: var(--white);
    padding: 80px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
    position: relative;
    color: var(--white);
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    position: relative;
}

.cta-box .btn {
    font-size: 1.1rem;
    padding: 18px 40px;
    position: relative;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-md);
}

.footer-brand .logo-text .coral { color: var(--coral-light); }
.footer-brand .logo-text .blue { color: var(--blue-light); }

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--coral-light);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ═══════════════════════════════════════════
   FLOATING TELEGRAM BUTTON
═══════════════════════════════════════════ */
.telegram-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 999;
}

.telegram-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    transition: all var(--transition-base);
}

.telegram-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.5);
}

.telegram-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ═══════════════════════════════════════════
   RESPONSIVE STYLES
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-2xl);
    }

    .hero-grid > .hero-content {
        order: -1 !important;
    }

    .hero-grid > .hero-visual {
        order: 1 !important;
    }

    .telegram-phone {
        width: 260px;
        height: 520px;
        margin: 0 auto;
    }

    .tg-header {
        padding: 36px 10px 10px;
    }

    .floating-card {
        display: none;
    }

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

    .bots-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-line {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .contest-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .mobile-nav {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
    
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .bots-preview {
        grid-template-columns: 1fr;
    }

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

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

    .steps-grid-3 {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: var(--space-2xl) var(--space-lg);
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .telegram-float {
        bottom: var(--space-md);
        right: var(--space-md);
    }

    .telegram-float a {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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