/* ==============================================
   ARTICODE CRM - LANDING PAGE (ATTIO STYLE)
   Dark Theme Modern Design
   ============================================== */

:root {
    --dark-bg: #0a0e27;
    --dark-surface: #0f1419;
    --dark-card: #161b22;
    --dark-border: #30363d;
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==============================================
   NAVBAR
   ============================================== */

.navbar-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.navbar-brand i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* New Logo Styles */
.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-highlight {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: lowercase;
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-links a:hover {
    color: var(--text-primary);
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav-secondary,
.btn-nav-primary {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-nav-secondary {
    color: var(--text-primary);
    background: transparent;
}

.btn-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 80px 2rem 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateX(4px);
}

.mobile-menu-link i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 24px 0;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.mobile-menu-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.mobile-menu-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.mobile-menu-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.mobile-menu-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Footer Accordion */
.footer-accordion-header {
    display: none;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    margin-bottom: 1rem;
}

.footer-accordion-header .footer-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.footer-accordion-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.footer-accordion-header.active .footer-accordion-icon {
    transform: rotate(180deg);
}

.footer-accordion-content {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-accordion-content.collapsed {
    max-height: 0;
}


/* ==============================================
   HERO SECTION
   ============================================== */

.hero-section {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    top: 0;
    right: -200px;
    filter: blur(100px);
    animation: floatSlow 20s infinite ease-in-out;
}

@@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-badge i {
    color: var(--accent-primary);
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    word-spacing: normal;
    white-space: normal;
}

/* Preserve spaces in animated text */
.hero-title-large span,
.section-title-large span {
    word-spacing: normal;
    white-space: pre;
}

.gradient-text-animated {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

.hero-subtitle-large {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-cta-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--dark-border);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* ==============================================
   DASHBOARD INTERACTIVE PREVIEW
   ============================================== */

.dashboard-interactive {
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    transition: transform 0.3s ease;
}

.dashboard-window {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.window-header {
    background: var(--dark-surface);
    padding: 12px 16px;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28c840; }

.window-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tab.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.window-body {
    display: flex;
    height: 600px;
}

.sidebar-mock {
    width: 60px;
    background: var(--dark-surface);
    border-right: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 8px;
}

.sidebar-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sidebar-item.active {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-primary);
}

.main-content-mock {
    flex: 1;
    padding: 24px;
    overflow: hidden;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.search-box,
.filter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-box:hover,
.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.grid-col {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px;
}

.col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.col-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.col-badge.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.col-badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.col-badge.orange {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

.col-badge.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

.col-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.col-count.updated {
    animation: countPulse 0.5s ease;
}

@@keyframes countPulse {
    0%, 100% { 
        transform: scale(1); 
        color: var(--text-secondary);
    }
    50% { 
        transform: scale(1.3); 
        color: var(--accent-primary);
        font-weight: 700;
    }
}

.deal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.deal-card-moving {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
    border-color: var(--accent-primary);
    z-index: 1000;
    animation: cardFloat 2s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 25px 80px rgba(102, 126, 234, 0.7);
    }
}

.deal-card-ghost {
    filter: blur(2px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.deal-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Column highlight when receiving card */
.grid-col.receiving {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(102, 126, 234, 0.03) 100%);
    border: 2px dashed rgba(102, 126, 234, 0.4);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    animation: columnReceive 1s ease-in-out;
}

@keyframes columnReceive {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

@@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

.deal-company {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.deal-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.deal-owner {
    color: var(--text-secondary);
}

.deal-ai {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
    color: var(--accent-primary);
}

.deal-ai.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

/* ==============================================
   PLATFORM SECTION
   ============================================== */

.platform-section,
.automation-section,
.ai-section,
.data-section,
.reporting-section,
.testimonials-section,
.scale-section {
    padding: 60px 0;
}

/* First section after hero gets more padding */
.platform-section {
    padding-top: 80px;
}

/* Last section before CTA gets less padding */
.scale-section {
    padding-bottom: 40px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.label-number {
    font-weight: 700;
    color: var(--accent-primary);
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    word-spacing: normal;
    white-space: normal;
}

.section-description-large {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
}

/* ==============================================
   FEATURE SHOWCASE
   ============================================== */

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-showcase-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-showcase-title i {
    color: var(--accent-primary);
}

.feature-showcase-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
}

.feature-tag {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==============================================
   AUTOMATION BUILDER
   ============================================== */

.automation-section .feature-showcase-visual {
    /* Force proper sizing */
    min-width: 0;
    width: 100%;
}

.automation-builder {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.automation-node {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.3s ease;
}

.automation-node.trigger {
    border-left: 3px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.automation-node.condition {
    border-left: 3px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.automation-node.action {
    border-left: 3px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.automation-node:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.node-content {
    flex: 1;
    min-width: 0;
}

.node-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-primary);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.automation-node.trigger .node-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.automation-node.condition .node-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.automation-node.action .node-icon {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

.node-label {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.8;
}

.node-title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.node-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.automation-connector {
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, transparent 100%);
    margin: 0 auto;
    opacity: 0.5;
}

.automation-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}

.split-branch {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.split-label {
    font-size: 0.75rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: block;
    width: fit-content;
    margin: 0 auto 12px auto;
}
    padding: 10px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* ==============================================
   AI WORKFLOW
   ============================================== */

.ai-workflow {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
}

.ai-step {
    margin-bottom: 24px;
}

.ai-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #60a5fa;
    font-weight: 500;
}

.ai-processing {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 16px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--gradient-primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.ai-question {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-answer {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ai-result {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 16px;
}

.result-company {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.company-meta {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ai-connector {
    width: 2px;
    height: 20px;
    background: var(--dark-border);
    margin: 12px 0 12px 24px;
}

/* ==============================================
   DATA OBJECTS
   ============================================== */

.integration-logos {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
}

.integration-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.data-objects {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
}

.data-object {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: var(--delay);
}

@@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.object-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.object-name {
    font-size: 1rem;
    font-weight: 600;
}

.object-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.object-count {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==============================================
   CHART
   ============================================== */

.chart-container {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 24px;
}

.chart-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.chart-tab {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chart-tab.active {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-primary);
}

.chart-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.chart-graph {
    position: relative;
    height: 200px;
}

.revenue-chart {
    width: 100%;
    height: 100%;
}

.chart-value {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==============================================
   TESTIMONIALS
   ============================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
}

.testimonial-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.testimonial-features {
    display: flex;
    gap: 8px;
}

.feature-badge {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==============================================
   SCALE & SECURITY
   ============================================== */

.scale-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin: 60px 0;
}

.scale-stat {
    text-align: center;
}

.scale-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.scale-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
}

.security-badge i {
    font-size: 2rem;
    color: var(--success);
}

.security-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ==============================================
   FINAL CTA
   ============================================== */

/* ==============================================
   AUTOMATION VISUAL EDITOR SECTION
   ============================================== */

.automation-editor-section {
    padding: 80px 0;
    background: rgba(22, 27, 34, 0.5);
    position: relative;
    overflow: hidden;
}

.automation-editor-demo {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 0;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    min-height: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Editor Sidebar */
.editor-sidebar {
    background: #0a0e27;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
    overflow-y: auto;
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.02);
}

.sidebar-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fbbf24;
    text-transform: uppercase;
}

.sidebar-header i {
    color: #f59e0b;
    font-size: 1.125rem;
}

.sidebar-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 0;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section-title {
    padding: 10px 20px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
}

.sidebar-section-title:hover {
    background: transparent;
}

.sidebar-section-title i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.sidebar-item {
    padding: 11px 20px 11px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    padding-left: 24px;
    border-left-color: rgba(167, 139, 250, 0.3);
}

.sidebar-item.active {
    background: rgba(139, 92, 246, 0.12);
    color: #c4b5fd;
    font-weight: 600;
    padding-left: 24px;
    border-left-color: #a78bfa;
}

.sidebar-item i {
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.25s ease;
}

.sidebar-item:hover i {
    opacity: 1;
    transform: scale(1.08);
}

.sidebar-item.active i {
    opacity: 1;
    color: #a78bfa;
}

/* Canvas Wrapper */
.editor-canvas-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.connection-mode-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: bannerSlideDown 0.5s ease;
}

.connection-mode-banner i {
    font-size: 1.25rem;
}

@@keyframes bannerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Canvas Area */
.editor-canvas {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #0e1328 0%, #161b2e 50%, #0e1328 100%);
    overflow: hidden;
}

.canvas-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    opacity: 0.6;
}

/* Workflow Cards */
.workflow-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(30, 35, 43, 0.98) 0%, rgba(22, 27, 34, 0.98) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 300px;
    z-index: 10;
    animation: cardFadeIn 0.6s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.workflow-card.trigger-card {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(245, 158, 11, 0.2),
        0 4px 20px rgba(245, 158, 11, 0.15);
    animation: cardPulse 3s ease-in-out infinite;
}

.workflow-card.action-card {
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(245, 158, 11, 0.2),
        0 4px 20px rgba(245, 158, 11, 0.15);
    animation: cardPulse 3s ease-in-out infinite 0.5s;
}

@@keyframes cardPulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(245, 158, 11, 0.2),
            0 4px 20px rgba(245, 158, 11, 0.15);
    }
    50% {
        box-shadow: 
            0 12px 48px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(245, 158, 11, 0.4),
            0 8px 40px rgba(245, 158, 11, 0.25);
    }
}

.card-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #fbbf24;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
}

.card-title {
    flex: 1;
}

.card-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.card-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-actions {
    display: flex;
    gap: 4px;
}

.card-action-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Card Connection Dots */
.card-dot {
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border: 2px solid rgba(30, 35, 43, 0.95);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: dotGlow 2s ease-in-out infinite;
}

.card-dot.input {
    top: -6px;
}

.card-dot.output {
    bottom: -6px;
}

.card-dot:hover {
    transform: translateX(-50%) scale(1.5);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
}

@@keyframes dotGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
    }
}

/* Connection Line SVG */
.connection-line-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.connecting-path {
    stroke-linecap: round;
}

/* Flowing Particles */
.flow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
}

.flow-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8), 0 0 20px rgba(16, 185, 129, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Connect Prompt Button */
.connect-prompt-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    color: #10b981;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    animation: promptPulse 2s ease-in-out infinite;
    z-index: 15;
}

@@keyframes promptPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

@@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Tutorial Sidebar */
.editor-tutorial {
    background: #0a0e27;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0;
    overflow-y: auto;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.02);
}

.tutorial-header {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.tutorial-header i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.tutorial-step {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.tutorial-step:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tutorial-step.active {
    background: rgba(245, 158, 11, 0.08);
    border-left-color: #f59e0b;
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.tutorial-step.active .step-number {
    background: #f59e0b;
    border-color: #fbbf24;
    color: white;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.step-content {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.step-content strong {
    color: var(--text-primary);
}

.step-content em {
    color: var(--text-muted);
    font-style: italic;
}

.dot-example {
    font-size: 1.125rem;
    margin: 0 4px;
}

.dot-example.output-dot {
    color: #f59e0b;
}

.dot-example.input-dot {
    color: #f59e0b;
}

.green-text {
    color: #10b981;
    font-weight: 600;
}

/* Features Cards Below Editor */
.automation-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.automation-feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.automation-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.automation-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-primary);
}

.automation-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.automation-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive: Editor */
@@media (max-width: 1400px) {
    .automation-editor-demo {
        grid-template-columns: 220px 1fr 260px;
    }
}

@@media (max-width: 1200px) {
    .automation-editor-demo {
        grid-template-columns: 1fr;
        min-height: 900px;
    }
    
    .editor-sidebar,
    .editor-tutorial {
        display: none;
    }
    
    .editor-canvas-wrapper {
        border-radius: 16px;
    }
    
    .automation-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@@media (max-width: 767px) {
    .connection-mode-banner {
        font-size: 0.75rem;
        padding: 10px 15px;
    }
    
    .workflow-card {
        min-width: 240px;
    }
    
    .card-header {
        padding: 12px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
}

/* OLD STYLES REMOVED - Keeping only new editor styles */

/* Automation Nodes */
.OLD-automation-node {
    position: absolute;
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: nodeAppear 0.6s ease forwards;
    cursor: pointer;
}

.automation-node:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border-color: var(--accent-primary);
}

/* Node Types */
.automation-node.trigger {
    top: 50px;
    left: 50px;
    border-color: #10b981;
    animation-delay: 0.2s;
}

.automation-node.trigger .node-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.automation-node.condition {
    top: 50px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    border-color: #f59e0b;
    animation-delay: 0.8s;
}

.automation-node.condition .node-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.automation-node.action {
    border-color: #667eea;
}

.automation-node.action .node-icon {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.automation-node.action[data-node="action1"] {
    top: 200px;
    left: 15%;
    animation-delay: 1.4s;
}

.automation-node.action[data-node="action2"] {
    top: 200px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    animation-delay: 1.6s;
}

.automation-node.action[data-node="action3"] {
    top: 200px;
    right: 15%;
    animation-delay: 1.8s;
}

.automation-node.success {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    border-color: #10b981;
    animation-delay: 2.4s;
}

.automation-node.success .node-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Node Icon */
.node-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Node Content */
.node-content {
    flex: 1;
}

.node-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.node-subtitle {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Connection Dots */
.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 2px solid var(--dark-card);
    position: absolute;
    z-index: 10;
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    animation: dotPulse 2s infinite;
}

.node-dot.input {
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
}

.node-dot.output {
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
}

/* SVG Connections */
.automation-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.automation-connections path {
    fill: none;
    stroke: url(#connectionGradient);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawConnection 1s ease forwards;
    marker-end: url(#arrowhead);
}

/* Particles */
.automation-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFlow 3s ease-in-out infinite;
}

/* Automation Features */
.automation-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.automation-feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.automation-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.automation-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-primary);
}

.automation-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.automation-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@@keyframes nodeAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.automation-node.condition[data-node="condition"],
.automation-node.action[data-node="action2"],
.automation-node.success[data-node="success"] {
    animation: nodeAppearCenter 0.6s ease forwards;
}

@@keyframes nodeAppearCenter {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
    }
}

@@keyframes drawConnection {
    to {
        stroke-dashoffset: 0;
    }
}

@@keyframes particleFlow {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/* Responsive */
@@media (max-width: 991px) {
    .automation-canvas {
        min-height: 700px;
    }
    
    .automation-node {
        min-width: 200px;
        padding: 12px 16px;
    }
    
    .automation-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@@media (max-width: 767px) {
    .automation-canvas {
        min-height: 900px;
        padding: 30px 15px;
    }
    
    .automation-node {
        min-width: 180px;
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    
    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .automation-node.trigger {
        left: 20px;
    }
    
    .automation-node.action[data-node="action1"] {
        left: 10%;
    }
    
    .automation-node.action[data-node="action3"] {
        right: 10%;
    }
}

/* ==============================================
   PRICING SECTION
   ============================================== */

.pricing-section {
    padding: 80px 0;
    position: relative;
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
}

.billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 100px;
    padding: 6px;
    gap: 6px;
}

.billing-option {
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.billing-option:hover {
    color: var(--text-primary);
}

.billing-option.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.discount-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.billing-option.active .discount-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

/* Badge no topo do card */
.pricing-badge-top {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header {
    padding: 30px 30px 0;
    margin-bottom: 20px;
}

.pricing-plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-plan-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.pricing-price {
    padding: 0 30px 20px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 20px;
}

.price-label {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-sublabel {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Price Comparison (Mensal/Anual) */
.price-comparison {
    display: none;
}

.price-comparison.active {
    display: block;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.price-current {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 8px;
}

.price-current .currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 6px;
}

.price-current .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-current .decimals {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 6px;
}

.price-current .period {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    margin-top: 4px;
}

/* CTA Button */
.pricing-cta {
    padding: 0 30px 20px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 20px;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
}

.btn-pricing.free {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.btn-pricing.free:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-pricing.pro {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-pricing.pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Features */
.pricing-features {
    padding: 0 30px 20px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 20px;
}

.feature-group-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.feature-item i {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-secondary);
}

.feature-item.included i {
    color: var(--text-primary);
}

/* Support Section */
.pricing-support {
    padding: 20px 30px 30px;
}

.support-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.support-description {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.6;
    margin: 0;
}

/* Pricing FAQ */
.pricing-faq {
    max-width: 900px;
    margin: 60px auto 0;
    display: grid;
    gap: 20px;
}

.faq-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==============================================
   REAL SCREENSHOTS
   ============================================== */

.platform-screenshot {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.platform-screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.platform-screenshot:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.platform-screenshot:hover::before {
    opacity: 1;
}

.platform-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshot with device frame */
.screenshot-frame {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.screenshot-frame-header {
    background: var(--dark-surface);
    border-radius: 12px 12px 0 0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--dark-border);
}

.screenshot-frame-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-frame-dot.red { background: #ff5f57; }
.screenshot-frame-dot.yellow { background: #ffbd2e; }
.screenshot-frame-dot.green { background: #28c840; }

.screenshot-content {
    position: relative;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.final-cta-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.final-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-final-cta-primary,
.btn-final-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-final-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-final-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--dark-border);
}

.btn-final-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.final-cta-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==============================================
   FOOTER
   ============================================== */

.footer-landing {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-brand i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 1200px) {
    .hero-title-large {
        font-size: 3.5rem;
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .dashboard-interactive {
        max-width: 100%;
        margin: 20px auto 0;
    }
}

@media (max-width: 991px) {
    /* Navbar */
    .navbar-links {
        display: none;
    }
    
    .navbar-actions {
        gap: 0.5rem;
    }
    
    .btn-nav-secondary,
    .btn-nav-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Hero */
    .hero-section {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-title-large {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    /* Dashboard */
    .dashboard-interactive {
        margin: 20px 0 0;
    }
    
    .window-body {
        height: 400px;
    }
    
    .sidebar-mock {
        width: 48px;
        padding: 12px 6px;
    }
    
    .sidebar-item {
        width: 36px;
        height: 36px;
    }
    
    .main-content-mock {
        padding: 16px;
    }
    
    /* Features */
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .feature-showcase.reverse {
        direction: ltr;
    }
    
    /* Content Grid */
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .scale-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    /* Navbar */
    .navbar-landing {
        padding: 0.75rem 0;
    }
    
    .navbar-content {
        padding: 0 1rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .navbar-links {
        display: none;
    }
    
    .navbar-actions {
        gap: 0.5rem;
    }
    
    .btn-nav-secondary {
        display: none; /* Hide "Login" on mobile */
    }
    
    .btn-nav-primary {
        display: none; /* Hide on mobile, use menu instead */
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Footer Accordion */
    .footer-accordion-header {
        display: block;
    }
    
    .footer-col {
        border-bottom: 1px solid var(--dark-border);
        padding-bottom: 1rem;
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }
    
    /* Hero */
    .hero-section {
        padding: 80px 0 30px;
        min-height: auto;
    }
    
    .hero-content-center {
        padding: 0 1rem;
        margin: 0 auto 40px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title-large {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-large {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-center {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Dashboard */
    .dashboard-interactive {
        margin: 20px 0 0;
        max-width: 100%;
    }
    
    .dashboard-window {
        border-radius: 12px;
    }
    
    .window-header {
        padding: 10px 12px;
    }
    
    .window-tabs {
        display: none; /* Hide tabs on mobile */
    }
    
    .window-body {
        height: 400px;
        flex-direction: column;
    }
    
    .sidebar-mock {
        width: 100%;
        height: 48px;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--dark-border);
        padding: 8px 12px;
        overflow-x: auto;
    }
    
    .sidebar-item {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .main-content-mock {
        padding: 12px;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .header-title {
        font-size: 1.125rem;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Dashboard swipe indicators */
    .dashboard-interactive {
        position: relative;
    }
    
    .swipe-indicator {
        display: none;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 16px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 20px;
        color: white;
        font-size: 0.75rem;
        animation: swipePulse 2s infinite;
        pointer-events: none;
    }
    
    @keyframes swipePulse {
        0%, 100% {
            opacity: 0.6;
        }
        50% {
            opacity: 1;
        }
    }
    
    /* Price comparison animation */
    .price-comparison {
        transition: all 0.3s ease;
    }
    
    .price-comparison:not(.active) {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .price-comparison.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    .deal-card {
        padding: 10px;
    }
    
    .deal-company {
        font-size: 0.8125rem;
    }
    
    .deal-value {
        font-size: 1rem;
    }
    
    .deal-meta {
        font-size: 0.6875rem;
    }
    
    /* Sections */
    .platform-section,
    .automation-section,
    .ai-section,
    .data-section,
    .reporting-section,
    .testimonials-section,
    .scale-section {
        padding: 40px 0;
    }
    
    .platform-section {
        padding-top: 60px;
    }
    
    .section-label {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-description-large {
        font-size: 1rem;
    }
    
    /* Feature Showcase */
    .feature-showcase {
        gap: 32px;
        margin-top: 30px;
    }
    
    .feature-showcase-title {
        font-size: 1.5rem;
    }
    
    .feature-showcase-title i {
        font-size: 1.25rem;
    }
    
    .feature-showcase-description {
        font-size: 1rem;
    }
    
    .feature-tags {
        margin-top: 1rem;
    }
    
    .feature-tag {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    /* Automation */
    .automation-builder,
    .ai-workflow,
    .data-objects,
    .chart-container {
        padding: 20px;
    }
    
    .automation-node {
        padding: 12px;
    }
    
    .node-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .node-title {
        font-size: 0.8125rem;
    }
    
    .node-subtitle {
        font-size: 0.875rem;
    }
    
    .automation-split {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Stats */
    .scale-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 40px 0;
    }
    
    .scale-number {
        font-size: 3rem;
    }
    
    .scale-label {
        font-size: 0.9375rem;
    }
    
    /* Security */
    .security-badges {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 40px;
    }
    
    .security-badge {
        padding: 20px;
        min-width: 140px;
    }
    
    /* Automation Editor */
    .automation-editor-section {
        padding: 40px 0;
    }
    
    .automation-editor-demo {
        min-height: 600px;
    }
    
    .workflow-card {
        min-width: 260px;
        left: 10px !important;
        right: 10px !important;
        transform: translateX(0) !important;
    }
    
    .workflow-card.trigger-card {
        top: 80px;
    }
    
    .workflow-card.action-card {
        bottom: 80px;
    }
    
    .card-header {
        padding: 12px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .card-name {
        font-size: 0.875rem;
    }
    
    .card-hint {
        font-size: 0.6875rem;
    }
    
    .connect-prompt-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .automation-features {
        gap: 20px;
        margin-top: 40px;
    }
    
    /* Pricing */
    .pricing-section {
        padding: 40px 0;
    }
    
    .billing-toggle-wrapper {
        margin: 20px 0;
    }
    
    .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        padding: 6px;
    }
    
    .billing-option {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .pricing-grid {
        margin: 20px 0 40px;
    }
    
    .pricing-header,
    .pricing-price,
    .pricing-cta,
    .pricing-features,
    .pricing-support {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .pricing-header {
        padding-top: 24px;
    }
    
    .pricing-plan-name {
        font-size: 1.5rem;
    }
    
    .pricing-plan-description {
        font-size: 0.8125rem;
    }
    
    .price-label {
        font-size: 1.5rem;
    }
    
    .price-current .amount {
        font-size: 2rem;
    }
    
    .price-current .currency {
        font-size: 1rem;
    }
    
    .price-current .decimals {
        font-size: 1.25rem;
    }
    
    .btn-pricing {
        padding: 12px 20px;
    }
    
    .feature-item {
        font-size: 0.8125rem;
    }
    
    .pricing-faq {
        margin-top: 40px;
    }
    
    .faq-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .faq-item i {
        font-size: 1.25rem;
    }
    
    .faq-item strong {
        font-size: 0.9375rem;
    }
    
    .faq-item p {
        font-size: 0.875rem;
    }
    
    /* Final CTA */
    .final-cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .final-cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-final-cta-primary,
    .btn-final-cta-secondary {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-landing {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
    .hero-title-large {
        font-size: 1.75rem;
    }
    
    .section-title-large {
        font-size: 1.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .scale-number {
        font-size: 2.5rem;
    }
    
    .workflow-card {
        min-width: 240px;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
    }
}


/* ==============================================
   NEWSLETTER SECTION
   ============================================== */

.newsletter-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0e1328 0%, #1a1f3a 50%, #0e1328 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    filter: blur(120px);
}

.newsletter-preview {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Email Editor */
.email-editor {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.editor-header {
    background: var(--dark-surface);
    padding: 16px 20px;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.editor-tabs {
    display: flex;
    gap: 8px;
}

.editor-tab {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.editor-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.editor-tab.active {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: var(--accent-primary);
}

.editor-tab i {
    font-size: 1rem;
}

.editor-actions {
    display: flex;
    gap: 8px;
}

.editor-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.editor-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.editor-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.editor-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

/* Email Canvas */
.email-canvas {
    padding: 40px;
    background: linear-gradient(135deg, #161b2e 0%, #1a1f3a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Email Card Preview */
.email-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: emailSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes emailSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.email-header-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 24px;
    color: white;
}

.email-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.email-hero {
    padding: 32px 24px;
    text-align: center;
    color: #1a1f3a;
    background: #f9fafb;
}

.email-hero h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1f3a;
}

.email-hero p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.email-content {
    padding: 24px;
    background: white;
}

.email-section {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: sectionFadeIn 0.6s ease forwards;
}

.email-section:nth-child(1) {
    animation-delay: 0.3s;
}

.email-section:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.email-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 8px;
    flex-shrink: 0;
    animation: imagePulse 3s ease-in-out infinite;
}

@keyframes imagePulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.email-text {
    flex: 1;
}

.text-line {
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 8px;
    animation: lineShimmer 2s ease-in-out infinite;
}

.text-line.short {
    width: 60%;
}

@keyframes lineShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.email-cta {
    padding: 24px;
    background: white;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.cta-button {
    padding: 12px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: ctaBounce 3s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.cta-button:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

/* Sending Animation Overlay */
.sending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 19, 40, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    animation: overlayFadeIn 0.5s ease forwards 3s;
}

@keyframes overlayFadeIn {
    to {
        opacity: 1;
        pointer-events: auto;
    }
}

.sending-animation {
    text-align: center;
}

.envelope-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: envelopeBounce 1s ease-in-out infinite;
    position: relative;
}

@keyframes envelopeBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.send-particles {
    position: relative;
    height: 60px;
    margin-bottom: 24px;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    left: 50%;
    top: 0;
    animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) {
    animation-delay: 0s;
    left: 40%;
}

.particle:nth-child(2) {
    animation-delay: 0.2s;
    left: 45%;
}

.particle:nth-child(3) {
    animation-delay: 0.4s;
    left: 50%;
}

.particle:nth-child(4) {
    animation-delay: 0.6s;
    left: 55%;
}

.particle:nth-child(5) {
    animation-delay: 0.8s;
    left: 60%;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(1.5);
    }
}

.sending-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    animation: progressFill 2s ease-in-out infinite;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Newsletter Stats */
.newsletter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: statCardSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

@keyframes statCardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-icon.primary {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-primary);
}

.stat-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-trend {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-trend.up {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-trend.down {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Responsive */
@media (max-width: 991px) {
    .newsletter-section {
        padding: 80px 0;
    }

    .email-canvas {
        padding: 20px;
        min-height: 400px;
    }

    .email-card {
        max-width: 100%;
    }

    .newsletter-stats {
        grid-template-columns: 1fr;
    }

    .editor-tabs {
        flex-wrap: wrap;
    }

    .editor-tab {
        font-size: 0.8125rem;
        padding: 6px 12px;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .email-canvas {
        padding: 16px;
    }

    .editor-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .editor-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .progress-bar {
        width: 200px;
    }
}

/* ==============================================
   BROADCAST LISTS SECTION
   ============================================== */

.broadcast-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0e1328 0%, #161b2e 50%, #0e1328 100%);
    position: relative;
    overflow: hidden;
}

.broadcast-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.12) 0%, transparent 70%);
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    filter: blur(140px);
    animation: floatSlow 25s infinite ease-in-out;
}

.broadcast-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

/* Left Column - Features */
.broadcast-features-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.broadcast-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.broadcast-feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.broadcast-feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.broadcast-feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.broadcast-feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon-broadcast {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.broadcast-feature-item:hover .feature-icon-broadcast {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.feature-content-broadcast h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content-broadcast p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Right Column - Visual Animation */
.broadcast-visual-col {
    position: relative;
}

.broadcast-animation-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Broadcast Card */
.broadcast-card {
    background: linear-gradient(135deg, rgba(30, 35, 43, 0.98) 0%, rgba(22, 27, 34, 0.98) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 32px;
    max-width: 520px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(102, 126, 234, 0.1),
        0 8px 32px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
    animation: cardSlideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.broadcast-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.broadcast-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
    }
}

.broadcast-title-section h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.broadcast-title-section p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Recipients Section */
.broadcast-recipients {
    margin-bottom: 24px;
}

.recipients-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.recipients-header i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.recipients-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-recipient {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-primary);
    opacity: 0;
    animation: tagPopIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transition: all 0.3s ease;
}

.tag-recipient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

@keyframes tagPopIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tag-recipient i {
    font-size: 0.875rem;
    color: var(--accent-primary);
}

.tag-count {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 4px;
}

.recipients-total {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-primary);
}

.recipients-total strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Message Preview */
.broadcast-message-preview {
    margin-bottom: 24px;
}

.message-field {
    margin-bottom: 16px;
}

.message-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.message-input,
.message-preview-text {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Send Button */
.broadcast-send-btn-container {
    display: flex;
    justify-content: center;
}

.btn-broadcast-send {
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    animation: buttonBreathe 3s ease-in-out infinite;
}

@keyframes buttonBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
    }
}

.btn-broadcast-send:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.6);
}

.btn-broadcast-send i {
    font-size: 1.125rem;
}

/* Animated Waves */
.broadcast-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: waveExpand 4s ease-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1.3s;
}

.wave-3 {
    animation-delay: 2.6s;
}

@keyframes waveExpand {
    0% {
        width: 300px;
        height: 300px;
        opacity: 0.8;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

/* Floating Contact Avatars */
.floating-contacts {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.contact-avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 35, 43, 0.95) 0%, rgba(22, 27, 34, 0.95) 100%);
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: contactFloat 4s ease-in-out infinite;
    left: 50%;
    top: 50%;
    transform: translate(var(--x), var(--y));
    animation-delay: var(--delay);
}

@keyframes contactFloat {
    0%, 100% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) scale(0.8);
    }
    20%, 80% {
        opacity: 1;
        transform: translate(var(--x), var(--y)) scale(1);
    }
}

.contact-check {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #10b981;
    border: 3px solid rgba(14, 19, 40, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
    animation: checkPop 0.5s ease-out;
    animation-delay: calc(var(--delay) + 1s);
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes checkPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stats Floating */
.broadcast-stats-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 12;
}

.stat-float {
    position: absolute;
    background: linear-gradient(135deg, rgba(30, 35, 43, 0.98) 0%, rgba(22, 27, 34, 0.98) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    opacity: 0;
    animation: statFloatIn 1s ease-out forwards;
    left: 50%;
    top: 50%;
    transform: translate(var(--x), var(--y));
    min-width: 160px;
}

.stat-float:nth-child(1) {
    animation-delay: 2s;
}

.stat-float:nth-child(2) {
    animation-delay: 2.3s;
}

.stat-float:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes statFloatIn {
    from {
        opacity: 0;
        transform: translate(var(--x), var(--y)) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translate(var(--x), var(--y)) translateY(0);
    }
}

.stat-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-primary);
}

.stat-float-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-float-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 500;
}

.stat-float-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Counter Animation */
.counter {
    animation: countUp 2s ease-out forwards;
    animation-delay: 3s;
}

/* Tags Section */
.broadcast-tags-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.broadcast-tag {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.broadcast-tag:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .broadcast-showcase {
        gap: 60px;
    }
    
    .broadcast-animation-container {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .broadcast-section {
        padding: 80px 0;
    }
    
    .broadcast-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .broadcast-animation-container {
        min-height: 600px;
        margin-top: 40px;
    }
    
    .contact-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-float {
        min-width: 140px;
        padding: 12px 14px;
    }
    
    .stat-float-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .broadcast-section {
        padding: 60px 0;
    }
    
    .broadcast-features-col {
        gap: 24px;
    }
    
    .broadcast-feature-item {
        gap: 16px;
    }
    
    .feature-icon-broadcast {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .feature-content-broadcast h4 {
        font-size: 1rem;
    }
    
    .feature-content-broadcast p {
        font-size: 0.875rem;
    }
    
    .broadcast-animation-container {
        min-height: auto;
        padding: 20px 0;
    }
    
    .broadcast-card {
        padding: 24px;
    }
    
    .broadcast-icon-large {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .recipients-tags {
        flex-direction: column;
    }
    
    .tag-recipient {
        width: 100%;
    }
    
    .btn-broadcast-send {
        width: 100%;
        justify-content: center;
    }
    
    .contact-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .contact-check {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .stat-float {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        margin-bottom: 12px;
        animation: none !important;
        opacity: 1 !important;
    }
    
    .broadcast-stats-floating {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }
    
    .broadcast-tags-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .broadcast-tag {
        font-size: 0.8125rem;
        padding: 8px 16px;
    }
    
    .wave {
        display: none;
    }
}
