html { scroll-behavior: smooth; }

:root {
    --bg-main: #0C0F1A;
    --bg-secondary: #0D0F18;
    --bg-card: #0a0f1e;

    --primary: #3B71CB;
    --primary-hover: #2B58A3;
    --primary-dim: rgba(111, 150, 214, 0.12);

    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: rgba(255, 255, 255, 0.5);

    --glass-bg: rgba(16, 19, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --success: #22C55E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-main);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(111, 150, 214, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(111, 150, 214, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
html { overflow-x: hidden; }

/* ─── Branding ─── */
h1, h2, h3, .brand-name {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
}
h4, h5, h6 { font-family: 'Inter', sans-serif; }

.brand-name b {
    font-family: 'Michroma', sans-serif;
    font-weight: 400 !important;
}

/* ─── Background Grid ─── */
.bg-grid {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(to right, #ffffff 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(11, 13, 20, 0.85);
}
.header-inner {
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.header-brand .brand-name {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.header-nav a:hover { color: var(--text-primary); }

/* ─── Buttons ─── */
.btn-main {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.header-nav .btn-primary { color: #ffffff !important; }
.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff !important;
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 8% 60px;
    gap: 60px;
}
.hero-text .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(59, 113, 203, 0.3);
    background: var(--primary-dim);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-title {
    font-family: 'Michroma', sans-serif !important;
    font-size: 3.6rem;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 24px;
    max-width: 580px;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Workflow Visual */
.hero-visual {
    position: relative;
    width: 520px;
    flex-shrink: 0;
}
.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(88, 140, 220, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(30px);
}
.workflow-card {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 36px;
    box-shadow: var(--glass-shadow);
}
/* Workflow nodes */
.wf-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.wf-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    transition: border-color 0.3s;
}
.wf-node:hover { border-color: rgba(59, 113, 203, 0.3); }
.wf-node .wf-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wf-node .wf-icon svg {
    width: 18px; height: 18px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.wf-node .wf-text { flex: 1; }
.wf-node .wf-text .wf-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
}
.wf-node .wf-text .wf-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
.wf-node .wf-status {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}
.wf-status.active {
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
}
.wf-status.processing {
    color: var(--primary);
    background: var(--primary-dim);
}
.wf-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
}
.wf-connector svg {
    width: 16px; height: 16px;
    stroke: rgba(255,255,255,0.15);
    fill: none;
    stroke-width: 2;
}

/* Pulse animation for active node */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.wf-node.active { border-color: rgba(34, 197, 94, 0.25); }
.wf-node.active .wf-status { animation: pulse-dot 2s infinite; }

/* Impact Panel */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.impact-card {
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    padding: 24px;
    transition: border-color 0.3s;
}
.impact-card:hover { border-color: rgba(59, 113, 203, 0.25); }
.impact-metric {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.impact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.impact-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ─── Section Commons ─── */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 8%;
}
.section-label {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-heading {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 650px;
    color: #DCDCDC;
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}
.service-card {
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 32px;
    transition: box-shadow 0.3s;
}
.service-card:hover {
    box-shadow: 0 0 25px rgba(59, 113, 203, 0.15);
}
.service-icon {
    margin-bottom: 24px;
}
.service-icon svg {
    width: 36px; height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ─── Bot Products Grid ─── */
.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}
#bots .section-label {
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
#bots .section-label::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(59,113,203,0.4);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--primary);
    background: var(--glass-bg);
    padding: 32px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
    box-shadow: 0 0 25px rgba(59, 113, 203, 0.4);
}
.product-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.product-icon {
    margin-bottom: 20px;
}
.product-icon svg {
    width: 40px; height: 40px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.product-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.2;
}
.product-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}
.product-card .card-link {
    margin-top: 20px;
    color: #ffffff;
    font-size: 0.93rem;
    font-weight: 600;
    display: inline-block;
}

/* ─── About / CTA Section ─── */
.about-block {
    position: relative;
    z-index: 1;
    padding: 0 8% 100px;
}
.about-inner {
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
    padding: 70px;
    position: relative;
    overflow: hidden;
}
.about-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background: url('workflow-bg.png') center center / cover no-repeat;
    opacity: 0.25;
    mask-image: linear-gradient(to right, transparent 0%, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
    pointer-events: none;
}
.about-inner .about-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.about-inner .about-content h3 {
    font-family: 'Michroma', sans-serif;
    font-size: 2.6rem;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #DCDCDC;
}
.about-inner .about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
}

/* ─── Footer ─── */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}
.footer-inner {
    padding: 36px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand .brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    max-width: 360px;
    line-height: 1.5;
}
.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
    padding-top: 6px;
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 120px 8% 60px;
        gap: 30px;
        text-align: center;
    }
    .hero-title { font-size: 2.6rem; margin: 0 auto 20px; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-text .tag { margin: 20px; }
    .hero-visual { width: 100%; max-width: 480px; margin: 0 auto; }

    .services-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    .section-heading { font-size: 2rem; }
    .products-header { flex-direction: column; align-items: flex-start; }

    .about-inner { padding: 36px 20px; }
    .about-inner .about-content h3 { font-size: 1.8rem; }

    .header-nav { display: none; }
    .footer-inner { flex-direction: column; text-align: center; align-items: center; }
}


/* ========================================= */
/* BOTS WHATSAPP SPECIFIC STYLES             */
/* ========================================= */

html { scroll-behavior: smooth; }

:root {
    --bg-main: #0C0F1A;
    --bg-secondary: #0D0F18;
    
    --primary: #3B71CB;
    --primary-hover: #8BAEE0;
    --primary-dim: rgba(111, 150, 214, 0.12);
    --secondary: #D97706;
    --secondary-dim: rgba(217, 119, 6, 0.12);
    
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    
    --glass-bg: rgba(16, 19, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    --success: #22C55E;
    --danger: #EF4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-main);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(111, 150, 214, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(217, 119, 6, 0.04) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h3, .metric-header, .stat-number {
    font-family: 'Inter', sans-serif;
}

h2 { 
    font-family: 'Michroma', sans-serif;
    color: #DCDCDC; 
}

.brand-name { font-family: 'Michroma', sans-serif !important; font-weight: 400; letter-spacing: 0.5px; }
.brand-name b { 
    font-family: 'Michroma', sans-serif;
    font-weight: 400 !important; 
}

em { font-style: normal; color: var(--text-secondary); }
strong { color: var(--primary); font-weight: 600; }

/* Base Components */
.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary:hover {
    background: #2B58A3;
    color: #FFFFFF !important;
}
.btn-primary.large { padding: 14px 32px; font-size: 1.1rem; }

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: box-shadow 0.3s ease;
}

a.card-link {
    border: 1px solid var(--primary);
}
a.card-link:hover {
    box-shadow: 0 0 25px rgba(59, 113, 203, 0.4);
}

.badge-tag {
    color: var(--primary);
    background: var(--primary-dim);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}
.badge-tag.orange {
    color: var(--secondary);
    background: var(--secondary-dim);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.appear { opacity: 1; transform: translateY(0); }
.scroll-delay-1 { transition-delay: 0.2s; }
.scroll-delay-2 { transition-delay: 0.4s; }

/* Header — unified with homepage */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 13, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo .brand-name { font-size: 1.4rem; letter-spacing: 0.15em; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links .btn-primary { color: #ffffff !important; padding: 10px 22px; font-size: 0.88rem; }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 8% 60px;
    background: radial-gradient(circle at 70% 30%, rgba(111, 150, 214, 0.06) 0%, transparent 60%);
}
.hero-content { max-width: 600px; }
.hero-title { font-size: 4.2rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1.5px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 40px; }
.hero-cta { display: flex; align-items: center; gap: 24px; }
.rating { display: flex; flex-direction: column; font-size: 0.9rem; color: var(--text-secondary); }
.stars { color: var(--secondary); font-size: 1.2rem; letter-spacing: 2px; }
.hero-visual { position: relative; width: 450px; }

/* Chat Preview UI */
.chat-preview { padding: 24px; padding-top: 15px; }
.chat-header { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; margin-bottom: 20px; }
.avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), #5B3FD4); border-radius: 50%; }
.chat-info { display: flex; flex-direction: column; }
.chat-info span { font-size: 0.8rem; color: var(--success); }
.message { padding: 12px 16px; border-radius: 12px; margin-bottom: 15px; font-size: 0.95rem; max-width: 85%; }
.message.incoming { background: rgba(255, 255, 255, 0.04); align-self: flex-start; border-bottom-left-radius: 4px; }
.message.outgoing { background: var(--primary-dim); border: 1px solid rgba(111, 150, 214, 0.2); margin-left: auto; border-bottom-right-radius: 4px; }
.message.glow { box-shadow: 0 0 15px rgba(111, 150, 214, 0.15); }
.dot { display: inline-block; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; margin-right: 4px; animation: bounce 1.4s infinite ease-in-out both; }
.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Floating Stats */
.floating-stat { position: absolute; bottom: -30px; left: -40px; padding: 20px; display: flex; align-items: center; gap: 20px; width: 380px; border: 1px solid rgba(111, 150, 214, 0.15); }
.stat-number { font-size: 2.5rem; color: var(--primary); line-height: 1; }
.stat-text { font-size: 0.9rem; color: var(--text-secondary); }

/* Metrics Section */
.metrics-section {
    padding: 160px 8%;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.metrics-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('whatsapp-bg.png') center center / cover no-repeat;
    opacity: 0.22;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at right, black 30%, transparent 65%);
    pointer-events: none;
}
.metrics-section .section-container { position: relative; z-index: 2; }

/* Soluciones - link blanco */
#soluciones .card-link span,
#soluciones a.card-link span[style],
.card-link span[style*="color"] { color: #ffffff !important; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; max-width: 800px; }
.section-desc { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 60px; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.metric-card { padding: 30px; transition: transform 0.3s; }
.metric-card:hover { box-shadow: none; }
.metric-header { font-size: 3.5rem; color: var(--primary); margin-bottom: 15px; line-height: 1; }

/* Feature Sections */
.feature-section { display: flex; align-items: center; justify-content: space-between; padding: 160px 8%; gap: 60px; }
.feature-content { flex: 1; max-width: 550px; }
.feature-title { font-size: 2.8rem; margin-bottom: 24px; line-height: 1.2; }
.feature-desc { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 30px; }
.feature-list { list-style: none; }
.feature-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1rem; }
.feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.feature-image { flex: 1; position: relative; display: flex; justify-content: center; }

/* Feature UI Mockups */
.metric-showcase, .calendar-preview { padding: 30px; width: 100%; max-width: 450px; }
.status-row { font-family: 'JetBrains Mono', monospace; font-weight: bold; color: var(--primary); border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.status-indicator { width: 10px; height: 10px; background-color: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }
.data-row { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.data-row strong { display: inline-block; width: 130px; color: var(--text-secondary); font-weight: 400; }
.status-synced { color: var(--success); font-weight: 500; margin-top: 15px; border: none; }

.calendar-header { font-size: 1.2rem; margin-bottom: 20px; text-align: center; color: var(--primary); }
.slot { padding: 15px; border-radius: 10px; margin-bottom: 10px; text-align: center; font-weight: 500; }
.slot.booked { background: rgba(255,255,255,0.03); color: var(--text-secondary); }
.slot.available { background: var(--primary-dim); color: var(--primary); border: 1px solid rgba(111, 150, 214, 0.2); }
.slot-action { margin-top: 25px; text-align: center; font-style: italic; color: #94A3B8; }

/* Remarketing Section */
.remarketing-section { padding: 160px 8%; display: flex; justify-content: center; }
.remarketing-container { background: var(--bg-secondary); border: 1px solid var(--glass-border); border-radius: 24px; padding: 60px; max-width: 1000px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.remarketing-header { max-width: 700px; margin-bottom: 50px; }
.message-bubble { padding: 25px 35px; font-size: 1.1rem; text-align: left; max-width: 600px; }
.message-bubble em { color: var(--primary); font-style: normal; background: var(--primary-dim); padding: 2px 6px; border-radius: 4px; }
.notificationglow { box-shadow: 0 0 40px rgba(111, 150, 214, 0.1); position: relative; border: 1px solid rgba(111, 150, 214, 0.2); }
.notificationglow::before { content: 'Hace 48hs ↓'; position: absolute; top: -30px; color: var(--text-secondary); font-size: 0.85rem; }

/* Platform Banner */
.platform-banner {
    padding: 160px 8%;
    background: linear-gradient(180deg, rgba(12,15,26,0) 0%, rgba(59,113,203,0.04) 50%, rgba(12,15,26,0) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.platform-banner .section-container { max-width: none; margin: 0; }
.platform-banner .platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.platform-banner .platform-header .win-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #0078D4 0%, #00BCF2 100%);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0,120,212,0.3);
}
.platform-banner .platform-header .win-icon svg { width: 20px; height: 20px; }
.platform-banner .platform-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 35px;
    max-width: 750px;
}
.platform-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}
.platform-highlight-card {
    background: rgba(16, 19, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px 26px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.platform-highlight-card:hover {
    border-color: rgba(59,113,203,0.3);
    box-shadow: 0 0 20px rgba(59,113,203,0.1);
}
.platform-highlight-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.platform-highlight-card h4 .hl-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.platform-highlight-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}
.compat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.compat-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.compat-badge.ok {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.compat-badge.no {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

/* Footer — identical to homepage */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
}
.footer-inner {
    padding: 36px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand .brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    display: block;
}
.footer-brand p {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}
.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .header { justify-content: center; padding: 20px 8%; top: 0 !important; margin: 0 !important; }
    .hero, .feature-section, .metrics-section, .common-features, .remarketing-section {
        flex-direction: column; padding: 80px 8%; text-align: center; gap: 30px;
    }
    .hero-title, .section-title, .feature-title { font-size: 2.6rem; line-height: 1.1; margin-bottom: 20px; }
    .hero-cta { justify-content: center; flex-direction: column; margin-bottom: 40px; }
    .hero-visual, .feature-image { width: 100%; max-width: 100%; margin-top: 0; }
    .hero-visual::after { right: 0; max-width: 100%; }
    .floating-stat { position: relative; left: 0; bottom: 0; margin-top: 20px; width: 100%; }
    .metrics-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .left-layout { flex-direction: column-reverse; }
    .feature-list li { text-align: left; }
    .nav-links { display: none; }
    .footer-inner { flex-direction: column; gap: 15px; }
    .btn-primary.large { padding: 12px 24px; font-size: 1rem; white-space: normal; }
}

.bots-page h1, .bots-page h3, .metric-header, .stat-number { font-family: 'Inter', sans-serif; font-weight: 600; }
.bots-page h2 { font-family: 'Michroma', sans-serif; color: #DCDCDC; font-weight: 400; }
.bots-page .hero-title { letter-spacing: -1.5px; }

/* Feature Section Alignment Fixes for Mobile */
.feature-section.reverse { flex-direction: row-reverse; }

/* Mobile Fixes for the merged stylesheet */
@media (max-width: 992px) {
    .bots-page .hero, .feature-section, .metrics-section, .common-features, .remarketing-section {
        flex-direction: column !important; 
        padding: 80px 8%; 
        gap: 30px;
        text-align: center;
		margin-top: 20px;
    }
    
    .feature-section.reverse {
        flex-direction: column !important;
    }
    
    .hero-title, .section-title, .feature-title { font-size: 1.8rem !important; line-height: 1.2; margin-bottom: 20px; overflow-wrap: break-word; word-break: break-word; }
    
    /* Avoid overflow in homepage diagram */
    .impact-grid { grid-template-columns: 1fr; }
    .workflow-card { padding: 24px; }
    .hero-visual { width: 100%; box-sizing: border-box; }

    /* Fix chat alignment issue */
    .chat-preview, .message-bubble, .feature-list li, .feature-desc, .metric-card p, .platform-highlight-card p, .metric-showcase, .calendar-preview, .feature-image .glass-card {
        text-align: left;
    }
}
