/* Qlynix Stylesheet - Complete */
/* Dark futuristic theme with neon accents */

:root {
    --bg-primary: #050508;
    --bg-secondary: #0a0a0f;
    --bg-card: rgba(15, 15, 25, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 240, 255, 0.3);
    
    --accent-cyan: #00f0ff;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --gradient-1: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    --gradient-2: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    
    --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    --font-main: 'Space Grotesk', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-cyan);
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width var(--transition-medium);
}

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

.nav-cta {
    background: var(--gradient-1);
    color: var(--bg-primary) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--accent-cyan);
}

.mobile-cta {
    background: var(--gradient-1);
    color: var(--bg-primary);
    padding: 16px 32px;
    border-radius: 8px;
    margin-top: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

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

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.bot-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.bot-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    opacity: 0.6;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation: rotate 30s linear infinite reverse;
    border-color: rgba(139, 92, 246, 0.3);
}

.ring-3 {
    width: 320px;
    height: 320px;
    animation: rotate 40s linear infinite;
    border-color: rgba(236, 72, 153, 0.2);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 16px auto 0;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Products/Bot Catalog Section */
.products {
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.product-card.featured {
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), transparent);
}

.product-tier-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-tier-badge.simple {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.product-tier-badge.standard {
    background: rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.product-tier-badge.advanced {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.product-tier-badge.complex {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-1);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.product-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    margin-bottom: 4px;
}

.price-monthly {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.product-setup {
    font-size: 14px;
    color: var(--accent-green);
    margin-bottom: 16px;
    font-weight: 500;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-features {
    list-style: none;
}

.product-features li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.product-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.product-card:hover .product-glow {
    opacity: 1;
}

/* Volume Banner */
.volume-banner {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
}

.volume-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.volume-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Pricing Calculator Section */
/* ── PRICING SECTION ─────────────────────────────────────── */
.pricing-section {
    background: var(--bg-primary);
}

/* "from" label on product cards */
.price-from {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    margin-right: 2px;
    text-transform: lowercase;
    letter-spacing: 0;
}

/* Pricing table */
.pricing-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    margin-bottom: 28px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.pricing-table thead tr {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-table thead th {
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(180,190,220,0.4);
    text-align: left;
    white-space: nowrap;
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s ease;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.025);
}

.pricing-table tbody tr.pt-featured {
    background: rgba(0,240,255,0.04);
    border-left: 2px solid var(--accent-cyan);
}

.pricing-table tbody tr.pt-featured:hover {
    background: rgba(0,240,255,0.07);
}

.pricing-table td {
    padding: 16px 20px;
    font-size: 14px;
    vertical-align: middle;
}

.pt-name {
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.pt-icon {
    font-size: 17px;
    line-height: 1;
}

.pt-popular {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.12);
    border: 1px solid rgba(0,240,255,0.25);
    border-radius: 999px;
    padding: 2px 8px;
    margin-left: 6px;
}

.pt-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pt-badge.simple   { background: rgba(52,211,153,0.12); color: #34d399; border: 1px solid rgba(52,211,153,0.25); }
.pt-badge.standard { background: rgba(0,240,255,0.10);  color: #00f0ff; border: 1px solid rgba(0,240,255,0.22); }
.pt-badge.advanced { background: rgba(167,139,250,0.12); color: #a78bfa; border: 1px solid rgba(167,139,250,0.25); }
.pt-badge.complex  { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.25); }

.pt-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    white-space: nowrap;
}

.pt-price span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(180,190,220,0.4);
    margin-left: 2px;
}

.pt-setup {
    font-size: 14px;
    font-weight: 600;
    color: #34d399;
    white-space: nowrap;
}

.pt-includes {
    font-size: 12px;
    color: rgba(180,190,220,0.45);
    line-height: 1.5;
}

/* Pricing footer cards */
.pricing-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pf-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pf-icon {
    font-size: 22px;
    margin-bottom: 4px;
}

.pf-card strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.pf-card span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(0, 240, 255, 0.1);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    margin: 0 auto 20px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.step-line {
    position: absolute;
    top: 50%;
    right: -40px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    transform: translateY(-50%);
}

.step:last-child .step-line {
    display: none;
}

/* CTA Section */
.cta {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.trust-item svg {
    color: var(--accent-cyan);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Bot Checkbox Grid */
.bot-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bot-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.bot-checkbox:hover {
    border-color: var(--border-glow);
    background: rgba(0, 240, 255, 0.05);
}

.bot-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-cyan);
    cursor: pointer;
    flex-shrink: 0;
}

.bot-checkbox-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bot-name {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.bot-price {
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: 600;
}

.bot-checkbox:has(input:checked) {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
}

.bot-checkbox:has(input:checked) .bot-name {
    color: var(--text-primary);
}

/* Fixed Select Dropdown */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: rgba(255, 255, 255, 0.05);
}

.form-group select option {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 12px;
    font-size: 15px;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background-color: rgba(0, 240, 255, 0.2);
    color: #00f0ff;
}

.form-group select optgroup {
    background-color: #1a1a2e;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
    max-width: 300px;
}

.footer-abn {
    font-size: 14px;
    color: var(--text-muted);
    font-family: monospace;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-subtle);
}

.footer-social a:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-notes {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-line {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        font-size: 60px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .bot-checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-glow);
}
/* =============================================
   SHARED NAV ENHANCEMENTS
   ============================================= */
.navbar { transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.logo a, .logo { text-decoration: none; cursor: pointer; }

/* =============================================
   LEGAL / CONTENT PAGES
   ============================================= */
.legal-page { padding-top: 140px; padding-bottom: 80px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 48px; margin-bottom: 16px; }
.legal-content .last-updated { color: var(--text-muted); margin-bottom: 48px; display: block; font-size: 14px; }
.legal-content h2 { font-size: 28px; margin-top: 48px; margin-bottom: 16px; color: var(--accent-cyan); }
.legal-content h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.legal-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.legal-content ul { color: var(--text-secondary); margin-bottom: 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; line-height: 1.6; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-cyan); text-decoration: none; margin-bottom: 32px; font-weight: 500; }
.back-link:hover { text-decoration: underline; }
.back-link::before { content: '←'; }

/* =============================================
   AUTH PAGES (login / signup)
   ============================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: var(--gradient-1);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-text { font-size: 32px; font-weight: 700; letter-spacing: 3px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-title { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.auth-subtitle { color: var(--text-secondary); text-align: center; margin-bottom: 32px; font-size: 15px; }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.auth-form .form-group input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
}
.auth-form .form-group input:focus {
  border-color: var(--accent-cyan);
  background: rgba(0,240,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,240,255,0.08);
}
.auth-form .form-group input.error { border-color: #ef4444; background: rgba(239,68,68,0.05); }
.auth-form .form-group input.success { border-color: var(--accent-green); }
.field-error { font-size: 12px; color: #ef4444; margin-top: 6px; display: none; }
.field-error.show { display: block; }
.field-hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.password-wrapper { position: relative; }
.password-toggle {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-muted); cursor: pointer;
  padding: 4px; line-height: 0;
  transition: color 0.2s;
}
.password-toggle:hover { color: var(--accent-cyan); }
.password-strength { margin-top: 8px; }
.strength-bar { height: 4px; border-radius: 2px; background: var(--border-subtle); overflow: hidden; margin-bottom: 4px; }
.strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s ease, background 0.3s ease; width: 0; }
.strength-text { font-size: 11px; color: var(--text-muted); }
.auth-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--text-muted); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-subtle); }
.auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-secondary); }
.auth-footer a { color: var(--accent-cyan); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }
.auth-alert {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.auth-alert.show { display: flex; }
.auth-alert.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.auth-alert.success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.auth-alert.warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: #fcd34d; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent-cyan); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.checkbox-row label { font-size: 13px; color: var(--text-secondary); cursor: pointer; line-height: 1.5; }
.checkbox-row label a { color: var(--accent-cyan); text-decoration: none; }
.checkbox-row label a:hover { text-decoration: underline; }
.btn-auth {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  background: var(--gradient-1);
  color: var(--bg-primary);
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.btn-auth:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,240,255,0.35); }
.btn-auth:active:not(:disabled) { transform: translateY(0); }
.btn-auth:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-auth .btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: rgba(0,0,0,0.8);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
}
.btn-auth.loading .btn-text { opacity: 0; }
.btn-auth.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.forgot-link { display: block; text-align: right; font-size: 13px; color: var(--accent-cyan); text-decoration: none; margin-top: -12px; margin-bottom: 20px; }
.forgot-link:hover { text-decoration: underline; }
.terms-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.5; }
.terms-note a { color: var(--accent-cyan); text-decoration: none; }

/* =============================================
   DEMOS INDEX PAGE
   ============================================= */
.demos-page { padding: 120px 0 80px; }
.demos-hero { text-align: center; margin-bottom: 72px; }
.demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.demo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,240,255,0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.demo-card:hover { transform: translateY(-5px); border-color: var(--border-glow); box-shadow: var(--shadow-glow); }
.demo-card:hover::after { opacity: 1; }
.demo-card-icon {
  width: 60px; height: 60px;
  background: rgba(0,240,255,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-cyan);
  border: 1px solid rgba(0,240,255,0.2);
  margin-bottom: 20px;
}
.demo-card-tier { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.demo-card-tier.simple { color: var(--accent-green); }
.demo-card-tier.standard { color: var(--accent-cyan); }
.demo-card-tier.advanced { color: var(--accent-orange); }
.demo-card-tier.complex { color: var(--accent-purple); }
.demo-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.demo-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; flex-grow: 1; margin-bottom: 20px; }
.demo-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--accent-cyan);
}
.demo-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient-1);
  color: var(--bg-primary);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.demo-coming-soon { opacity: 0.5; cursor: not-allowed; }
