/* ═══════════════════════════════════════════
   AXYNT — Dark Theme CSS
   Inspired by Liveblocks · Axynt Blue #1A67F4
   Font: Bricolage Grotesque + DM Sans
═══════════════════════════════════════════ */

:root {
    --bg:           #060E1C;
    --bg-raised:    #0A1628;
    --bg-card:      #0C1830;
    --bg-hover:     #0F1E38;
    --primary:      #1A67F4;
    --primary-mid:  #3579F6;
    --primary-lt:   #5B96F8;
    --primary-glow: rgba(26, 103, 244, 0.22);
    --primary-glow-hi: rgba(26, 103, 244, 0.45);
    --text:         #E2ECFF;
    --text-muted:   #7A8FA6;
    --text-dim:     #3A4E66;
    --border:       rgba(26, 103, 244, 0.18);
    --border-sub:   rgba(255, 255, 255, 0.06);
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    18px;
    --radius-xl:    24px;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   AXYNT CHAT WIDGET
═══════════════════════════════════════════ */

/* ── Launcher button ─────────────────────── */
#ax-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid rgba(26, 103, 244, 0.5);
    box-shadow: 0 0 24px rgba(26, 103, 244, 0.28), 0 4px 20px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    user-select: none;
    -webkit-user-select: none;
}
#ax-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 36px rgba(26, 103, 244, 0.5), 0 6px 28px rgba(0,0,0,0.7);
}
#ax-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
.ax-btn-icon {
    filter: drop-shadow(0 0 6px rgba(26, 103, 244, 0.55));
    flex-shrink: 0;
}

/* Notification dot */
.ax-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--bg);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}
.ax-badge--on {
    opacity: 1 !important;
    transform: scale(1) !important;
    animation: ax-pulse-dot 2s infinite;
}
@keyframes ax-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26,103,244,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(26,103,244,0); }
}

/* ── Chat window ─────────────────────────── */
#ax-win {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 360px;
    height: 540px;
    max-height: calc(100vh - 108px);
    background: #0A1628;
    border: 1px solid rgba(26,103,244,0.22);
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    /* closed state */
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    pointer-events: none;
    transform-origin: bottom right;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
#ax-win.ax-win--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ── Header ──────────────────────────────── */
.ax-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(26,103,244,0.18);
    flex-shrink: 0;
}
.ax-hdr-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ax-hdr-av {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}
.ax-hdr-av img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg);
    padding: 3px;
    border: 1px solid rgba(26,103,244,0.3);
}
.ax-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}
.ax-hdr-txt {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.ax-hdr-txt strong {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.ax-hdr-txt span {
    font-size: 11px;
    color: #22c55e;
    letter-spacing: 0.2px;
}
.ax-close-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}
.ax-close-btn:hover {
    background: var(--primary-glow);
    color: var(--text);
}

/* ── Messages area ───────────────────────── */
.ax-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}
.ax-msgs::-webkit-scrollbar        { width: 4px; }
.ax-msgs::-webkit-scrollbar-track  { background: transparent; }
.ax-msgs::-webkit-scrollbar-thumb  { background: rgba(26,103,244,0.3); border-radius: 2px; }

/* Message rows */
.ax-msg {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.ax-msg--in {
    opacity: 1;
    transform: translateY(0);
}
.ax-msg--user {
    flex-direction: row-reverse;
}

/* Bot mini-avatar */
.ax-av-sm {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.ax-av-sm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg);
    padding: 2px;
    border: 1px solid rgba(26,103,244,0.28);
}

