:root {
    /* Colors */
    --bg-dark: #0a0e17;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(31, 41, 55, 0.8);
    
    --primary-color: #3b82f6; /* Blue for Data */
    --primary-glow: rgba(59, 130, 246, 0.5);
    
    --secondary-color: #8b5cf6; /* Purple for Knowledge */
    --secondary-glow: rgba(139, 92, 246, 0.5);
    
    --tertiary-color: #10b981; /* Green for Action */
    --tertiary-glow: rgba(16, 185, 129, 0.5);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --success-color: #22c55e;
    
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glass-strong: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Background Effects */
.glow-background {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Typography classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.mt-8 { margin-top: 2rem; }

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass-strong);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-white {
    background: white;
    color: var(--bg-dark);
    border: none;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(10, 14, 23, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    padding: 10rem 0 4rem;
    min-height: 900px; /* Minimum height for consistency, can grow if needed */
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #c4b5fd;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(34, 197, 94, 0.05);
    border-left: 3px solid var(--success-color);
    padding: 0.75rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-size: 0.95rem;
}

.hero-benefit i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Subpage Hero */
.subpage-hero {
    padding: 8rem 0 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    min-height: 280px;
    display: flex;
    align-items: center;
}

.subpage-hero .container {
    width: 100%;
}

.page-content-wrapper {
    min-height: 900px; /* Minimum height for consistency across all subpages */
    display: flex;
    flex-direction: column;
}

.content-section {
    padding: 1rem 0 3rem;
    background: transparent;
    flex: 1;
}

.subpage-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subpage-hero .hero-subtitle {
    max-width: 700px;
    font-size: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Visuals */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.main-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-15deg) rotateX(5deg);
    width: 100%;
    max-width: 520px;
    height: auto;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    overflow: visible;
    transition: transform 0.5s ease;
}

.main-panel:hover {
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg);
}

