/* =========================================
   VARIABLES & GLOBAL STYLES
   ========================================= */
:root {
    --primary-color: #0052FF;
    --primary-hover: #0040CC;
    --dark-bg: #0A1128;
    --darker-bg: #050A18;
    --card-bg: #FFFFFF;
    --card-dark: #121A30;
    --text-main: #1A202C;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --text-light-muted: #94A3B8;
    --border-color: #E2E8F0;
    --border-dark: #1E293B;
    --gradient-blue: linear-gradient(135deg, #0052FF 0%, #3B82F6 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 20px rgba(0, 82, 255, 0.3);
    
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #F8FAFC;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}

.container-fluid {
    width: 100%;
    padding: 0 48px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-light {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.dark h2,
.section-header.dark p {
    color: var(--text-light);
}

.section-header.dark p {
    color: var(--text-light-muted);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .btn-secondary, .btn-login {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.3);
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    background: var(--dark-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.navbar .nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a:hover {
    color: var(--text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: var(--text-light);
    background: transparent;
    border: none;
}
.btn-login:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background-color: var(--dark-bg);
    padding: 80px 0 0 0 !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,82,255,0.15) 0%, rgba(10,17,40,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-content {
    color: var(--text-light);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    color: var(--text-light-muted);
    font-size: 1.3rem;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    gap: 20px;
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-features i {
    color: var(--primary-color);
}

.dashboard-mockup {
    position: relative;
    border-radius: 12px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.5));
}

.dashboard-mockup:hover::before {
    left: 150%;
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* =========================================
   SOCIAL PROOF (LOGOS CAROUSEL)
   ========================================= */
.social-proof {
    padding: 45px 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.social-title {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Fade edges */
.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: scrollCarousel 40s linear infinite;
}

.carousel-track img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) opacity(0.5);
    transition: var(--transition);
}

.carousel-track img.logo-xl {
    height: 110px;
}
.carousel-track img.logo-lg {
    height: 85px;
}
.carousel-track img.logo-sm {
    height: 40px;
}
.carousel-track img:hover {
    filter: grayscale(100%) brightness(0) opacity(0.8);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 32px)); } /* Half width minus gap */
}

/* =========================================
   FEATURES GRID SECTION
   ========================================= */
.features-section {
    padding: 60px 0;
    background: white;
}

.bg-light {
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0, 82, 255, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 82, 255, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.feature-card.alt {
    text-align: left;
    padding: 32px;
}

.feature-card.alt .feature-icon.small {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* =========================================
   INTEGRATIONS SECTION
   ========================================= */
.integrations-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.channels-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

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

.channel-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.channel-item:hover .channel-icon {
    transform: scale(1.1);
}

.channel-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Brand Colors */
.whatsapp { background: #25D366; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.messenger { background: linear-gradient(83.84deg, #0088FF -6.87%, #A033FF 26.36%, #FF5C87 100%); }
.tiktok { background: #000000; }
.telegram { background: #0088cc; }
.email { background: #D44638; }
.sms { background: #4CAF50; }
.google { background: #4285F4; }
.webchat { background: #0052FF; }
.api { background: #757575; }

/* =========================================
   DARK CHANNELS SECTION
   ========================================= */
.dark-channels {
    background-color: var(--dark-bg);
    padding: 60px 0;
    position: relative;
}

.dark-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
    align-items: stretch;
}

.dark-card {
    background: #121A30;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    justify-content: center;
}

.dark-card i {
    font-size: 1.5rem;
}

.dark-card:hover {
    background: #1E293B;
    border-color: #334155;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-wrapper {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: var(--shadow-md);
    margin-top: -30px;
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 0 32px;
    border-right: 1px solid var(--border-color);
}
.stat-card:last-child {
    border-right: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 82, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   BOTTOM CTA SECTION
   ========================================= */
.cta-section {
    background: radial-gradient(circle at 90% 50%, rgba(0, 82, 255, 0.3) 0%, var(--darker-bg) 60%), var(--darker-bg);
    padding: 60px 0;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-content p {
    color: var(--text-light-muted);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* CTA GSAP Elements */
.cta-gsap-container {
    position: relative;
    height: 450px;
    width: 100%;
}
.cta-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.cta-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.cta-card strong {
    display: block;
    color: #1a202c;
    font-size: 0.9rem;
    line-height: 1.2;
}
.cta-card span {
    color: #64748b;
    font-size: 0.75rem;
}
.cta-bot-online {
    top: 5%;
    left: 0;
    background: rgba(18, 26, 48, 0.6) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 1;
}
.cta-bot-online strong { color: white; }
.cta-bot-online span { color: #94A3B8; }
.cta-conversions {
    top: 60%;
    left: 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 3;
}
.cta-conversions p { color: #64748b; font-size: 0.85rem; margin:0; font-weight:600;}
.cta-conversions h3 { color: #10B981; font-size: 1.8rem; margin:0; line-height: 1; font-weight:800;}
.cta-conversions i { color: #10B981; font-size: 1.5rem; align-self: flex-end; margin-top: -20px;}
.cta-conversions, .cta-bot-right {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.cta-bot-right {
    top: 5%;
    right: 0;
    z-index: 1;
}
.bot-icon {
    width: 32px; height: 32px; background: rgba(0, 82, 255, 0.1); color: #0052FF; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.cta-chart {
    bottom: 0%;
    right: 5%;
    background: rgba(18, 26, 48, 0.75) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 220px;
    height: 130px;
    padding: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}
.anim-line {
    stroke: rgba(0, 82, 255, 0.5);
    stroke-dasharray: 8;
    animation: dashAnim 10s linear infinite;
}
@keyframes dashAnim {
    to { stroke-dashoffset: -1000; }
}
.cta-chat-main {
    position: absolute;
    top: 10%;
    left: calc(50% - 160px);
    width: 320px;
    background: rgba(30, 41, 59, 0.6) !important;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    z-index: 2;
}
.chat-header {
    padding: 16px;
    border-bottom: 1px solid #334155;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.chat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.msg {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    max-width: 85%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.msg.from {
    background: white;
    color: #1a202c;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.msg.to {
    background: #0052FF;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-light-muted);
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col h4 .toggle-icon {
    display: none;
    transition: transform 0.3s ease;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: transparent;
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   MEDIA QUERIES (RESPONSIVIDADE COMPLETA)
   ========================================= */
@media (max-width: 1600px) {
    .hero-title { font-size: 4rem; }
    .hero-container { gap: 48px; }
}

@media (max-width: 1400px) {
    .hero-title { font-size: 3.5rem; }
    .hero-container { gap: 32px; }
    .dashboard-mockup { transform: perspective(1000px) rotateY(-3deg) rotateX(3deg); }
    .dark-grid { gap: 12px; }
    .dark-card { padding: 12px 16px; font-size: 0.9rem; }
}

@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
    .dark-grid { grid-template-columns: repeat(4, 1fr); }
    .features-grid, .bots-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { gap: 16px; }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 140px !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        text-align: center;
    }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-description { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .dashboard-mockup {
        width: 90%;
        margin: 0 auto;
        transform: none;
    }
    .dashboard-mockup:hover { transform: translateY(-5px); }
    .dark-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-container { grid-template-columns: 1fr; text-align: center; }
    .cta-gsap-container { margin-top: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; text-align: center; }
    .social-links { justify-content: center; }
}

@media (max-width: 768px) {
    .header-actions { display: none; }
    .menu-toggle {
        display: block;
        color: var(--text-light);
        position: relative;
        z-index: 9999;
    }
    .nav-links {
        display: none !important;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        gap: 16px;
    }
    .navbar.active .nav-links { display: flex !important; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 400px; margin: 0 auto 24px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-features { flex-direction: column; align-items: center; gap: 12px; }
    
    .features-grid, .bots-grid, .dark-grid { grid-template-columns: 1fr; }
    .dark-card { white-space: normal; text-align: center; }
    .stats-grid { flex-direction: column; align-items: stretch; gap: 0; }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 24px 0;
    }
    .stat-card:last-child { border-bottom: none; }
    .cta-chat-main { left: 50%; transform: translateX(-50%); width: 90%; max-width: 320px; }
    .cta-floating-elements .cta-card { transform: scale(0.8); }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .footer-links { grid-template-columns: 1fr; gap: 0; }
    .footer-col { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .footer-col h4 { margin-bottom: 0; padding: 16px 0; cursor: pointer; }
    .footer-col h4 .toggle-icon { display: block; }
    .footer-col ul { display: none !important; padding-bottom: 16px; }
    .footer-col.open ul { display: block !important; }
    .footer-col.open h4 .toggle-icon { transform: rotate(180deg); }
}

@media (max-width: 480px) {
    .container-fluid { padding: 0 24px; }
    .hero-title { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .features-grid, .bots-grid, .dark-grid { grid-template-columns: 1fr; }
    .dark-card { white-space: normal; text-align: center; }
    .channels-row { flex-wrap: wrap; justify-content: center; }
    .cta-gsap-container { height: 400px; }
    .cta-bot-online, .cta-bot-right, .cta-chart { display: none; } 
    .cta-conversions { top: auto; bottom: 10px; left: 50%; transform: translateX(-50%); }
    .cta-chat-main { width: 90%; left: 5%; transform: none; }
    .dashboard-mockup { width: 100%; }
}