/* Bubbles */
.ax-bubble {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 16px 16px 16px 4px;
    background: var(--bg-card);
    border: 1px solid rgba(26,103,244,0.14);
    font-size: 13.5px;
    line-height: 1.55;
    color: #C8D9F0;
    word-break: break-word;
}
.ax-bubble strong { color: var(--text); font-weight: 600; }
.ax-bubble--user {
    background: linear-gradient(135deg, #1A67F4, #2d7cf6);
    border-color: transparent;
    border-radius: 16px 16px 4px 16px;
    color: #fff;
}

/* Typing animation */
.ax-typing-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    min-width: 56px;
}
.ax-typing-dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-mid);
    animation: ax-dot 1.2s infinite ease-in-out;
}
.ax-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.ax-typing-dots span:nth-child(3) { animation-delay: 0.3s;  }
@keyframes ax-dot {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.35; }
    40%           { transform: scale(1);   opacity: 1;    }
}

/* ── Footer ──────────────────────────────── */
.ax-footer {
    padding: 12px 14px;
    border-top: 1px solid rgba(26,103,244,0.12);
    background: #0A1628;
    flex-shrink: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
}

/* Quick replies */
.ax-qr-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    width: 100%;
}
.ax-qr-btn {
    padding: 7px 13px;
    border: 1px solid rgba(26,103,244,0.32);
    border-radius: 100px;
    background: rgba(26,103,244,0.07);
    color: #8BAEDD;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
    white-space: nowrap;
}
.ax-qr-btn:hover {
    background: rgba(26,103,244,0.18);
    border-color: rgba(26,103,244,0.55);
    color: var(--text);
    transform: translateY(-1px);
}

/* Text input row */
.ax-inp-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(26,103,244,0.2);
    border-radius: 12px;
    padding: 4px 4px 4px 13px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.ax-inp-row:focus-within {
    border-color: rgba(26,103,244,0.5);
    box-shadow: 0 0 0 3px rgba(26,103,244,0.1);
}
.ax-inp {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    padding: 7px 0;
    min-width: 0;
}
.ax-inp::placeholder { color: var(--text-dim); }
.ax-send-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.1s;
}
.ax-send-btn:hover { background: var(--primary-mid); transform: scale(1.05); }

/* End buttons */
.ax-end-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}
.ax-wa-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 14px;
    background: #25D366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.ax-wa-btn:hover { background: #1db954; transform: translateY(-1px); }
.ax-restart-btn {
    padding: 10px 14px;
    border: 1px solid rgba(26,103,244,0.28);
    border-radius: 10px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}
.ax-restart-btn:hover { border-color: rgba(26,103,244,0.55); color: var(--text); }

/* Cancel escape link shown under email inputs */
.ax-cancel-link {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 0;
    border: none;
    background: none;
    color: var(--text-dim);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    transition: color 0.15s;
}
.ax-cancel-link:hover { color: var(--text-muted); text-decoration: underline; }

/* ── Mobile ──────────────────────────────── */
@media (max-width: 480px) {
    #ax-win {
        right: 0;
        bottom: 0;
        width: 100%;
        height: 88vh;
        max-height: 88vh;
        border-radius: 20px 20px 0 0;
        border-bottom: none;
        transform: translateY(100%) scale(1);
    }
    #ax-win.ax-win--open {
        transform: translateY(0) scale(1);
    }
    #ax-btn {
        bottom: 16px;
        right: 16px;
    }
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.0625rem;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

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

/* ── Gradient text ────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-lt) 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section badge ────────────────────────── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-lt);
    background: var(--primary-glow);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 0 var(--primary-glow-hi);
}
.btn-primary:hover {
    background: var(--primary-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow-hi);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-sub);
}
.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255,255,255,0.04);
}

.btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: var(--radius-md); }

/* ── Reveal animations ───────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   STARTUP ANIMATION
══════════════════════════════════════════ */
body.loading { overflow: hidden; }

.startup-animation {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.6s ease 2.2s forwards;
}

.startup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.startup-logo {
    height: 80px;
    width: auto;
    opacity: 0;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
               pulse 1.5s ease 0.8s infinite;
    filter: drop-shadow(0 0 20px var(--primary-glow-hi));
}

.startup-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-lt);
    letter-spacing: 10px;
    margin-left: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease 0.4s forwards;
}

