:root {
    /* Premium Tech Palette */
    --bg-base: #030305;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    
    --primary: #A855F7; /* Electric Purple */
    --primary-glow: rgba(168, 85, 247, 0.6);
    --secondary: #06B6D4; /* Cyber Cyan */
    --secondary-glow: rgba(6, 182, 212, 0.6);
    
    --accent-gradient: linear-gradient(135deg, var(--secondary), var(--primary));
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-base);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Global Atmosphere Components */
.atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid-layer {
    position: absolute;
    inset: -50px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    will-change: transform;
    transition: transform 0.1s linear;
}

.dot-grid-layer {
    position: absolute;
    inset: -50px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 10%, transparent 70%);
    will-change: transform;
    transition: transform 0.1s linear;
}

.orbs-layer {
    position: absolute;
    inset: 0;
    filter: blur(120px);
    will-change: transform;
    transition: transform 0.1s linear;
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    mix-blend-mode: screen;
}

.orb-violet {
    width: 55vw;
    height: 55vw;
    background: var(--primary);
    top: -15%;
    left: -15%;
    animation: orbDrift1 30s infinite alternate ease-in-out;
}

.orb-cyan {
    width: 45vw;
    height: 45vw;
    background: var(--secondary);
    bottom: -15%;
    right: -15%;
    animation: orbDrift2 35s infinite alternate ease-in-out;
}

.orb-blue {
    width: 35vw;
    height: 35vw;
    background: #3B82F6;
    top: 40%;
    right: -10%;
    opacity: 0.06;
    animation: orbDrift3 28s infinite alternate ease-in-out;
}

.orb-magenta {
    width: 30vw;
    height: 30vw;
    background: #EC4899;
    bottom: 20%;
    left: -5%;
    opacity: 0.05;
    animation: orbDrift4 32s infinite alternate ease-in-out;
}

@keyframes orbDrift1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.05); }
    66% { transform: translate(-30px, 80px) scale(1.1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}

@keyframes orbDrift2 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.08); }
    66% { transform: translate(40px, -60px) scale(0.95); }
    100% { transform: translate(-70px, -50px) scale(1.12); }
}

@keyframes orbDrift3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 50px) scale(1.1); }
    100% { transform: translate(30px, -40px) scale(0.95); }
}

@keyframes orbDrift4 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(70px, -30px) scale(1.05); }
    100% { transform: translate(-20px, 60px) scale(1.1); }
}

/* Floating particles */
.particles-layer {
    position: absolute;
    inset: 0;
    will-change: transform;
    transition: transform 0.1s linear;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(168, 85, 247, 0.3);
    animation: particleFloat 20s infinite ease-in-out;
}

.particle:nth-child(1) { top: 15%; left: 20%; animation-duration: 22s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { top: 35%; left: 70%; animation-duration: 18s; animation-delay: -5s; width: 4px; height: 4px; box-shadow: 0 0 8px 3px rgba(6, 182, 212, 0.4); }
.particle:nth-child(3) { top: 60%; left: 40%; animation-duration: 25s; animation-delay: -8s; width: 3px; height: 3px; }
.particle:nth-child(4) { top: 80%; left: 15%; animation-duration: 20s; animation-delay: -3s; width: 2px; height: 2px; }
.particle:nth-child(5) { top: 25%; left: 85%; animation-duration: 28s; animation-delay: -12s; width: 3px; height: 3px; box-shadow: 0 0 8px 3px rgba(168, 85, 247, 0.4); }
.particle:nth-child(6) { top: 50%; left: 55%; animation-duration: 23s; animation-delay: -7s; width: 4px; height: 4px; }
.particle:nth-child(7) { top: 70%; left: 80%; animation-duration: 19s; animation-delay: -2s; width: 3px; height: 3px; box-shadow: 0 0 8px 3px rgba(6, 182, 212, 0.35); }
.particle:nth-child(8) { top: 10%; left: 50%; animation-duration: 26s; animation-delay: -15s; width: 2px; height: 2px; }
.particle:nth-child(9) { top: 90%; left: 30%; animation-duration: 21s; animation-delay: -9s; width: 3px; height: 3px; }
.particle:nth-child(10) { top: 45%; left: 10%; animation-duration: 24s; animation-delay: -4s; width: 5px; height: 5px; box-shadow: 0 0 10px 4px rgba(168, 85, 247, 0.35); }
.particle:nth-child(11) { top: 5%; left: 65%; animation-duration: 27s; animation-delay: -11s; width: 3px; height: 3px; }
.particle:nth-child(12) { top: 55%; left: 92%; animation-duration: 20s; animation-delay: -6s; width: 4px; height: 4px; box-shadow: 0 0 8px 3px rgba(6, 182, 212, 0.3); }

@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(20px, -30px) scale(1.8); opacity: 0.8; }
    50% { transform: translate(-15px, -50px) scale(1); opacity: 0.4; }
    75% { transform: translate(25px, -20px) scale(1.5); opacity: 0.7; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
}

