@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN TOKENS & SYSTEM VARIABLES --- */
:root {
    /* Color System */
    --color-bg: #090e0c; /* Deep Forest Gray */
    --color-bg-card: rgba(18, 26, 22, 0.4);
    --color-border: rgba(16, 185, 129, 0.15);
    --color-border-glow: rgba(139, 92, 246, 0.2);
    
    --color-text-primary: #f3f4f6; /* White-ish */
    --color-text-secondary: #9ca3af; /* Muted Gray */
    --color-text-muted: #6b7280;
    
    --color-neon-green: #10b981; /* WhatsApp/Action */
    --color-neon-green-glow: rgba(16, 185, 129, 0.4);
    
    --color-violet: #8b5cf6; /* AI Technology */
    --color-violet-glow: rgba(139, 92, 246, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

body {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* --- PREMIUM CARD & GLASSMORPHISM --- */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

.glass-card.ai-glow:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.1);
}

/* --- GLOW EFFECTS --- */
.glow-text-green {
    color: var(--color-neon-green);
    text-shadow: 0 0 12px var(--color-neon-green-glow);
}

.glow-text-purple {
    color: var(--color-violet);
    text-shadow: 0 0 12px var(--color-violet-glow);
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #a7f3d0 70%, var(--color-neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #ffffff 30%, #c084fc 70%, var(--color-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

/* --- NAVIGATION HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 14, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(9, 14, 12, 0.95);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.logo-dino-icon {
    width: 32px;
    height: 32px;
    fill: var(--color-neon-green);
    filter: drop-shadow(0 0 8px var(--color-neon-green-glow));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.nav-link:hover {
    color: var(--color-neon-green);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-neon-green);
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-neon-green);
    cursor: pointer;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.1);
}

.nav-cta:hover {
    background: var(--color-neon-green);
    color: #000;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Mobile Nav Toggle */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #0d1210;
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        z-index: 105;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-links.active {
        right: 0;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-neon-green) 0%, #059669 100%);
    color: #01140c;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -3px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
}

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

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c084fc;
    margin-bottom: 24px;
}

.hero-badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-violet);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-violet-glow);
    animation: pulse-glow 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1.05rem;
    }
}

/* --- WHATSAPP SIMULATOR INTERACTIVE --- */
.whatsapp-simulator {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: #0f1613;
    border: 4px solid #1f2925;
    border-radius: 36px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(16, 185, 129, 0.15);
    overflow: hidden;
    position: relative;
}

/* Header */
.wa-header {
    background: #121c17;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.wa-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    background: #1f3a2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-neon-green);
    border: 1px solid var(--color-border);
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.wa-status {
    font-size: 0.75rem;
    color: var(--color-neon-green);
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-status-dot {
    width: 6px;
    height: 6px;
    background: var(--color-neon-green);
    border-radius: 50%;
    animation: pulse-glow 1.5s infinite;
}

/* Body / Chat Area */
.wa-body {
    height: 420px;
    padding: 20px;
    background-image: radial-gradient(rgba(16, 185, 129, 0.03) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Messages */
.wa-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.88rem;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: pop-message 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wa-msg.incoming {
    align-self: flex-start;
    background: #1a2420;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-msg.outgoing {
    align-self: flex-end;
    background: rgba(16, 185, 129, 0.2);
    border-bottom-right-radius: 4px;
    border: 1px solid var(--color-border);
}

.wa-msg-meta {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-align: right;
    margin-top: 4px;
}

/* Typing Indicator */
.wa-typing {
    align-self: flex-start;
    background: #1a2420;
    padding: 12px 20px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    display: none;
    align-items: center;
    gap: 4px;
}

.wa-typing span {
    width: 6px;
    height: 6px;
    background: var(--color-text-secondary);
    border-radius: 50%;
    animation: type-dot 1.4s infinite;
}

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

/* Audio Message specific styling */
.wa-audio-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-audio-btn {
    width: 32px;
    height: 32px;
    background: var(--color-neon-green);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
}

.wa-audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    flex-grow: 1;
}

.wa-wave-bar {
    width: 3px;
    height: 4px;
    background: var(--color-text-secondary);
    border-radius: 2px;
    transition: height 0.15s ease;
}

.wa-wave-bar.playing {
    background: var(--color-neon-green);
    animation: wave-bounce 1s infinite alternate;
}

/* Footer / Input Bar */
.wa-footer {
    background: #121c17;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.wa-input {
    flex-grow: 1;
    background: #1a2420;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 9999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--color-text-primary);
}

.wa-send-btn {
    width: 36px;
    height: 36px;
    background: var(--color-neon-green);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
}

/* --- KANBAN SECTION --- */
.kanban-section {
    position: relative;
}

.kanban-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 20px;
}

@media (max-width: 1200px) {
    .kanban-wrapper {
        min-width: 1000px;
    }
}

.kanban-col {
    background: rgba(18, 26, 22, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.kanban-col-title {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-primary);
}

.kanban-col-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.kanban-col-count {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 10px;
    color: var(--color-text-secondary);
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.kanban-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
    cursor: grab;
    transition: var(--transition-fast);
    position: relative;
    user-select: none;
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.kanban-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.kanban-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-violet);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.kanban-card-name {
    font-size: 0.82rem;
    font-weight: 600;
}

.kanban-card-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-neon-green);
    margin-bottom: 4px;
}

.kanban-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Kanban IA Modal Simulation Overlay */
.kanban-ia-pulse {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: var(--color-violet);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-violet-glow);
    animation: pulse-glow 1.5s infinite;
}