@keyframes zoomIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(6, 14, 28, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-sub);
    transition: border-color 0.3s;
}
.header.scrolled { border-bottom-color: var(--border); }

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-lt);
}

.main-nav ul { display: flex; gap: 8px; }
.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.social-icons { display: flex; gap: 4px; }
.social-icons a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    font-size: 1.125rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.social-icons a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.social-whatsapp:hover { color: #25D366 !important; background: rgba(37,211,102,0.1) !important; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-sub);
    color: var(--text-muted);
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.mobile-menu-btn:hover { color: var(--text); border-color: var(--border); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,103,244,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
    bottom: -50px; left: 100px;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,103,244,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,103,244,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 28px;
}

.hero-content { flex: 1; max-width: 600px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-sub);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    cursor: pointer;
    transition: all 0.2s;
}
.hero-badge:hover { border-color: var(--border); color: var(--text); }

.badge-pulse {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26,103,244,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(26,103,244,0); }
}

.hero-content h1 {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.avatar-stack { display: flex; }
.avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--c);
    border: 2px solid var(--bg);
    margin-left: -8px;
    flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }

/* Hero visual — automation hub */
.hero-visual {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.automation-hub {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.hub-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px; height: 88px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #fff;
    z-index: 3;
}
.hub-center-glow {
    position: absolute;
    inset: -8px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.45;
    animation: glowPulse 3s ease infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.6; } }

.hub-orbit {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed var(--border);
}
.hub-orbit-1 { width: 200px; height: 200px; animation: spin 20s linear infinite; }
.hub-orbit-2 { width: 320px; height: 320px; animation: spin 35s linear infinite reverse; }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hub-node {
    position: absolute;
    width: 56px; height: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.375rem;
    color: var(--primary-lt);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.hub-node-1 { top: 12px;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hub-node-2 { top: 50%;   right: 12px; transform: translateY(-50%); animation-delay: 0.5s; }
.hub-node-3 { bottom: 12px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.hub-node-4 { top: 50%;   left: 12px; transform: translateY(-50%); animation-delay: 1.5s; }
@keyframes float { 0%,100% { margin-top: 0; } 50% { margin-top: -8px; } }

.hub-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hub-svg-line {
    stroke: var(--primary);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    opacity: 0.3;
}

.hub-stat-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex; flex-direction: column;
    z-index: 4;
    backdrop-filter: blur(8px);
}
.hub-stat-1 { bottom: 60px; right: -20px; animation: float 5s ease-in-out infinite; }
.hub-stat-2 { top: 60px;    left: -20px; animation: float 5s ease-in-out infinite 1s; }

.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.25rem; font-weight: 700; }
.stat-pos { color: #34D399; }
.stat-neg { color: #F87171; }
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); }

.hub-notif {
    position: absolute;
    bottom: 20px; left: -30px;
    background: var(--bg-card);
    border: 1px solid rgba(52,211,153,0.3);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8125rem; color: #34D399;
    z-index: 4;
    animation: float 6s ease-in-out infinite 0.5s;
}
.hub-notif i { font-size: 1rem; }

/* ══════════════════════════════════════════
   SHOWCASE GRID
══════════════════════════════════════════ */
.showcase {
    padding: 80px 0;
    border-top: 1px solid var(--border-sub);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.sc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: border-color 0.25s, transform 0.3s var(--ease);
    overflow: hidden;
    position: relative;
}
.sc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, var(--primary-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
}
.sc-card:hover { border-color: var(--border); transform: scale(1.02); }

.sc-card--tall { grid-row: span 2; }
.sc-card--wide { grid-column: span 2; }

.sc-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-lt);
    background: var(--primary-glow);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.sc-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.sc-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }

/* Chat demo */
.chat-demo { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.chat-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
}
.chat-msg span {
    background: var(--bg-hover);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    max-width: 85%;
    color: var(--text-muted);
    line-height: 1.4;
}
.chat-msg--user { justify-content: flex-end; }
.chat-msg--user span { background: var(--primary-glow); color: var(--text); border: 1px solid var(--border); }
.chat-avatar {
    width: 26px; height: 26px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: #fff;
    flex-shrink: 0;
}
.chat-typing {
    display: flex;
    gap: 4px;
    padding: 8px 14px;
    background: var(--bg-hover);
    border-radius: var(--radius-sm);
    width: fit-content;
}
.chat-typing span {
    width: 6px; height: 6px;
    background: var(--text-dim);
    border-radius: 50%;
    animation: typing 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,100% { transform: translateY(0); opacity: 0.4; } 50% { transform: translateY(-4px); opacity: 1; } }

/* Chart bars */
.sc-visual { margin-top: 16px; }
.sc-visual--chart {}
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-bottom: 10px; }
.c-bar {
    flex: 1;
    height: var(--h);
    background: var(--bg-hover);
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}
.c-bar--hi { background: var(--primary); }
.sc-card:hover .c-bar--hi { background: var(--primary-mid); }
.chart-label { font-size: 0.8125rem; color: #34D399; }

/* Flow */
.sc-visual--flow { margin-top: 16px; }
.flow-steps { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--bg-hover);
    border: 1px solid var(--border-sub);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 60px;
}
.flow-step i { font-size: 1.125rem; }
.flow-step--done { border-color: rgba(52,211,153,0.3); color: #34D399; }
.flow-step--active { border-color: var(--border); color: var(--primary-lt); background: var(--primary-glow); }
.flow-arrow { color: var(--text-dim); font-size: 0.875rem; }

/* Document processing */
.sc-visual--docs { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.doc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-hover);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
}
.doc-item i { font-size: 1.25rem; color: var(--primary-lt); flex-shrink: 0; }
.doc-info { flex: 1; overflow: hidden; }
.doc-info span { font-size: 0.8125rem; color: var(--text-muted); display: block; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doc-bar { height: 4px; background: var(--bg-raised); border-radius: 2px; overflow: hidden; }
.doc-bar-fill { height: 100%; width: 100%; background: var(--primary); border-radius: 2px; }
.doc-ok { color: #34D399; font-size: 0.875rem; flex-shrink: 0; }
.doc-processing { color: var(--primary-lt); animation: spin 2s linear infinite; display: inline-block; font-size: 0.875rem; }

/* NLP tags */
.sc-visual--tags { margin-top: 14px; }
.nlp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.nlp-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
}
.nlp-pos { background: rgba(52,211,153,0.12); color: #34D399; border: 1px solid rgba(52,211,153,0.25); }
.nlp-key { background: var(--primary-glow); color: var(--primary-lt); border: 1px solid var(--border); }
.nlp-cat { background: rgba(167,139,250,0.12); color: #A78BFA; border: 1px solid rgba(167,139,250,0.25); }

/* Integration */
.sc-visual--int { margin-top: 14px; }
.int-grid { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.int-icon {
    width: 44px; height: 44px;
    background: var(--bg-hover);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; color: var(--text-muted);
}
.int-icon--main {
    width: 54px; height: 54px;
    background: var(--primary-glow);
    border-color: var(--border);
    color: var(--primary-lt);
    font-size: 1.375rem;
}

/* ══════════════════════════════════════════
   FEATURE HIGHLIGHTS
══════════════════════════════════════════ */
.features { background: var(--bg); }

.features-header {
    text-align: center;
    margin-bottom: 64px;
}
.features-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }

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

.feature-col {}

.feature-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.feature-col:hover .feature-preview { border-color: var(--border); box-shadow: 0 0 32px var(--primary-glow); }

.feature-col h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-col p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary-lt);
    transition: gap 0.2s;
}
.feature-link:hover { gap: 10px; }

/* Feature preview - titlebar */
.fp-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-sub);
}
.fp-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-dim); }
.fp-dot-y { background: #D97706; }
.fp-dot-g { background: #059669; }
.fp-win-title { font-size: 0.75rem; color: var(--text-muted); margin-left: 6px; }

/* Chatbot preview */
.fp-chat { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.fp-msg {
    font-size: 0.8125rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    max-width: 80%;
    line-height: 1.4;
}
.fp-msg-r { background: var(--bg-hover); color: var(--text-muted); align-self: flex-end; }
.fp-msg-l { background: var(--primary-glow); color: var(--text); border: 1px solid var(--border); align-self: flex-start; }

/* Form preview */
.fp-fields { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.fp-field {}
.fp-label { font-size: 0.6875rem; color: var(--text-dim); font-weight: 500; display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.fp-input {
    background: var(--bg-hover);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: space-between;
}
.fp-input-sel i { color: var(--text-dim); font-size: 0.75rem; }
.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #34D399;
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.25);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

/* Metrics preview */
.fp-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-sub); }
.fp-metric {
    background: var(--bg-card);
    padding: 16px;
    display: flex; flex-direction: column; gap: 4px;
}
.fp-metric--hi { background: var(--primary-glow); }
.fp-m-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.375rem; font-weight: 700; }
.fp-m-lbl { font-size: 0.75rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   EASY SECTION
══════════════════════════════════════════ */
.easy-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, #070F20 50%, var(--bg) 100%);
}

.easy-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(26,103,244,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.easy-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.easy-visual {
    flex: 1;
    position: relative;
}

.code-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(26,103,244,0.15);
}

.cw-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-sub);
    background: rgba(255,255,255,0.02);
}
.cw-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-dim); }
.cw-dot-y { background: #D97706; }
.cw-dot-g { background: #059669; }
.cw-filename { font-size: 0.75rem; color: var(--text-dim); margin-left: 8px; }

.cw-body { padding: 20px 24px; font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.8125rem; line-height: 1.8; }
.cw-line { white-space: pre; }
.cw-indent { padding-left: 20px; }

.c-comment { color: #4A6280; font-style: italic; }
.c-kw      { color: #7DD3FC; }
.c-var     { color: var(--text); }
.c-str     { color: #86EFAC; }
.c-fn      { color: #FDE68A; }
.c-prop    { color: #C4B5FD; }
.c-p       { color: var(--text-dim); }

.cw-cursor {
    display: inline-block;
    width: 2px; height: 1em;
    background: var(--primary);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.easy-float {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    animation: float 5s ease-in-out infinite;
    backdrop-filter: blur(8px);
}
.easy-float i { color: #34D399; font-size: 1rem; }
.easy-float-1 { bottom: -16px; right: -16px; animation-delay: 0s; }
.easy-float-2 { top: -16px; left: -16px; animation-delay: 1.5s; }
.ef-avatar { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; color: #fff; flex-shrink: 0; }

.easy-content { flex: 1; }
.easy-content h2 { font-size: clamp(1.75rem, 2.8vw, 2.4rem); font-weight: 800; margin-bottom: 20px; }
.easy-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-header { position: sticky; top: 100px; }
.faq-header h2 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); font-weight: 800; margin-bottom: 14px; }
.faq-header > p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
    border-bottom: 1px solid var(--border-sub);
    transition: border-color 0.2s;
}
.faq-item:first-child { border-top: 1px solid var(--border-sub); }
.faq-item.faq-open { border-color: var(--border); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-lt); }
.faq-item.faq-open .faq-q { color: var(--primary-lt); }

.faq-icon {
    font-size: 1.125rem;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), color 0.2s;
}
.faq-item.faq-open .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-lt);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s var(--ease);
    overflow: hidden;
}
.faq-item.faq-open .faq-a { grid-template-rows: 1fr; }

.faq-a > p {
    overflow: hidden;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 20px;
    min-height: 0;
}

/* ══════════════════════════════════════════
   PERFORMANCE SECTION
══════════════════════════════════════════ */
.performance {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.perf-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.perf-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
}
.perf-orb-1 { width: 500px; height: 500px; background: rgba(26,103,244,0.2); top: -100px; left: 50%; transform: translateX(-50%); }
.perf-orb-2 { width: 300px; height: 300px; background: rgba(124,58,237,0.12); bottom: -50px; right: 10%; }

.perf-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0.7;
}

.perf-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perf-cards-row { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center; }

.perf-badge-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(6,14,28,0.7);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.875rem;
    color: var(--text-muted);
    backdrop-filter: blur(12px);
}
.perf-badge-card i { color: var(--primary-lt); font-size: 1rem; }

.perf-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-lt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perf-sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   INFRASTRUCTURE / WHY AXYNT
══════════════════════════════════════════ */
.infra-section { background: var(--bg); }

.infra-header {
    text-align: center;
    margin-bottom: 64px;
}
.infra-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; max-width: 680px; margin: 0 auto; }

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.infra-col {
    background: var(--bg-card);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.infra-col:hover { border-color: var(--border); box-shadow: 0 0 30px var(--primary-glow); transform: translateY(-3px); }

.infra-icon {
    width: 48px; height: 48px;
    background: var(--primary-glow);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.375rem;
    color: var(--primary-lt);
    margin-bottom: 20px;
}

.infra-col h3 { font-size: 1rem; margin-bottom: 10px; }
.infra-col p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════════ */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, #050B18 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(26,103,244,0.15) 0%, transparent 70%);
}