.panel-header {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4b5563;
}
.window-controls span:nth-child(1) { background: #ef4444; }
.window-controls span:nth-child(2) { background: #eab308; }
.window-controls span:nth-child(3) { background: #22c55e; }

.panel-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.panel-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-row {
    display: flex;
    gap: 1rem;
}

.stat-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card i {
    font-size: 2rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.stat-val {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Sync Animation (Hub & Spoke) */
.sync-animation {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 1rem auto 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    overflow: visible;
}

.sync-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    z-index: 2;
    width: 80px;
    text-align: center;
}

.sync-node i {
    font-size: 1.8rem;
    color: #94a3b8;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.sync-node.brain {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.sync-node.brain i {
    color: var(--secondary-color);
    font-size: 2.8rem;
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(10, 14, 23, 0.8);
}

/* Node positions: all start at center, offset by pixel translate */
/* Radius = 90px. Angles: Bank=-90°, ANAF=-18°, Drive=54°, WhatsApp=126°, Email=198° */
/* Shifted downwards by approx 10px to align the ICON center with the line end, as labels add height below. */
.node-bank { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(0px, -80px); }
.node-anaf { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(85px, -18px); }
.node-drive { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(53px, 83px); }
.node-whatsapp { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(-53px, 83px); }
.node-email { top: 50%; left: 50%; transform: translate(-50%, -50%) translate(-85px, -18px); }

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--secondary-glow);
    border-radius: 50%;
    animation: pulse 2.5s infinite ease-out;
    z-index: -1;
}

/* Connecting Lines */
.sync-line {
    position: absolute;
    top: calc(50% - 1px); /* Centering the 2px line on the axis */
    left: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(139, 92, 246, 0.3));
    transform-origin: 0% 50%;
    z-index: 1;
}

/* Line Rotations - width = radius = 90px / 300px container = 30% */
.line-bank { width: 30%; transform: rotate(-90deg); }
.line-anaf { width: 30%; transform: rotate(-18deg); }
.line-drive { width: 30%; transform: rotate(54deg); }
.line-whatsapp { width: 30%; transform: rotate(126deg); }
.line-email { width: 30%; transform: rotate(198deg); }

.particle {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: shootParticle 2.5s infinite alternate ease-in-out;
}

/* Particle Colors & Delays */
.p-bank { background: #fbbf24; box-shadow: 0 0 10px #fbbf24; animation-delay: 0s; }
.p-anaf { background: #f87171; box-shadow: 0 0 10px #f87171; animation-delay: 0.5s; }
.p-email { background: #60a5fa; box-shadow: 0 0 10px #60a5fa; animation-delay: 1.2s; }
.p-whatsapp { background: #25D366; box-shadow: 0 0 10px #25D366; animation-delay: 1.8s; }
.p-drive { background: #9ca3af; box-shadow: 0 0 10px #9ca3af; animation-delay: 2.5s; }

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

@keyframes shootParticle {
    0% { left: 100%; transform: scale(0.5); }
    10% { transform: scale(1.2); }
    90% { transform: scale(1.2); }
    100% { left: 0%; transform: scale(0.5); }
}

/* Floating Elements */
.float-panel {
    position: absolute;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    border-radius: 1rem;
}

.float-1 { /* WhatsApp: Lower Left */
    top: 90%;
    right: 55%;
    animation-delay: 0s;
    z-index: 10;
}

.float-2 { /* Email: Top Left */
    top: 38%;
    right: 86%;
    transform: translateY(-50%);
    animation-delay: 3s;
    z-index: 10;
}

.float-3 { /* Bank: Top Center */
    bottom: 95%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
    z-index: 10;
}

.float-4 { /* ANAF: Top Right */
    top: 38%;
    left: 86%;
    transform: translateY(-50%);
    animation-delay: 4.5s;
    z-index: 10;
}

.float-5 { /* Drive: Lower Right */
    top: 90%;
    left: 55%;
    animation-delay: 2s;
    z-index: 10;
}

.float-panel i {
    font-size: 1.5rem;
}

.float-text span {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    white-space: nowrap;
}

.mini-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.mini-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--text-muted);
}

.width-70::after { width: 70%; background: #25D366; }
.width-80::after { width: 80%; background: #fbbf24; }
.width-85::after { width: 85%; background: #f87171; }
.width-90::after { width: 90%; background: #60a5fa; }
.width-100::after { width: 100%; background: #9ca3af; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Sections General */
section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glass-strong);
    background: var(--bg-card-hover);
}

.pillar-card.spotlight {
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
}

.pillar-card.spotlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.pillar-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
}

.blue-glow { box-shadow: 0 0 20px var(--primary-glow); color: var(--primary-color); }
.purple-glow { box-shadow: 0 0 20px var(--secondary-glow); color: var(--secondary-color); }
.green-glow { box-shadow: 0 0 20px var(--tertiary-glow); color: var(--tertiary-color); }
.red-glow { box-shadow: 0 0 20px rgba(248, 113, 113, 0.4); color: #f87171; }
.yellow-glow { box-shadow: 0 0 20px rgba(251, 191, 36, 0.4); color: #fbbf24; }
.teal-glow { box-shadow: 0 0 20px rgba(96, 165, 250, 0.4); color: #60a5fa; }
.grey-glow { box-shadow: 0 0 20px rgba(156, 163, 175, 0.3); color: #9ca3af; }
.wa-glow { box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); color: #25D366; }

.pillar-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pillar-card:nth-child(1) .pillar-title { color: var(--primary-color); }
.pillar-card:nth-child(2) .pillar-title { color: var(--secondary-color); }
.pillar-card:nth-child(3) .pillar-title { color: var(--tertiary-color); }

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    min-height: 50px;
    line-height: 1.4;
}

.pillar-features {
    list-style: none;
}

.pillar-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.pillar-features i {
    color: var(--success-color);
    margin-top: 0.2rem;
}

/* Integrations Ecosistem */
.integrations {
    background: rgba(10, 14, 23, 0.4);
    border-top: 1px solid var(--border-glass);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.integration-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 0.85rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.integration-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.integration-card.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    border-color: rgba(139, 92, 246, 0.3);
}

.integration-card.featured:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.integration-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.integration-card:nth-child(1) .integration-icon { color: #f87171; background: rgba(248, 113, 113, 0.1); }
.integration-card:nth-child(2) .integration-icon { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
.integration-card:nth-child(3) .integration-icon { color: #60a5fa; background: rgba(96, 165, 250, 0.1); }
.integration-card:nth-child(4) .integration-icon { color: #25D366; background: rgba(37, 211, 102, 0.1); }
.integration-card:nth-child(5) .integration-icon { color: #9ca3af; background: rgba(156, 163, 175, 0.1); }
.integration-card:nth-child(6) .integration-icon { color: var(--secondary-color); background: rgba(139, 92, 246, 0.1); }

.integration-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.integration-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Zero Integration */
.zero-integration {
    background: radial-gradient(ellipse at bottom left, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.z-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.steps-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.step-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
    flex: 1; /* Force equal height for all 3 steps */
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.step-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.step-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.z-panel {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.email-mockup, .ai-worker-mockup {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    border: 1px solid var(--border-glass);
    padding: 1rem;
}

.e-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.e-avatar {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.e-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.e-subject {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.attachment-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    border: 1px solid var(--border-glass-strong);
}

.z-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(3px); }
}

.ai-worker-mockup {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-worker-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transform: translateX(-100%);
    animation: scan 3s infinite;
}

@keyframes scan {
    100% { transform: translateX(100%); }
}

.ai-worker-mockup i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.spin-slow {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.ai-worker-mockup span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
}

.progress-bar-container {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: progress 2s infinite alternate ease-in-out;
}

@keyframes progress {
    0% { width: 30%; }
    100% { width: 90%; }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-top: 1px solid var(--border-glass);
    position: relative;
    padding: 3rem 0;
}

.cta-section .section-title {
    margin-bottom: 0.25rem;
}

.cta-section .mt-8 {
    margin-top: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 2rem 0 1.5rem;
    background: rgba(0,0,0,0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    max-width: 300px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-links h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar-card.spotlight { transform: scale(1); }
    .pillar-card.spotlight:hover { transform: translateY(-10px); }
    .integration-grid { grid-template-columns: repeat(2, 1fr); }
    .z-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero .container { grid-template-columns: 1fr; }
    .hero { text-align: center; padding-top: 8rem; }
    .hero-subtitle { max-width: 100%; margin: 0 auto 2rem; }
    .hero-benefit { flex-direction: column; align-items: center; text-align: center; border-left: none; border-top: 3px solid var(--success-color); border-radius: 0 0 0.75rem 0.75rem;}
    .hero-cta { justify-content: center; flex-direction: column; }
    .pillars-grid { grid-template-columns: 1fr; }
    .integration-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 1rem auto; }
}

/* Form Styles */
.form-container {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid var(--border-glass-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 0.5rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.radio-label:hover {
    color: var(--text-main);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.2s;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ span {
    color: var(--text-main);
}