/* Interactive Sandbox Control */
.sandbox-control {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.sandbox-btn {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--color-violet);
    color: #c084fc;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.sandbox-btn:hover {
    background: var(--color-violet);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* --- FEATURES GRID (ANTI-CLICHE ZIGZAG) --- */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

@media (max-width: 768px) {
    .features-container {
        gap: 60px;
    }
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.feature-block.reversed {
    grid-template-columns: 1.1fr 1fr;
}

.feature-block.reversed .feature-visual {
    grid-column: 1;
    grid-row: 1;
}
.feature-block.reversed .feature-info {
    grid-column: 2;
    grid-row: 1;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-neon-green);
}

.feature-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-desc {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-neon-green);
    flex-shrink: 0;
}

/* Visual Mockups inside Features */
.feature-visual {
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-ui {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f1311;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.mockup-ui-header {
    background: #141a17;
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
}

.mockup-ui-header span:nth-child(-n+3) {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.mockup-ui-header span:nth-child(1) { background: #ef4444; }
.mockup-ui-header span:nth-child(2) { background: #eab308; }
.mockup-ui-header span:nth-child(3) { background: #22c55e; }

.mockup-ui-body {
    padding: 24px;
}

/* Feature 1 Specific Audio UI */
.audio-card-ui {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.voice-selectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.voice-chip {
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
}

.voice-chip.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--color-violet);
    color: #c084fc;
}

@media (max-width: 992px) {
    .feature-block, .feature-block.reversed {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-block.reversed .feature-visual {
        grid-column: auto;
        grid-row: auto;
    }
    .feature-block.reversed .feature-info {
        grid-column: auto;
        grid-row: auto;
    }
}

/* --- PRICING SECTION --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0 auto;
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--color-violet);
    box-shadow: 0 15px 35px -10px rgba(139, 92, 246, 0.15);
}

.pricing-card.popular::before {
    content: "POPULAR / RECOMENDADO";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-violet);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-align: center;
}

.price-box {
    margin: 24px 0;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    vertical-align: top;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.price-period {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.pricing-feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-neon-green);
}

.pricing-feature-item.disabled {
    color: var(--color-text-muted);
}

.pricing-feature-item.disabled svg {
    color: var(--color-text-muted);
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-neon-green);
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.faq-answer p {
    padding-top: 8px;
    padding-bottom: 16px;
}

/* --- CTA ROW BANNER --- */
.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-banner-desc {
    color: var(--color-text-secondary);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #060908;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-top: 16px;
    max-width: 280px;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-link:hover {
    color: var(--color-neon-green);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes pop-message {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes wave-bounce {
    from {
        height: 4px;
    }
    to {
        height: 24px;
    }
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works-section {
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0 auto;
    }
}

.step-card {
    position: relative;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-neon-green);
    color: var(--color-neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.step-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CALENDAR MOCKUP --- */
.calendar-mockup {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.calendar-header-mock {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: var(--color-text-primary);
}

.calendar-grid-mock {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.calendar-day-mock {
    padding: 6px 0;
    border-radius: 6px;
    color: var(--color-text-secondary);
}

.calendar-day-mock.muted {
    color: var(--color-text-muted);
}

.calendar-day-mock.active-day {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid var(--color-violet);
    color: #c084fc;
    font-weight: 700;
}

.calendar-slots-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calendar-slot-mock {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
}

.calendar-slot-mock.booked-slot {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slot-badge-green {
    background: var(--color-neon-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 9999px;
}

/* --- SENTIMENT INDICATOR BOX --- */
.sentiment-indicator-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.sentiment-bar-container {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}

.sentiment-bar-fill {
    height: 100%;
    border-radius: 9999px;
}