.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,103,244,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,103,244,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

.cta-container { position: relative; z-index: 1; }

.cta-section h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-section > .cta-container > p { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 40px; }

.demo-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 14px;
    flex-wrap: wrap;
}

.demo-form input {
    flex: 1;
    min-width: 240px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.demo-form input:focus { border-color: var(--primary); }
.demo-form input::placeholder { color: var(--text-dim); }

.form-note { font-size: 0.8125rem; color: var(--text-dim); margin-bottom: 60px; }

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.cta-stat {}
.cta-stat h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.cta-stat span { font-size: 0.875rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
    background: #040B18;
    border-top: 1px solid var(--border-sub);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; max-width: 260px; line-height: 1.6; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: var(--bg-raised);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--border); color: var(--text); background: var(--bg-hover); }
.footer-whatsapp:hover { border-color: rgba(37,211,102,0.4) !important; color: #25D366 !important; background: rgba(37,211,102,0.08) !important; }

.footer-col h4 { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 20px; letter-spacing: 0.03em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border-sub);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom span { font-size: 0.8125rem; color: var(--text-dim); }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8125rem; color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .faq-container { grid-template-columns: 1fr; gap: 40px; }
    .faq-header { position: static; }
    .hero-container { gap: 40px; }
    .hero-visual { flex: 0 0 340px; }
    .automation-hub { width: 340px; height: 340px; }
    .infra-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .features-grid { grid-template-columns: 1fr; }
    .easy-container { flex-direction: column; gap: 48px; }
    .easy-content { text-align: center; }
    .easy-float-1, .easy-float-2 { display: none; }
}

