/* ============================================
   NEXA DESIGN SYSTEM
============================================ */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --navy: #1e2d4e;
    --dark: #0f172a;
    --text: #1e293b;
    --muted: #64748b;
    --border: rgba(37, 99, 235, 0.12);
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass: rgba(255, 255, 255, 0.6);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(37, 99, 235, 0.10);
    --shadow-lg: 0 12px 48px rgba(37, 99, 235, 0.18);
    --loader-bg: rgba(255, 255, 255, 0.9);
}

/* ============================================
   LOADER COMPONENT
   ============================================ */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--loader-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#loader-wrapper.show {
    opacity: 1;
    visibility: visible;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(37, 99, 235, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: rotation 1s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}

.loader::after {
    content: "N";
    font-family: var(--syne);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #f8faff;
    overflow-x: hidden;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-brand img {
    height: 38px;
    width: auto;
}

.nav-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    letter-spacing: -0.01em;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.06);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* Mobile menu toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 2rem 4rem;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 60%),
        linear-gradient(160deg, #f0f4ff 0%, #f8faff 60%, #fff7f3 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-badge span {
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 0.1rem;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-lg), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.4s ease;
}

.dashboard-preview:hover {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) scale(1.02);
}

.dp-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
    padding: 1rem 1.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dp-dot.red {
    background: #ef4444;
}

.dp-dot.yellow {
    background: #f59e0b;
}

.dp-dot.green {
    background: #10b981;
}

.dp-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: auto;
}

.dp-body {
    padding: 1.25rem;
}

.dp-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dp-metric {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    padding: 0.75rem;
}

.dp-metric-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.dp-metric-label {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
}

.dp-metric.accent .dp-metric-value {
    color: var(--accent);
}

.dp-metric.green .dp-metric-value {
    color: #10b981;
}

.dp-chart {
    background: rgba(37, 99, 235, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.dp-chart-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.dp-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.dp-bar:hover {
    opacity: 1;
}

.dp-bar.accent {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.dp-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.06);
    font-size: 0.72rem;
}

.dp-row:last-child {
    border-bottom: none;
}

.dp-row-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dp-row-name {
    flex: 1;
    color: var(--text);
    font-weight: 500;
}

.dp-row-amount {
    color: var(--navy);
    font-weight: 700;
}

.dp-row-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 600;
}

.dp-row-badge.paid {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dp-row-badge.pending {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
}

/* Floating pill badges on hero */
.float-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    border: 1px solid var(--border);
}

.float-badge .badge-icon {
    font-size: 1.1rem;
}

.float-badge.top-left {
    top: -18px;
    left: -24px;
    animation-delay: 0s;
}