/* Section ambient glow effects */
.benefits::before,
.demo::before,
.pricing::before,
.faq::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.benefits::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.025) 0%, transparent 70%);
    opacity: 1;
}

.demo::before {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
    opacity: 1;
}

.pricing::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.02) 0%, transparent 70%);
    opacity: 1;
}

.faq::before {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.02) 0%, transparent 70%);
    opacity: 1;
}

/* Scroll Reveal Triggers - RESTORED TO VISIBLE FOR DEBUG */
.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 1.2s ease;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #0a0a0f;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.nav-links a:hover:not(.btn) {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(168, 85, 247, 0.1);
}

/* Sections General */
section {
    position: relative;
    padding: 8rem 5%;
    background: transparent;
    z-index: 1; /* Ensure sections are always above atmosphere layer */
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10rem;
    overflow: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.15), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections General */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 8rem 5%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Demo Section */
.demo {
    padding: 8rem 5%;
    text-align: center;
}

.demo-phone {
    width: 320px;
    height: 650px;
    background: #000;
    margin: 4rem auto 0;
    border-radius: 40px;
    border: 8px solid #222;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.phone-notch {
    width: 120px;
    height: 25px;
    background: #222;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.screen-wrapper {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    display: flex;
    flex-direction: column;
}

.screen-wrapper.active {
    opacity: 1;
    pointer-events: all;
    z-index: 5;
    transform: scale(1);
}

#screen-chat {
    background: #0b141a;
    background-image: url('data:image/svg+xml,%3Csvg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Ccircle cx="25" cy="25" r="5"/%3E%3Cpath d="M0 0h50v50H0z" fill="none"/%3E%3C/g%3E%3C/svg%3E');
}

#screen-call {
    background: #111418;
    color: white;
}

.call-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 4rem 1rem 2rem;
}

.call-avatar-pulse {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 2rem 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: ringPulse 2.5s infinite cubic-bezier(0.2, 0, 0.2, 1);
    z-index: 1;
}

.ring-2 {
    animation-delay: 1s;
}

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.caller-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.call-status {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.call-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0.5rem;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 2.5rem;
    padding: 0 10px;
}

.tool-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}

.tool-cell span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: default;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tool-btn.active-tool {
    background: white;
    color: #111418;
}

.tool-btn svg {
    width: 28px;
    height: 28px;
    transition: var(--transition-smooth);
}

.tool-btn.active-tool svg {
    stroke: #111418;
}

.call-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-end {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FF3B30;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.3);
    transition: var(--transition-smooth);
}

.btn-end:hover {
    transform: scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 5.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: hidden;
}

.whatsapp-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 0.5rem;
    background: #202C33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 5;
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wa-info {
    text-align: left;
}

.wa-info h4 {
    color: #E9EDEF;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.wa-status {
    color: #8696A0;
    font-size: 0.75rem;
    display: block;
    margin-top: -2px;
}

.wa-status.typing {
    color: #25D366; /* green typing indicator */
    font-weight: 500;
}

.wa-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.agent-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
}

.agent-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    flex: 1;
    text-align: left;
    transition: var(--transition-smooth);
}

.agent-card:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.3);
}

.agent-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.agent-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #FFF;
}

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

.employee-card {
    max-width: 800px;
    margin: 2rem auto 0;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: pulseNeon 4s infinite alternate;
}