@media (max-width: 900px) {
    .hero-container { flex-direction: column; padding: 60px 28px; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-content p { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-visual { display: none; }
    .showcase-grid { grid-template-columns: 1fr 1fr; }
    .sc-card--tall { grid-row: span 1; }
    .sc-card--wide { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border);
        padding: 16px 28px;
    }
    .main-nav.open ul { flex-direction: column; gap: 4px; }
    .main-nav.open a { padding: 10px 14px; }
    .mobile-menu-btn { display: flex; }
    .header { position: relative; }
    .social-icons { display: none; }
    .header .btn { display: none; }
}

@media (max-width: 640px) {
    .section-gap { padding: 64px 0; }
    .container { padding: 0 18px; }
    .showcase-grid { grid-template-columns: 1fr; }
    .sc-card--wide { grid-column: span 1; }
    .infra-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: 1; }
    .cta-stats { gap: 40px; }
    .perf-cards-row { flex-direction: column; align-items: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .showcase { padding: 60px 0; }
    .perf-title { font-size: 2.5rem; }
}

@media (max-width: 420px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .demo-form { flex-direction: column; }
    .demo-form input, .demo-form .btn { width: 100%; }
}

/* ══════════════════════════════════════════
   ANIMATIONS — Tech & Professional
══════════════════════════════════════════ */

/* ── 1. Animated gradient text (hero, features) ── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-lt) 0%, #A78BFA 40%, var(--primary-lt) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── 2. Section badge shimmer ── */
.section-badge {
    position: relative;
    overflow: hidden;
}
.section-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: badgeShimmer 4s ease infinite;
    pointer-events: none;
}
@keyframes badgeShimmer {
    0%      { left: -80%; }
    35%, 100% { left: 160%; }
}

