/* ============================================
   NEXUS CRM - LANDING PAGE STYLES
   Modern, Tech-focused, Dynamic Effects
   ============================================ */

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #06b6d4;
    --accent: #f472b6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --bg-dark: #0f0a1f;
    --bg-darker: #070412;
    --bg-card: rgba(139, 92, 246, 0.08);
    --bg-card-hover: rgba(139, 92, 246, 0.15);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    --border-color: rgba(139, 92, 246, 0.2);
    --glow: 0 0 40px rgba(139, 92, 246, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Logo Styles */
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meta-badge {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
    border-color: #3b82f6;
}

/* ============================================
   META PARTNER BANNER
   ============================================ */

.meta-banner {
    padding: 2rem;
    background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
    margin: 0;
}

.meta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.meta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 600px;
}

.meta-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.meta-logo-item {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.meta-logo-item.nexus {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: white;
}

.meta-logo-item.nexus img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ============================================
   ALL FEATURES - MEGA GRID
   ============================================ */

.all-features-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
}

.mega-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.mega-feature-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.mega-feature-category:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.mini-feature:hover {
    background: rgba(139, 92, 246, 0.15);
    color: var(--text-primary);
}

.mini-feature.highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--primary);
    color: var(--text-primary);
}

.mini-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================
   ENHANCED INTEGRATIONS
   ============================================ */

.integration-hub {
    position: relative;
    height: 200px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
    animation: pulse 2s infinite;
    z-index: 2;
}

.hub-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 80px rgba(139, 92, 246, 0.8);
    }
}

.hub-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 2px;
    width: 150px;
    top: 50%;
    left: 50%;
    animation: signal 2s infinite ease-in-out;
}

.connection-line.line-1 {
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0s;
}

.connection-line.line-2 {
    transform: translate(-50%, -50%) rotate(90deg);
    animation-delay: 0.5s;
}

.connection-line.line-3 {
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 1s;
}

.connection-line.line-4 {
    transform: translate(-50%, -50%) rotate(-45deg);
    animation-delay: 1.5s;
}

@keyframes signal {

    0%,
    100% {
        opacity: 0.3;
        width: 100px;
    }

    50% {
        opacity: 1;
        width: 200px;
    }
}

.integrations-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.integration-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.integration-icon {
    font-size: 2.5rem;
}

.integration-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.integration-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Use Cases */
.use-cases {
    margin-top: 3rem;
    text-align: center;
}