.employee-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.employee-content h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.employee-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.employee-badge {
    position: relative;
    z-index: 1;
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .agent-features {
        flex-direction: column;
    }
    
    .employee-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

.chat-bubble {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

.bubble-user {
    background: #202C33;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.bubble-ai {
    background: #005C4B; /* WhatsApp green dark */
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.final-confirmation {
    background: #004d40; /* Even darker distinct green for emphasis */
    font-weight: 700;
    border: 1px solid #00E676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}

/* Process Section */
.process {
    background: transparent;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem;
    align-self: flex-start;
    background: #202C33;
    border-radius: 15px;
    border-bottom-left-radius: 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #94A3B8;
    border-radius: 50%;
    animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Pricing Section */
.pricing {
    padding: 8rem 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pricing-card.featured {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid var(--primary);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.price span:first-child {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

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

.features {
    list-style: none;
    flex-grow: 1;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.check {
    color: var(--secondary);
    font-weight: bold;
}

.cross {
    color: #ef4444;
}

/* Coming Soon State */
.pricing-card.coming-soon {
    position: relative;
    overflow: hidden;
    background: rgba(3, 3, 5, 0.6);
    border: 1.5px solid var(--glass-border);
    transform: none !important;
    box-shadow: none !important;
}

.blurred-content {
    filter: blur(14px); /* Heavy blur to hide text */
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
}

.coming-soon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.coming-soon-text {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    display: block;
    transform: rotate(-10deg);
}

/* Custom Setup Section */
.custom-setup-container {
    max-width: 900px;
    margin: 6rem auto 0;
    padding: 3rem;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.custom-setup-header h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.custom-setup-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.custom-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.custom-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.custom-feature-item span {
    color: var(--primary);
}

.custom-feature-item:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.custom-setup-footer {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.document-section {
    padding: 10rem 5% 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.document-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.document-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.document-section p, .document-section ul {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.document-section ul {
    padding-left: 1.5rem;
}

.document-section li {
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 0 40px var(--primary-glow);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.success-message {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.success-message.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem;
    }
}

/* Footer */
footer {
    background: #0a0a0f;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* WhatsApp Floating Widget */
.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .nav-links {
        display: none;
    }
    .hero-actions {
        flex-direction: column;
    }
/* Extra Polish */
.document-section {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.document-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.document-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.document-section p, .document-section li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.document-section ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

/* Contact Dot Matrix */
.contact {
    position: relative;
    background-image: radial-gradient(rgba(168, 85, 247, 0.15) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, var(--bg-base) 80%);
    pointer-events: none;
}


/* Live Demo CTA in Demo Section */
.live-demo-cta {
    max-width: 800px;
    margin: 2.5rem auto 0;
    background: rgba(168, 85, 247, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 1.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.live-demo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,182,212,0.03), rgba(168,85,247,0.06));
    pointer-events: none;
}

.live-demo-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
    animation: livePulse 2s infinite;
    position: absolute;
    top: 1.5rem;
    left: 2.2rem;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.live-demo-cta p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

.live-demo-cta p strong {
    color: var(--text-main);
}

.live-demo-arrows {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.live-demo-arrows svg {
    color: var(--primary);
    flex-shrink: 0;
}

.live-demo-arrows span {
    color: var(--text-main);
    font-weight: 500;
}

.live-demo-divider {
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    padding: 0 0.2rem;
}

/* Floating Widget Label */
.widget-label {
    position: fixed;
    bottom: 118px;
    right: 100px;
    background: rgba(3, 3, 5, 0.92);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 50px;
    padding: 8px 14px 8px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    z-index: 9996;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(168,85,247,0.1);
    animation: labelFloat 3s ease-in-out infinite;
    cursor: default;
    pointer-events: none;
}

.widget-label svg {
    color: var(--primary);
    flex-shrink: 0;
}

.widget-label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px rgba(16,185,129,0.7);
    flex-shrink: 0;
    animation: livePulse 2s infinite;
}

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

@media (max-width: 768px) {
    .widget-label {
        display: none;
    }
    .live-demo-cta {
        padding: 1.4rem 1.2rem;
    }
    .live-demo-cta p {
        padding-left: 0;
        font-size: 0.92rem;
    }
}

/* Channels Strip */
.channels-strip {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.channels-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

.channels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.channel-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.channel-pill:hover {
    background: rgba(168,85,247,0.08);
    border-color: rgba(168,85,247,0.25);
    color: var(--text-main);
}

/* Simplified Employee Card */
.employee-card {
    max-width: 800px;
    margin: 2rem auto 0;
    background: rgba(168, 85, 247, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.employee-content h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.employee-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 480px;
}

/* Floating buttons label */
.btn-stack-label {
    position: fixed;
    bottom: 174px;
    right: 30px;
    width: 60px;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    pointer-events: none;
}

.btn-stack-label svg {
    color: rgba(168,85,247,0.6);
    animation: bounceUp 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .btn-stack-label { display: none; }
}

/* Pricing card customizable line */
.plan-customizable {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
    margin-top: 1rem;
}

.plan-customizable svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card.featured .plan-customizable {
    color: rgba(255,255,255,0.5);
    border-top-color: rgba(255,255,255,0.1);
}