/* ── 3. Hero scanline sweep (once, after startup) ── */
.hero { overflow: hidden; }
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26,103,244,0.5) 40%, rgba(91,150,248,0.7) 50%, rgba(26,103,244,0.5) 60%, transparent 100%);
    animation: scanSweep 1.8s ease-out 3s forwards;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}
@keyframes scanSweep {
    0%   { top: 0;    opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ── 4. Card hover — solo scale leve ── */

/* ── 5. Chart bars grow from 0 on reveal ── */
.c-bar {
    height: 0;
    transition: height 0.7s ease-out;
}
.c-bar:nth-child(1) { transition-delay: 0.00s; }
.c-bar:nth-child(2) { transition-delay: 0.08s; }
.c-bar:nth-child(3) { transition-delay: 0.16s; }
.c-bar:nth-child(4) { transition-delay: 0.24s; }
.c-bar:nth-child(5) { transition-delay: 0.32s; }
.c-bar:nth-child(6) { transition-delay: 0.40s; }
.revealed .c-bar { height: var(--h); }

/* ── 6. Doc progress bars fill on reveal ── */
.doc-bar-fill {
    width: 0;
    transition: width 1.1s ease-out 0.3s;
}
.revealed .doc-bar-fill { width: var(--w, 100%); }

/* ── 7. Infra icons — glow pulse on hover ── */
.infra-col:hover .infra-icon {
    animation: iconGlow 1.5s ease-in-out infinite;
}
@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 0 0 transparent; }
    50%       { box-shadow: 0 0 14px 2px var(--primary-glow); }
}

/* ── 8. CTA orb breathe ── */
.cta-orb {
    animation: orbBreathe 5s ease-in-out infinite;
}
@keyframes orbBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(1.12); opacity: 1;   }
}

/* ── 9. Hub center glow (enhanced) ── */
.hub-center-glow {
    animation: hubGlow 2.5s ease-in-out infinite;
}
@keyframes hubGlow {
    0%, 100% { opacity: 0.3; transform: scale(1);    }
    50%       { opacity: 0.65; transform: scale(1.2); }
}

/* ── 10. Perf title — subtle text glow ── */
.perf-title {
    animation: titleGlow 4s ease-in-out infinite;
}
@keyframes titleGlow {
    0%, 100% { text-shadow: none; }
    50%       { text-shadow: 0 0 40px rgba(91,150,248,0.25); }
}

/* ── 11. CTA stat numbers — scale up on count ── */
.cta-stat h4 {
    display: inline-block;
    transition: transform 0.1s ease;
}

/* ── 12. Feature preview window — subtle entrance ── */
.feature-col.revealed .feature-preview {
    animation: previewIn 0.5s ease-out forwards;
}
@keyframes previewIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── 13. Hero badge pulse glow ── */
.hero-badge {
    animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: none; }
    50%       { box-shadow: 0 0 12px rgba(26,103,244,0.2); }
}

/* ── 14. Flow step active — subtle blink ── */
.flow-step--active {
    animation: activeStep 2s ease-in-out infinite;
}
@keyframes activeStep {
    0%, 100% { border-color: var(--border);        background: var(--primary-glow); }
    50%       { border-color: var(--primary-lt);    background: rgba(26,103,244,0.18); }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