.demo-coming-soon:hover { transform: none; border-color: var(--border-subtle); box-shadow: none; }
.coming-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}

/* =============================================
   QLYNIX SITE BOT WIDGET (homepage floating)
   ============================================= */
.qlynix-site-bot {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  font-family: 'Space Grotesk', sans-serif;
}
.qlynix-bot-trigger {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gradient-1);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 28px rgba(0,240,255,0.30), 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.qlynix-bot-trigger:hover { transform: scale(1.08) rotate(4deg); box-shadow: 0 0 55px rgba(0,240,255,0.4), 0 12px 40px rgba(0,0,0,0.6); }
.qlynix-bot-trigger:active { transform: scale(0.96); }
.qlynix-bot-trigger::before {
  content: '';
  position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(0,240,255,0.28);
  animation: trigRing 2.6s ease-out infinite;
}
@keyframes trigRing { 0%{opacity:.7;transform:scale(1)} 100%{opacity:0;transform:scale(1.45)} }
.qlynix-bot-trigger .icon-chat,
.qlynix-bot-trigger .icon-close {
  width: 26px; height: 26px; color: #050508;
  position: absolute;
  transition: opacity 0.25s, transform 0.25s;
}
.qlynix-bot-trigger .icon-chat  { opacity: 1; transform: scale(1); }
.qlynix-bot-trigger .icon-close { opacity: 0; transform: scale(0.6) rotate(-90deg); }
.qlynix-bot-trigger.open .icon-chat  { opacity: 0; transform: scale(0.6) rotate(90deg); }
.qlynix-bot-trigger.open .icon-close { opacity: 1; transform: scale(1) rotate(0deg); }
.qlynix-bot-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #050508;
  animation: bdgPulse 2.2s ease-in-out infinite;
}
@keyframes bdgPulse { 0%,100%{transform:scale(1)} 35%{transform:scale(1.22)} }
.qlynix-bot-badge.hidden { display: none; }