.use-cases h3 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.use-case-tag {
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.use-case-tag:hover {
    border-color: var(--primary);
    color: var(--text-primary);
    background: var(--bg-card-hover);
}

/* Comparison Note */
.comparison-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.comparison-note strong {
    color: var(--success);
    font-size: 1.25rem;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0a2e 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s infinite ease-in-out;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(15, 10, 31, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle strong {
    color: var(--primary-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.7rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    flex: 1;
    animation: fadeInRight 1s ease-out 0.5s backwards;
}

.dashboard-preview {
    background: rgba(15, 10, 31, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--glow), 0 25px 50px rgba(0, 0, 0, 0.5);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.preview-dots span:first-child {
    background: #ef4444;
}

.preview-dots span:nth-child(2) {
    background: #f59e0b;
}

.preview-dots span:last-child {
    background: #10b981;
}

.preview-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.preview-content {
    display: flex;
    min-height: 300px;
}

.preview-sidebar {
    width: 160px;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.sidebar-item.active {
    background: var(--primary);
    color: white;
}

.preview-main {
    flex: 1;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-content: start;
}

.preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-card.green {
    border-color: rgba(16, 185, 129, 0.3);
}

.preview-card.purple {
    border-color: rgba(139, 92, 246, 0.3);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.preview-card.green .card-value {
    color: var(--success);
}

.preview-card.purple .card-value {
    color: var(--primary-light);
}

.card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   DYNAMIC DASHBOARD SCENES
   ============================================ */

.preview-scene {
    display: none;
    flex: 1;
    padding: 1rem;
    animation: fadeIn 0.5s ease-out;
}

.preview-scene.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scene-content {
    height: 100%;
}

/* IA Config Scene */
.ia-scene {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ia-config {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}

.config-header {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.config-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

.config-item span {
    color: var(--text-muted);
    min-width: 60px;
}

.config-item input,
.config-item select {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    color: var(--text-primary);
    font-size: 0.75rem;
}

.ia-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-box.green span {
    color: var(--success);
}

.stat-box small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Atendimento Scene */
.atendimento-scene {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.channels {
    display: flex;
    gap: 0.5rem;
}

.channel {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 0.7rem;
    text-align: center;
    position: relative;
}

.channel.active {
    background: var(--bg-card);
    border-color: var(--primary);
}

.channel .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
    border-radius: 100px;
}

.chat-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.msg {
    max-width: 80%;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
}

.msg.received {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    align-self: flex-start;
}

.msg.sent {
    background: var(--primary);
    color: white;
    align-self: flex-end;
}

.msg.sent.ai {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Funil Scene */
.funil-scene {
    display: flex;
    justify-content: center;
    align-items: center;
}

.funil-nodes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.fnode {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 500;
}

.fnode.trigger {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: white;
}

.fnode.action {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.fnode.condition {
    background: linear-gradient(135deg, var(--secondary), #0891b2);
    color: white;
}

.fnode.small {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.fconnector {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fconnector.branch {
    letter-spacing: 10px;
}

.fbranch {
    display: flex;
    gap: 1rem;
}

/* Kanban Scene */
.kanban-scene {
    display: flex;
    justify-content: center;
}

.kanban-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.kcol {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
}

.kcol-header {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem;
    background: var(--bg-card);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    text-align: center;
}

.kcard {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
    transition: all 0.3s;
}

.kcard.moving {
    border-color: var(--warning);
    animation: cardPulse 1.5s infinite;
}

.kcard.done {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

@keyframes cardPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Jornadas Scene */
.jornadas-scene {
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.jstep {
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.7rem;
}

.jstep.done {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.jstep.current {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.15);
    animation: stepPulse 1.5s infinite;
}

.jstep.pending {
    opacity: 0.5;
}

@keyframes stepPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(245, 158, 11, 0);
    }
}

/* Smart Bio Scene */
.smartbio-scene {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-preview {
    width: 100%;
    max-width: 200px;
    background: linear-gradient(135deg, #1a0a2e, var(--bg-dark));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
}

.bio-avatar {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.bio-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}

.bio-stats {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bio-stats span {
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   INTEGRATIONS HUB WITH ENERGY LINES
   ============================================ */

.integrations-hub-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 150px 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.integration-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.energy-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: energyFlow 2s infinite linear;
    border-radius: 100px;
    box-shadow: 0 0 10px var(--primary);
}

[data-position^="left"] .energy-line {
    right: -20px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

[data-position^="right"] .energy-line {
    left: -20px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

[data-position="left-1"] .energy-line {
    animation-delay: 0s;
}

[data-position="left-2"] .energy-line {
    animation-delay: 0.3s;
}

[data-position="left-3"] .energy-line {
    animation-delay: 0.6s;
}

[data-position="right-1"] .energy-line {
    animation-delay: 0.9s;
}

[data-position="right-2"] .energy-line {
    animation-delay: 1.2s;
}

[data-position="right-3"] .energy-line {
    animation-delay: 1.5s;
}

@keyframes energyFlow {
    0% {
        background-position: 200% 0;
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        background-position: -200% 0;
        opacity: 0.3;
    }
}

.hub-center-main {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 4;
}

.hub-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation: glowPulse 2s infinite ease-in-out;
    border-radius: 50%;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.hub-center-main .hub-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.integration-card-wrap .integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
    min-width: 100px;
}

.integration-card-wrap .integration-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.integration-card-wrap .integration-icon {
    font-size: 1.75rem;
}

.integration-card-wrap .integration-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.integration-card-wrap .integration-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Responsive integrations hub */
@media (max-width: 1024px) {
    .integrations-hub-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .hub-center-main {
        grid-column: 1 / -1;
        justify-self: center;
        margin: 1rem 0;
    }

    .energy-line {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.05) 50%, transparent 100%);
}

.problem-section .section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.title-icon {
    font-size: 2rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.solution-banner {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.solution-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.solution-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 8rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.large {
    grid-column: span 2;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon-wrapper.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon-wrapper.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon-wrapper.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon-wrapper.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.feature-icon-wrapper.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-icon-wrapper.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.3rem 0.75rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ============================================
   INTEGRATION SECTION
   ============================================ */

.integration-section {
    padding: 6rem 2rem;
    background: var(--bg-card);
}

.integrations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s;
    min-width: 120px;
}

.integration-logo:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.integration-logo span:first-child {
    font-size: 2.5rem;
}

.integration-logo span:last-child {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
    padding: 8rem 2rem;
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.comparison-header {
    background: rgba(139, 92, 246, 0.15);
    padding: 1.5rem 2rem;
    font-weight: 700;
}

.comparison-row {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border-color);
    transition: background 0.3s;
}

.comparison-row:hover {
    background: var(--bg-card-hover);
}

.comparison-feature {
    color: var(--text-secondary);
}

.comparison-nexus {
    color: var(--success);
    font-weight: 600;
}

.comparison-others {
    color: var(--text-muted);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price-decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--bg-card-hover);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.btn-pricing:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.btn-pricing.featured:hover {
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 8rem 2rem;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content>p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   AI SECTION
   ============================================ */

.ai-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, transparent 50%, rgba(6, 182, 212, 0.05) 100%);
}

.ai-tag {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-color: var(--primary);
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ai-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.ai-feature-card.main {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: var(--primary);
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.ai-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ai-icon-wrapper.small {
    width: 50px;
    height: 50px;
    border-radius: 14px;
}

.ai-icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ai-icon-wrapper.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ai-icon {
    font-size: 2rem;
}

.ai-icon-wrapper.small .ai-icon {
    font-size: 1.5rem;
}

.ai-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ai-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ai-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ai-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ai-demo {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
}

.chat-bubble {
    padding: 1rem 1.25rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    max-width: 90%;
}

.chat-bubble.user {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-left: auto;
}

.chat-bubble.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--primary);
}

.ai-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.metric-display {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   AUTOMATION SECTION
   ============================================ */

.automation-section {
    padding: 8rem 2rem;
}

.automation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.automation-text .section-tag {
    margin-bottom: 1rem;
}

.automation-text .section-title {
    margin-bottom: 1.5rem;
}

.automation-text>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.automation-triggers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trigger-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.trigger-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.trigger-icon {
    font-size: 1.5rem;
}

.trigger-text {
    display: flex;
    flex-direction: column;
}

.trigger-text strong {
    font-size: 0.95rem;
}

.trigger-text span {
    font-size: 0.85rem;
    color: var(--primary-light);
}

.automation-visual {
    display: flex;
    justify-content: center;
}

.flow-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-node {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.flow-node.trigger {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: white;
}

.flow-node.condition {
    background: linear-gradient(135deg, var(--secondary), #0891b2);
    color: white;
}

.flow-node.action {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.flow-branch {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.flow-path {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-label {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.flow-path.yes .flow-label {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.flow-path.no .flow-label {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

/* ============================================
   FUNNEL SECTION
   ============================================ */

.funnel-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(245, 158, 11, 0.05) 50%, transparent 100%);
}

.funnel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.funnel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.funnel-card:hover {
    border-color: var(--warning);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.2);
}

.funnel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.funnel-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.funnel-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   ENHANCED COMPARISON
   ============================================ */

.comparison-row.highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.15));
}

.comparison-row.highlight .comparison-nexus {
    font-size: 1.1rem;
}

/* ============================================
   ENHANCED FEATURES
   ============================================ */

.feature-icon-wrapper.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.preview-card .card-icon {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.preview-card.ai-card {
    border-color: rgba(6, 182, 212, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.cta-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* ============================================
   RESPONSIVE - AI & AUTOMATION
   ============================================ */

@media (max-width: 1024px) {
    .ai-feature-card.main {
        grid-column: span 1;
    }

    .automation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .automation-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .flow-branch {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 4rem 2rem 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .feature-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .preview-sidebar {
        display: none;
    }

    .preview-main {
        grid-template-columns: 1fr;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-feature {
        font-weight: 600;
        color: var(--text-primary);
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}