.float-badge.bottom-right {
    bottom: 20px;
    right: -28px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.trust-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.trust-item svg {
    opacity: 0.6;
}

/* ---- FEATURES ---- */
.features {
    padding: 6rem 2rem;
    background: white;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.feature-icon.blue {
    background: rgba(37, 99, 235, 0.1);
}

.feature-icon.orange {
    background: rgba(249, 115, 22, 0.1);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.feature-icon.teal {
    background: rgba(20, 184, 166, 0.1);
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.1);
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ---- HOW IT WORKS ---- */
.how {
    padding: 6rem 2rem;
    background: linear-gradient(160deg, #f0f4ff 0%, #f8faff 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 auto 1.25rem;
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    letter-spacing: -0.02em;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ---- METRICS SECTION ---- */
.metrics {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.metrics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

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

.metric-block {
    text-align: center;
    padding: 1.5rem;
}

.metric-big {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-big .accent {
    color: var(--accent);
}

.metric-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(160deg, #f0f4ff 0%, #fff7f3 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(37, 99, 235, 0.06);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.5);
    padding: 5rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 260px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: white;
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .dashboard-preview {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .dashboard-preview:hover {
        transform: scale(1.01);
    }

    .float-badge.top-left {
        display: none;
    }

    .float-badge.bottom-right {
        right: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 0.25rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 90px 1.25rem 3rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .trust-items {
        gap: 1rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }
}

/* ---- SERVICES SECTION ---- */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(160deg, #f0f4ff 0%, #f8faff 50%, #fff7f3 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 6px 32px rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: white;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 56px rgba(37, 99, 235, 0.20);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

/* Hover overlay with description */
.service-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.0) 0%, rgba(15, 23, 42, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover .service-hover-overlay {
    opacity: 1;
}

.service-hover-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Card footer */
.service-footer {
    padding: 1.25rem 1.5rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(37, 99, 235, 0.08);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.service-tagline {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
}

.service-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.service-card:hover .service-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(3px);
}

/* Primary / flagship card styling */
.service-card--primary {
    border: 2px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.16);
}

.service-primary-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
}

/* ===== PRICING SECTION STYLES ===== */
.pricing {
    padding: 6rem 2rem;
    background: white;
}

.pricing-category-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin: 2rem 0 1.25rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.pricing-category-title:first-of-type {
    margin-top: 0;
}

.pricing-category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-card {
    flex: 1 1 240px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.3);
}

.plan-header {
    padding: 1.5rem 1.5rem 0;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.plan-best-for {
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    display: inline-block;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-price {
    margin: 0.5rem 0 0.2rem;
}

.plan-price .price {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.plan-price .period {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

.plan-features {
    padding: 0 1.5rem 1.2rem;
    flex: 1;
}

.plan-features ul {
    list-style: none;
    margin-top: 1rem;
}

.plan-features li {
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    color: var(--text);
    line-height: 1.4;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.plan-cta {
    padding: 0 1.5rem 1.8rem;
}

.plan-cta .btn {
    width: 100%;
    justify-content: center;
    background: white;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.plan-cta .btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.enterprise-card {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 32px;
    padding: 2rem 2rem;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: all 0.2s;
}

.enterprise-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

.enterprise-info p {
    margin-top: 0.5rem;
    color: var(--muted);
    max-width: 400px;
}

.enterprise-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0.75rem 0 0;
}

.enterprise-features span {
    background: rgba(37, 99, 235, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

.enterprise-card .btn {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 1.8rem;
}

.enterprise-card .btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Responsive adjustments for pricing section */
@media (max-width: 900px) {
    .pricing-grid {
        flex-direction: column;
    }

    .plan-card {
        width: 100%;
    }

    .enterprise-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8faff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 0.9rem;
}

/* ============================================
   FAQ ACCORDION
============================================ */
.faq {
    padding: 6rem 2rem;
    background: linear-gradient(160deg, #f0f4ff 0%, #f8faff 100%);
}

.faq-list {
    margin-top: 3rem;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8faff;
}

.faq-question.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s, background 0.2s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ============================================
   LOCAL ADVANTAGE
============================================ */
.local-advantage {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.local-advantage::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.local-advantage::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.08);
    pointer-events: none;
}

.la-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.la-left .section-label {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.la-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 1rem 0;
}

.la-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.la-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.la-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.la-badge .la-badge-icon {
    font-size: 1rem;
}

.la-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.la-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: background 0.25s, transform 0.25s;
}

.la-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.la-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    display: block;
}

.la-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
}

.la-card-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .la-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .la-right {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   DEMO VIDEO SECTION
============================================ */
.demo-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.demo-video-wrap {
    margin: 3rem auto 0;
    max-width: 860px;
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.demo-play-btn {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}

.demo-video-wrap:hover .demo-play-btn {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.demo-video-label {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

/* ============================================
   CTA BANNER
============================================ */
.cta-banner {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff7f3 100%);
    text-align: center;
}

.cta-banner-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE — STATS
============================================ */
.about-stats {
    background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
    padding: 4rem 2rem;
}

.about-stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.about-stat-val {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stat-lbl {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE — GENERAL
============================================ */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-list {
        max-width: 100%;
    }

    .demo-video-wrap {
        border-radius: 12px;
    }

    .la-right {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT SUMMARY (HOME)
   ============================================ */
.about-summary {
    padding: 8rem 2rem;
    background: white;
}

.about-summary-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-summary-content h2 {
    font-family: var(--syne);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0.75rem 0 1.5rem;
    line-height: 1.1;
}

.about-summary-content p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-summary-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-summary-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.about-summary-item span:last-child {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.about-summary-visual {
    position: relative;
    z-index: 1;
}

.about-summary-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.about-summary-big {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-summary-label {
    font-size: 1.15rem;
    opacity: 0.85;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.about-summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 2.5rem;
}

.about-summary-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.about-summary-stat h4 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    line-height: 1;
}

.about-summary-stat p {
    font-size: 0.82rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 500;
}

.about-summary-decor {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
}

@media (max-width: 900px) {
    .about-summary {
        padding: 5rem 1.5rem;
    }

    .about-summary-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .about-summary-content {
        text-align: center;
    }

    .about-summary-content h2 {
        font-size: 2.4rem;
    }

    .about-summary-list {
        align-items: center;
    }

    .about-summary-card {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .about-summary-big {
        font-size: 3.2rem;
    }

    .about-summary-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .nav-cta .btn-outline {
        display: none !important;
    }
}

/* ============================================
   NEXA AI CHATBOT
   ============================================ */
.nexabot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.nexabot-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
}

.nexabot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    background: #1d4ed8;
}

.nexabot-toggle i {
    font-size: 1.5rem;
}

.nexabot-toggle::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border: 2px solid white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

.nexabot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nexabot-window.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nexabot-header {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nexabot-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nexabot-info h3 {
    font-family: var(--syne);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.nexabot-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.nexabot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.nexabot-close:hover {
    opacity: 1;
}

.nexabot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}

.nexabot-msg {
    max-width: 85%;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.nexabot-msg.bot {
    background: white;
    color: var(--navy);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nexabot-msg.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.nexabot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.nexabot-opt-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1rem;
    border-radius: 100px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--navy);
    font-weight: 500;
}

.nexabot-opt-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

.nexabot-input-area {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 0.75rem;
}

.nexabot-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.nexabot-input:focus {
    border-color: var(--primary);
}

.nexabot-send {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexabot-typing {
    display: flex;
    gap: 4px;
    padding: 0.5rem;
}

.nexabot-typing span {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.nexabot-typing span:nth-child(1) {
    animation-delay: -0.32s;
}

.nexabot-typing span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}

@media (max-width: 450px) {
    .nexabot-container {
        right: 15px;
        bottom: 15px;
    }

    .nexabot-window {
        width: calc(100vw - 30px);
        height: 70vh;
        bottom: 70px;
    }
}