/* ==========================================================================
   NODICA V2 - COMPONENT STYLES
   Buttons, Badges, Cards, Glassmorphism, Bento Grid, Calculator & Chat
   ========================================================================== */

/* --- Badges & Pills --- */
.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 30, 66, 0.1);
    border: 1px solid rgba(255, 30, 66, 0.3);
    border-radius: var(--radius-full);
    color: var(--crimson-300);
    font-size: 0.825rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(255, 30, 66, 0.15);
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF1E42 0%, #E11D48 60%, #BE123C 100%);
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 30, 66, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 30, 66, 0.6);
    background: linear-gradient(135deg, #FF385C 0%, #FF1E42 60%, #E11D48 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 30, 66, 0.12);
    border-color: rgba(255, 30, 66, 0.4);
    color: var(--crimson-300);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn-ghost:hover {
    color: var(--pure-white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-icon {
    padding: 10px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: var(--crimson-400);
    border-color: rgba(255, 30, 66, 0.3);
    background: rgba(255, 30, 66, 0.08);
}

/* --- Header / Navigation --- */
.header-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-glass.scrolled {
    background: rgba(9, 9, 11, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 30, 66, 0.05);
    border-bottom-color: rgba(255, 30, 66, 0.15);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255, 30, 66, 0.3));
}

.logo-brand span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--pure-white);
    letter-spacing: -0.03em;
}

.logo-brand .logo-dot {
    color: var(--crimson-500);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson-500);
    transition: width var(--transition-normal);
    box-shadow: 0 0 8px var(--crimson-500);
}

.nav-link:hover, .nav-link.active {
    color: var(--pure-white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 30, 66, 0.2);
}

.mobile-menu-overlay.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

.hero-glow-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 30, 66, 0.22) 0%, rgba(225, 29, 72, 0.05) 45%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
    color: var(--pure-white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: var(--gray-300);
    max-width: 760px;
    margin: 0 auto var(--space-2xl) auto;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-pill {
    background: rgba(20, 20, 26, 0.6);
    border: 1px solid rgba(255, 30, 66, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    backdrop-filter: blur(12px);
    transition: all var(--transition-normal);
}

.stat-pill:hover {
    border-color: rgba(255, 30, 66, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 30, 66, 0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #FFFFFF, #FFA5B4, #FF1E42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Bento Grid / Spotlight Cards --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(16px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 30, 66, 0.15), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: rgba(255, 30, 66, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 30, 66, 0.18);
}

.bento-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.bento-card-body {
    position: relative;
    z-index: 2;
    flex: 1;
}

.bento-card-footer {
    position: relative;
    z-index: 2;
    margin-top: 24px;
}

.bento-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 30, 66, 0.2), rgba(20, 20, 26, 0.8));
    border: 1px solid rgba(255, 30, 66, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson-400);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 30, 66, 0.15);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 1024px) {
    .bento-col-8, .bento-col-4, .bento-col-6 {
        grid-column: span 12;
    }
}

/* --- Interactive ROI Calculator --- */
.calc-container {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 30, 66, 0.25);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 30, 66, 0.15);
    backdrop-filter: blur(20px);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .calc-container {
        padding: 24px;
    }
}

.calc-slider-group {
    margin-bottom: 28px;
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calc-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.calc-value-badge {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--crimson-400);
    background: rgba(255, 30, 66, 0.12);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 30, 66, 0.3);
}

.custom-range {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--noir-700);
    border-radius: var(--radius-full);
    outline: none;
    transition: background var(--transition-fast);
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--crimson-500);
    cursor: pointer;
    border: 2px solid var(--pure-white);
    box-shadow: 0 0 15px var(--crimson-500);
    transition: transform var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result-card {
    background: linear-gradient(145deg, rgba(25, 25, 35, 0.9), rgba(15, 15, 20, 0.95));
    border: 1px solid rgba(255, 30, 66, 0.3);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF1E42, #FF758F);
}

.calc-roi-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--pure-white);
    margin: 16px 0;
    background: linear-gradient(135deg, #FFFFFF, #FFA5B4, #FF1E42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Solutions Filter Tabs --- */
.filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
}

.filter-btn:hover {
    color: var(--pure-white);
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: var(--crimson-500);
    color: var(--pure-white);
    border-color: var(--crimson-500);
    box-shadow: 0 0 20px rgba(255, 30, 66, 0.4);
}

/* --- Solution Cards --- */
.solution-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    border-color: rgba(255, 30, 66, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 30, 66, 0.15);
}

.solution-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.solution-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.solution-card:hover .solution-img-wrapper img {
    transform: scale(1.06);
}

.solution-badge-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--crimson-300);
    border: 1px solid rgba(255, 30, 66, 0.2);
}

.solution-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* --- Comparison Table --- */
.comp-table-container {
    overflow-x: auto;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.comp-table th, .comp-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-table th {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--pure-white);
}

.comp-table .nodica-col {
    background: rgba(255, 30, 66, 0.06);
    border-left: 2px solid var(--crimson-500);
    border-right: 2px solid var(--crimson-500);
}