/* Bot Window */
.qlynix-bot-window {
  position: absolute; bottom: 78px; right: 0;
  width: 380px; height: 580px;
  background: #07071a;
  border: 1px solid rgba(0,240,255,0.25);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.34,1.56,0.64,1), transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 28px rgba(0,240,255,0.15);
}
.qlynix-bot-window::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40%; height: 1px; background: var(--gradient-1); z-index: 1;
}
.qlynix-bot-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

/* Bot Header */
.qb-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(0,240,255,0.06), rgba(139,92,246,0.06));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.qb-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,240,255,0.25);
}
.qb-avatar svg { width: 20px; height: 20px; color: #050508; }
.qb-orbit {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: #00f0ff;
  border-right-color: rgba(0,240,255,0.25);
  animation: orbit 3s linear infinite;
}
.qb-status-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; background: #10b981;
  border-radius: 50%; border: 2px solid #07071a;
}
.qb-info { flex: 1; }
.qb-name { font-size: 14px; font-weight: 700; color: #f0f0ff; }
.qb-status { font-size: 11px; color: #10b981; display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.qb-status::before { content:''; width:5px; height:5px; border-radius:50%; background:#10b981; }
.qb-close {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  color: rgba(240,240,255,0.4); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qb-close:hover { background: rgba(0,240,255,0.08); border-color: rgba(0,240,255,0.25); color: #00f0ff; }
.qb-close svg { width: 14px; height: 14px; }

/* Bot Messages */
.qb-messages {
  flex: 1; overflow-y: auto;
  padding: 18px; display: flex; flex-direction: column; gap: 14px;
  scroll-behavior: smooth;
}
.qb-messages::-webkit-scrollbar { width: 4px; }
.qb-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }
.qb-msg { display: flex; flex-direction: column; max-width: 85%; animation: msgIn 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes msgIn { from{opacity:0;transform:translateY(12px) scale(0.97)} to{opacity:1;transform:translateY(0) scale(1)} }
.qb-msg.bot  { align-self: flex-start; }
.qb-msg.user { align-self: flex-end; }
.qb-sender { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.qb-sender-av {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center;
}
.qb-sender-av svg { width: 10px; height: 10px; color: #050508; }
.qb-sender-name { font-size: 10px; font-weight: 600; color: rgba(240,240,255,0.4); }
.qb-bubble {
  padding: 12px 15px; border-radius: 16px;
  font-size: 13px; line-height: 1.65; word-break: break-word;
}
.qb-msg.bot  .qb-bubble { background: rgba(12,12,34,0.9); border: 1px solid rgba(255,255,255,0.06); color: #f0f0ff; border-bottom-left-radius: 4px; }
.qb-msg.user .qb-bubble { background: var(--gradient-1); color: #050508; font-weight: 500; border-bottom-right-radius: 4px; }
.qb-meta { font-size: 10px; color: rgba(240,240,255,0.28); margin-top: 4px; padding: 0 2px; }
.qb-meta.bot  { text-align: left; }
.qb-meta.user { text-align: right; }
.qb-powered { color: #00f0ff; font-weight: 600; font-size: 10px; }

/* Typing */
.qb-typing { display: flex; align-items: flex-end; gap: 8px; animation: msgIn 0.25s ease; }
.qb-typing-av { width: 24px; height: 24px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qb-typing-av svg { width: 12px; height: 12px; color: #050508; }
.qb-typing-bubble { background: rgba(12,12,34,0.9); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; border-bottom-left-radius: 4px; padding: 12px 15px; display: flex; gap: 4px; align-items: center; }
.qb-dot { width: 6px; height: 6px; border-radius: 50%; background: #00f0ff; animation: dotB 1.2s ease-in-out infinite; }
.qb-dot:nth-child(2){animation-delay:.16s} .qb-dot:nth-child(3){animation-delay:.32s}
@keyframes dotB { 0%,60%,100%{transform:translateY(0);opacity:.35} 30%{transform:translateY(-7px);opacity:1} }

/* Quick replies */
.qb-quick-replies { padding: 0 16px 10px; display: flex; flex-wrap: wrap; gap: 6px; flex-shrink: 0; }
.qb-qr {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: rgba(240,240,255,0.6); cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap;
}
.qb-qr:hover { background: rgba(0,240,255,0.08); border-color: rgba(0,240,255,0.25); color: #00f0ff; transform: translateY(-1px); }

/* Input */
.qb-input-area {
  padding: 10px 14px 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(5,5,8,0.6); backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.qb-input-row { display: flex; align-items: center; gap: 8px; }
.qb-input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 10px 15px; font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; color: #f0f0ff; outline: none; resize: none; max-height: 100px;
  transition: border-color 0.2s;
}
.qb-input::placeholder { color: rgba(240,240,255,0.28); }
.qb-input:focus { border-color: rgba(0,240,255,0.25); background: rgba(0,240,255,0.03); }
.qb-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,240,255,0.28);
}
.qb-send:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 0 28px rgba(0,240,255,0.35); }
.qb-send:active { transform: scale(0.94); }
.qb-send svg { width: 16px; height: 16px; color: #050508; }
.qb-footer { display: flex; justify-content: space-between; margin-top: 6px; padding: 0 2px; }
.qb-branding { font-size: 10px; color: rgba(240,240,255,0.28); display: flex; align-items: center; gap: 3px; }
.qb-branding strong { color: #00f0ff; }

/* API key setup (for bot on homepage) */
.qb-api-setup {
  position: absolute; inset: 0;
  background: rgba(2,2,15,0.95); backdrop-filter: blur(12px);
  z-index: 10; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.qb-api-setup.hidden { display: none; }
.qb-api-inner {
  background: rgba(12,12,34,0.95);
  border: 1px solid rgba(0,240,255,0.25);
  border-radius: 18px; padding: 28px 24px;
  width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.qb-api-inner::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px; background: var(--gradient-1);
}
.qb-api-inner h4 { font-size: 16px; font-weight: 700; color: #f0f0ff; margin-bottom: 8px; }
.qb-api-inner p { font-size: 11px; color: rgba(240,240,255,0.5); line-height: 1.6; margin-bottom: 16px; }
.qb-api-inner p a { color: #00f0ff; text-decoration: none; }
.qb-api-inner input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
  padding: 10px 13px; font-family: 'Space Grotesk', monospace;
  font-size: 12px; color: #f0f0ff; outline: none;
  transition: border-color 0.2s; margin-bottom: 6px;
}
.qb-api-inner input:focus { border-color: rgba(0,240,255,0.25); background: rgba(0,240,255,0.03); }
.qb-api-inner input::placeholder { font-family: 'Space Grotesk', sans-serif; color: rgba(240,240,255,0.28); }
.qb-api-err { font-size: 11px; color: #f87171; min-height: 16px; margin-bottom: 10px; }
.qb-api-inner button {
  width: 100%; padding: 11px; border-radius: 999px;
  background: var(--gradient-1); border: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  color: #050508; cursor: pointer; transition: all 0.2s;
}
.qb-api-inner button:hover { transform: translateY(-1px); box-shadow: 0 0 28px rgba(0,240,255,0.35); }
.qb-api-inner button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.stream-cursor { display: inline-block; width: 2px; height: 1em; background: #00f0ff; margin-left: 2px; vertical-align: text-bottom; animation: cursorBlink 0.72s ease-in-out infinite; }
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* =============================================
   FULL NAV (with auth links)
   ============================================= */
.nav-auth-links { display: flex; align-items: center; gap: 12px; }
.btn-nav-login {
  color: var(--text-secondary); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.btn-nav-login:hover { color: var(--text-primary); }
.btn-nav-signup {
  background: var(--gradient-1); color: var(--bg-primary) !important;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav-signup:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* Responsive for demo grid */
@media (max-width: 900px) { .demos-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .demos-grid { grid-template-columns: 1fr; } .auth-card { padding: 32px 24px; } }
@media (max-width: 768px) { .qlynix-bot-window { width: 100vw; height: 100dvh; bottom: -28px; right: -28px; border-radius: 0; } }

/* ── WHY STRIP ───────────────────────────────────────────── */
.why-strip {
    background: rgba(0,240,255,0.03);
    border-top: 1px solid rgba(0,240,255,0.08);
    border-bottom: 1px solid rgba(0,240,255,0.08);
    padding: 28px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,240,255,0.08);
    border: 1px solid rgba(0,240,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
}
.why-item div strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}
.why-item div span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── HERO SUBTITLE LINE ──────────────────────────────────── */
.hero-title-sub {
    font-size: clamp(22px, 3vw, 42px) !important;
    color: var(--text-secondary) !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* ── COMPARE SECTION ─────────────────────────────────────── */
.compare-section {
    background: var(--bg-secondary);
    padding: 100px 0;
}

.calc-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.calc-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.calc-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.calc-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.calc-btn span {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-muted);
}
.calc-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}
.calc-btn.active {
    background: rgba(0,240,255,0.1);
    border-color: rgba(0,240,255,0.35);
    color: var(--accent-cyan);
}
.calc-btn.active span {
    color: rgba(0,240,255,0.6);
}

/* Comparison cards */
.calc-results {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    align-items: start;
}

.comp-card {
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.07);
    background: var(--bg-card);
}

.comp-qlynix {
    border-color: rgba(0,240,255,0.25);
    background: rgba(0,240,255,0.04);
}

.comp-badge-winner {
    display: inline-block;
    background: var(--accent-cyan);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.comp-logo {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.comp-price-main {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 4px;
}

.comp-price-high {
    color: rgba(255,255,255,0.45);
}

.comp-price-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.comp-setup {
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: 12px;
}

.comp-setup-high {
    color: rgba(248,113,113,0.7);
}

.comp-savings {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.08);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: 6px;
    padding: 7px 12px;
    margin-bottom: 20px;
}

.comp-more {
    font-size: 12px;
    font-weight: 600;
    color: rgba(248,113,113,0.8);
    background: rgba(248,113,113,0.06);
    border: 1px solid rgba(248,113,113,0.15);
    border-radius: 6px;
    padding: 7px 12px;
    margin-bottom: 20px;
}

.comp-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.comp-features li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.comp-features-neg li {
    color: var(--text-muted);
}

.comp-note {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
    margin-top: 8px;
}

/* Saving banner */
.calc-saving-banner {
    background: rgba(0,240,255,0.05);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}

.saving-left, .saving-right {
    flex: 1;
    text-align: center;
}

.saving-divider {
    width: 1px;
    height: 48px;
    background: rgba(0,240,255,0.15);
    flex-shrink: 0;
}

.saving-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.saving-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.calc-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .calc-results { grid-template-columns: 1fr; }
    .calc-saving-banner { flex-direction: column; gap: 20px; }
    .saving-divider { width: 60px; height: 1px; }
}
@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ── ROI SAVINGS CALCULATOR ──────────────────────────────── */
.savings-section {
    background: var(--bg-primary);
    padding: 100px 0;
}

.roi-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 36px;
}

.roi-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Task selector buttons */
.roi-btn-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.roi-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 16px 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--font-main);
}

.roi-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.14);
}

.roi-btn.active {
    background: rgba(0,240,255,0.07);
    border-color: rgba(0,240,255,0.3);
}

.roi-btn-icon {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}

.roi-btn-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.roi-btn.active .roi-btn-name {
    color: var(--accent-cyan);
}

.roi-btn-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

/* Sliders */
.roi-sliders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.roi-slider-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roi-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-slider-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-cyan);
}

.roi-slider {
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    outline: none;
    width: 100%;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,240,255,0.4);
    transition: box-shadow 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 0 16px rgba(0,240,255,0.7);
}

.roi-slider-hints {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Results row */
.roi-results {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 20px;
}

.roi-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px 22px;
    text-align: center;
}

.roi-result-cost {
    border-color: rgba(248,113,113,0.15);
    background: rgba(248,113,113,0.03);
}

.roi-result-bot {
    border-color: rgba(0,240,255,0.2);
    background: rgba(0,240,255,0.04);
}

.roi-result-saving {
    border-color: rgba(16,185,129,0.2);
    background: rgba(16,185,129,0.04);
}

.roi-result-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.roi-result-amount {
    font-size: 34px;
    font-weight: 700;
    color: rgba(248,113,113,0.8);
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.roi-result-amount-cyan  { color: var(--accent-cyan); }
.roi-result-amount-green { color: var(--accent-green); }

.roi-result-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.roi-result-arrow {
    font-size: 24px;
    color: var(--text-muted);
    text-align: center;
    padding: 0 8px;
    opacity: 0.4;
}

/* Payback banner */
.roi-payback-banner {
    background: rgba(0,240,255,0.04);
    border: 1px solid rgba(0,240,255,0.15);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}

.roi-payback-item {
    flex: 1;
    text-align: center;
}

.roi-payback-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.roi-payback-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.roi-payback-divider {
    width: 1px;
    height: 48px;
    background: rgba(0,240,255,0.15);
    flex-shrink: 0;
}

.roi-payback-cta {
    flex-shrink: 0;
    margin-left: 24px;
    white-space: nowrap;
}

.roi-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    opacity: 0.55;
    max-width: 680px;
    margin: 0 auto;
}

/* Remove old compare styles that are no longer needed */
@media (max-width: 900px) {
    .roi-btn-group { grid-template-columns: 1fr 1fr; }
    .roi-sliders { grid-template-columns: 1fr; }
    .roi-results { grid-template-columns: 1fr; }
    .roi-result-arrow { display: none; }
    .roi-payback-banner { flex-direction: column; gap: 20px; }
    .roi-payback-divider { width: 60px; height: 1px; }
    .roi-payback-cta { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
    .roi-btn-group { grid-template-columns: 1fr; }
}