.comp-table tr:first-child .nodica-col {
    border-top: 2px solid var(--crimson-500);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.comp-table tr:last-child .nodica-col {
    border-bottom: 2px solid var(--crimson-500);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

/* --- Modals --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 30, 66, 0.3);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 30, 66, 0.25);
    transform: scale(0.92) translateY(20px);
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.modal-backdrop.active .modal-window {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-body {
    padding: 32px;
    flex: 1;
}

.modal-footer {
    padding: 20px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 9, 11, 0.5);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* --- AI Chat Widget & Container --- */
.chat-messages-container {
    height: 380px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(14, 14, 18, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.925rem;
    line-height: 1.5;
}

.chat-bubble-ai {
    align-self: flex-start;
    background: var(--noir-750);
    border: 1px solid rgba(255, 30, 66, 0.2);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-bubble-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #FF1E42, #BE123C);
    color: var(--pure-white);
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 30, 66, 0.25);
}

.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chat-chip {
    background: rgba(255, 30, 66, 0.08);
    border: 1px solid rgba(255, 30, 66, 0.25);
    color: var(--crimson-300);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chat-chip:hover {
    background: var(--crimson-500);
    color: var(--pure-white);
}

/* Floating AI Chat Button */
.floating-ai-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF1E42, #E11D48);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 30, 66, 0.5);
    z-index: 900;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-ai-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(255, 30, 66, 0.7);
}

/* --- Footer --- */
.site-footer {
    background: var(--noir-950);
    border-top: 1px solid rgba(255, 30, 66, 0.15);
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson-500), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

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

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; padding: 22px 4px; background: none; border: none; cursor: pointer;
    text-align: left; font-size: 1.05rem; font-weight: 600; color: var(--pure-white);
    font-family: var(--font-body); transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--crimson-300); }

.faq-chevron {
    flex-shrink: 0; color: var(--text-muted);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.faq-open .faq-chevron { transform: rotate(180deg); color: var(--crimson-400); }
.faq-item.faq-open .faq-question { color: var(--crimson-300); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 4px 24px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.floating-wa-btn {
    position: fixed; bottom: 96px; right: 28px; z-index: 998;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px 12px 14px;
    background: #25D366; color: #fff;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.4);
    font-weight: 700; font-size: 0.875rem; text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    animation: wa-enter 0.6s 1.5s both;
}
.floating-wa-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.5); }
@keyframes wa-enter { from { opacity:0; transform:translateY(16px) scale(0.9); } to { opacity:1; transform:translateY(0) scale(1); } }
@media (max-width:600px) {
    .floating-wa-btn { bottom:88px; right:16px; padding:12px; border-radius:50%; }
    .floating-wa-label { display:none; }
}

/* ============================================================
   PILLAR CARD MOCKUP PREVIEWS
   ============================================================ */
.pillar-mockup { margin-bottom: 16px; }
.pillar-mockup-inner {
    padding: 12px; background: rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
}

/* Browser */
.mock-browser { border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.mock-browser-bar { background: rgba(255,255,255,0.06); padding: 6px 10px; display: flex; gap: 5px; align-items: center; }
.mock-browser-bar span { width:7px; height:7px; border-radius:50%; display:inline-block; }
.mock-browser-bar span:nth-child(1) { background:#ff5f57; }
.mock-browser-bar span:nth-child(2) { background:#ffbd2e; }
.mock-browser-bar span:nth-child(3) { background:#28c941; }
.mock-browser-body { background: rgba(255,255,255,0.02); padding: 10px; display:flex; flex-direction:column; gap:6px; }
.mock-hero-strip { height:28px; border-radius:4px; background: linear-gradient(90deg, rgba(255,30,66,0.35) 0%, rgba(255,30,66,0.12) 100%); }
.mock-content-row { display:flex; gap:6px; }
.mock-block { flex:1; height:10px; border-radius:3px; background:rgba(255,255,255,0.07); }
.mock-block.wide { flex:2; }

/* Chat */
.mock-chat { display:flex; flex-direction:column; gap:6px; margin-bottom:10px; }
.mock-bubble { font-size:0.72rem; padding:5px 9px; border-radius:10px; line-height:1.3; max-width:85%; }
.mock-ai { background:rgba(255,255,255,0.07); color:rgba(255,255,255,0.6); align-self:flex-start; border-bottom-left-radius:2px; }
.mock-user { background:rgba(255,30,66,0.22); color:var(--crimson-200); align-self:flex-end; border-bottom-right-radius:2px; }
.mock-cursor { animation: blink 1s step-end infinite; color:var(--crimson-400); }
@keyframes blink { 50% { opacity:0; } }
.mock-metric-row { display:flex; gap:8px; }
.mock-metric { flex:1; background:rgba(255,255,255,0.04); border-radius:5px; padding:6px 8px; display:flex; flex-direction:column; gap:2px; }
.mock-num { font-family:var(--font-mono); font-size:0.85rem; font-weight:800; color:var(--pure-white); }
.mock-num.green { color:#4ade80; }
.mock-num.red   { color:var(--crimson-300); }
.mock-lbl { font-size:0.65rem; color:var(--text-muted); }

/* Dashboard */
.mock-dashboard { display:flex; flex-direction:column; gap:8px; }
.mock-dash-row { display:flex; gap:8px; }
.mock-kpi { flex:1; background:rgba(255,255,255,0.04); border-radius:5px; padding:6px; display:flex; flex-direction:column; gap:2px; text-align:center; }
.mock-bar-row { display:flex; gap:4px; align-items:flex-end; height:32px; }
.mock-bar { flex:1; background:linear-gradient(to top, rgba(255,30,66,0.5) 0%, rgba(255,30,66,0.12) 100%); border-radius:3px 3px 0 0; height:100%; }

/* Design */
.mock-design { display:flex; flex-direction:column; gap:8px; }
.mock-palette { display:flex; gap:5px; align-items:center; }
.mock-palette span { width:18px; height:18px; border-radius:4px; display:inline-block; border:1px solid rgba(255,255,255,0.1); }
.mock-image-grid { display:grid; grid-template-columns:1fr 1.4fr 1fr; gap:4px; }
.mock-img-block { background:linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border-radius:4px; height:30px; }
.mock-img-block.tall { height:48px; }
