:root {
    --bg: #faf9f7;
    --bg2: #f5f3ef;
    --card: rgba(255, 255, 255, 0.9);
    --border: rgba(255, 107, 43, 0.12);
    --accent: #ff6b2b;
    --accent2: #e85d1c;
    --accent3: #d4440a;
    --success: #16a34a;
    --text: #1a1410;
    --muted: #7a7168;
    --glow: rgba(255, 107, 43, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: '';
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255,107,43,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255,160,90,.04) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}
a { color: var(--accent2); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Satoshi', sans-serif; letter-spacing: -.01em; }
.section-container { max-width: 1200px; margin: 0 auto; }

/* ── Scroll Animations ── */
.feature-card, .about-card, .price-card, .step, .founder-card, .compare-table {
    opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(.23,1,.32,1);
}
.feature-card.visible, .about-card.visible, .price-card.visible, .step.visible, .founder-card.visible, .compare-table.visible {
    opacity: 1; transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.4s; }
.about-card:nth-child(2) { transition-delay: 0.1s; }
.about-card:nth-child(3) { transition-delay: 0.2s; }
.price-card:nth-child(2) { transition-delay: 0.1s; }
.price-card:nth-child(3) { transition-delay: 0.2s; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 38px; width: 100%; z-index: 100;
    padding: 14px 0;
    background: rgba(250, 249, 247, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.navbar.scrolled { background: rgba(250, 249, 247, 0.95); padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.15rem; font-weight: 800;
}
.nav-brand .icon {
    width: 36px; height: 36px; border-radius: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.nav-brand span {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ── Buttons ── */
.btn-ghost {
    padding: 10px 22px; border-radius: 0; font-size: 0.88rem; font-weight: 600;
    color: var(--text); border: 1px solid var(--border); background: transparent;
    cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent2); color: var(--accent2); transform: translateY(-1px); }
.btn-primary-lg {
    padding: 12px 28px; border-radius: 0; font-size: 0.9rem; font-weight: 700;
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
    box-shadow: 0 4px 20px var(--glow);
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }
.btn-glow { animation: btnPulse 3s infinite; }
@keyframes btnPulse { 0%,100%{ box-shadow: 0 4px 20px var(--glow); } 50% { box-shadow: 0 4px 40px rgba(108,99,255,0.4); } }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── Mobile Toggle ── */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.mobile-toggle span {
    display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px;
    position: absolute; left: 0; transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }
.mobile-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ── Hero Split ── */
.hero {
    position: relative; z-index: 1;
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 24px 80px; overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.75) 100%);
}
.hero-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.mesh-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
    animation: orbFloat 12s ease-in-out infinite;
}
.mesh-orb-1 { width: 500px; height: 500px; top: -10%; left: -5%; background: rgba(255,107,43,.12); }
.mesh-orb-2 { width: 400px; height: 400px; bottom: -10%; right: -5%; background: rgba(255,160,90,.1); animation-delay: -4s; animation-duration: 15s; }
.mesh-orb-3 { width: 300px; height: 300px; top: 40%; left: 40%; background: rgba(217,119,6,.08); animation-delay: -8s; animation-duration: 18s; }
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.05); }
    66% { transform: translate(-20px,30px) scale(.95); }
}
.hero-split {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 3;
}
.hero-left { animation: fadeInUp .6s ease both; color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; border-radius: 0;
    background: rgba(255,107,43,0.15); border: 1px solid rgba(255,107,43,0.3);
    font-size: 0.82rem; font-weight: 600; color: var(--accent);
    margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -.02em; color: #fff;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent), #ffb380);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 520px; margin-bottom: 28px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-buttons .btn-primary-lg { padding: 14px 32px; font-size: .95rem; border-radius: 0; }
.hero-buttons .btn-ghost { padding: 14px 28px; font-size: .95rem; border-radius: 0; color: #fff; border-color: rgba(255,255,255,.25); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-trust {
    display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px;
    animation: fadeInUp .6s ease .3s both;
}
.hero-trust span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── Premium Mockup Dashboard ── */
.hero-right { animation: fadeInUp .6s ease .2s both; display: flex; justify-content: center; }
.dash-mockup {
    width: 100%; max-width: 620px; background: #fff; border: 1px solid rgba(255,107,43,.15);
    box-shadow: 0 25px 60px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
    overflow: hidden; position: relative; border-radius: 0;
    transform: none !important;
    transition: box-shadow .3s ease; 
}
.dash-mockup:hover { box-shadow: 0 35px 75px rgba(255,107,43,.15); }

.dash-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 14px; background: #faf9f7; border-bottom: 1px solid rgba(0,0,0,.06);
    user-select: none;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dash-dot.red { background: #ef4444; } 
.dash-dot.yellow { background: #f59e0b; } 
.dash-dot.green { background: #22c55e; }
.dash-title { font-size: .68rem; font-weight: 600; color: #7a7168; letter-spacing: .02em; font-family: 'Inter', sans-serif; }

.dash-container { display: flex; height: 420px; }

/* Mock Sidebar */
.mock-sidebar {
    width: 120px; background: #ffffff; border-right: 1px solid rgba(255,107,43,.1);
    display: flex; flex-direction: column; padding: 12px 6px; flex-shrink: 0;
}
.ms-logo {
    font-family: 'Satoshi', sans-serif; font-size: .8rem; font-weight: 900;
    color: var(--accent); display: flex; align-items: center; gap: 4px;
    margin-bottom: 16px; padding-left: 6px; text-transform: uppercase; letter-spacing: .05em;
}
.ms-menu { display: flex; flex-direction: column; gap: 3px; }
.ms-item {
    font-size: .68rem; color: var(--muted); padding: 7px 10px; font-weight: 600;
    transition: all .2s; text-decoration: none; border-radius: 0; display: flex; align-items: center; gap: 6px;
}
.ms-item:hover { background: var(--bg2); color: var(--text); }
.ms-item.active { background: rgba(255,107,43,.06); color: var(--accent); font-weight: 700; border-left: 2px solid var(--accent); padding-left: 8px; }

/* Mock Content Main Area */
.mock-main {
    flex: 1; display: flex; flex-direction: column; background: #faf9f7;
    padding: 14px; position: relative; overflow: hidden;
}
.mock-main::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; opacity: 0.35; z-index: 1;
}

.mock-welcome {
    background: linear-gradient(135deg, #fff8f3, #fff3eb);
    border: 1px solid rgba(255,107,43,0.12); padding: 8px 12px;
    margin-bottom: 12px; position: relative; overflow: hidden; z-index: 2;
}
.mw-title { font-family: 'Satoshi', sans-serif; font-size: .88rem; font-weight: 800; color: var(--text); }
.mw-title span { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.mw-subtitle { font-size: .62rem; color: var(--muted); margin-top: 1px; }

/* Tab Switcher */
.mock-tabs { display: flex; gap: 4px; border-bottom: 1px solid rgba(0,0,0,.06); padding-bottom: 6px; margin-bottom: 12px; z-index: 2; position: relative; }
.m-tab-btn {
    border: none; background: none; font-size: .7rem; font-weight: 700; color: var(--muted);
    padding: 4px 10px; cursor: pointer; transition: all .2s; border-radius: 0;
}
.m-tab-btn:hover { color: var(--text); background: rgba(0,0,0,.04); }
.m-tab-btn.active { color: var(--accent); background: rgba(255,107,43,.08); }

.mock-tab-content { display: none; flex: 1; flex-direction: column; z-index: 2; position: relative; animation: tabFadeIn .3s ease; }
.mock-tab-content.active { display: flex; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* TAB 1: Analytics */
.mock-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.m-stat-card {
    background: #fff; border: 1px solid var(--border); padding: 10px 6px; text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.02); transition: border-color .3s, transform .3s;
}
.m-stat-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.m-sc-icon { font-size: 1.1rem; margin-bottom: 2px; }
.m-sc-val { font-family: 'Satoshi', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--text); }
.m-sc-label { font-size: .56rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; margin-top: 1px; }

/* Mini Chart */
.mock-chart-box { background: #fff; border: 1px solid var(--border); padding: 10px; display: flex; flex-direction: column; flex: 1; }
.m-cb-header { font-size: .62rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.m-cb-bars { display: flex; align-items: flex-end; justify-content: space-between; gap: 4px; height: 100%; max-height: 80px; padding-bottom: 12px; }
.m-bar {
    flex: 1; background: linear-gradient(180deg, rgba(255,107,43,.8), rgba(255,107,43,.3));
    height: var(--h, 0%); position: relative; transition: height .6s cubic-bezier(.34, 1.56, .64, 1);
}
.m-bar span { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); font-size: .52rem; color: var(--muted); }
#mock-bar-active { background: linear-gradient(180deg, var(--accent), var(--accent2)); animation: barPulse 2s infinite ease-in-out; }
@keyframes barPulse { 0%,100%{ opacity: 1; } 50%{ opacity: .7; } }

/* TAB 2: Chat */
.mock-chat-window {
    background: #fff; border: 1px solid var(--border); border-radius: 0; padding: 10px;
    height: 265px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px;
    scroll-behavior: smooth;
}
.mock-chat-window::-webkit-scrollbar { width: 3px; }
.mock-chat-window::-webkit-scrollbar-thumb { background: #e2d9cf; }
.m-c-bubble { max-width: 85%; padding: 6px 10px; font-size: .68rem; line-height: 1.45; animation: bubbleUp .25s ease both; }
@keyframes bubbleUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.m-c-bubble.user { background: #f5f3ef; border: 1px solid rgba(0,0,0,.05); color: var(--text); align-self: flex-start; }
.m-c-bubble.bot { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; align-self: flex-end; }
.m-c-bubble.system { background: rgba(25,135,84,.06); border: 1px solid rgba(25,135,84,.15); color: #198754; align-self: center; font-size: .58rem; font-weight: 700; text-align: center; }

/* TAB 3: Orders */
.mock-orders-box { background: #fff; border: 1px solid var(--border); overflow: hidden; flex: 1; display: flex; }
.mock-table { width: 100%; border-collapse: collapse; font-size: .65rem; }
.mock-table th { padding: 6px 8px; text-align: left; font-weight: 700; color: var(--muted); border-bottom: 2px solid #ece7e0; background: #faf9f7; }
.mock-table td { padding: 8px; border-bottom: 1px solid #f0ece6; color: var(--text); vertical-align: middle; }
.mock-table tbody tr:hover { background: rgba(255,107,43,.02); }
.m-badge { display: inline-flex; align-items: center; padding: 2px 6px; font-size: .56rem; font-weight: 700; }
.m-badge.success { background: rgba(22,163,74,.08); color: #15803d; }
.m-badge.warn { background: rgba(217,119,6,.08); color: #92400e; animation: pulseBadge 1.5s infinite; }
@keyframes pulseBadge { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

/* Dynamic Floating Toast Notification */
.mock-toast {
    position: absolute; bottom: 12px; right: 12px; z-index: 99;
    background: #ffffff; border: 1px solid rgba(25,135,84,.25); border-left: 4px solid #198754;
    padding: 8px 12px; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(120%); opacity: 0;
    transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}
.mock-toast.show { transform: translateY(0); opacity: 1; }
.mt-icon { font-size: 1.1rem; }
.mt-content { display: flex; flex-direction: column; }
.mt-content strong { font-size: .68rem; color: var(--text); font-weight: 700; }
.mt-content span { font-size: .58rem; color: var(--muted); margin-top: 1px; }

/* Responsive adjustments */
@media (max-width: 600px) {
    .dash-container { height: 370px; }
    .mock-sidebar { width: 90px; padding: 10px 4px; }
    .ms-logo { font-size: .7rem; margin-bottom: 10px; }
    .ms-item { font-size: .6rem; padding: 5px 6px; gap: 4px; }
    .mock-welcome { padding: 6px 10px; margin-bottom: 8px; }
    .mw-title { font-size: .78rem; }
    .mw-subtitle { font-size: .55rem; }
    .m-tab-btn { font-size: .62rem; padding: 3px 6px; }
    .m-stat-card { padding: 6px 3px; }
    .m-sc-val { font-size: .88rem; }
    .m-sc-label { font-size: .5rem; }
    .m-cb-bars { max-height: 60px; }
    .mock-chat-window { height: 215px; }
    .mock-table th, .mock-table td { padding: 5px; }
}

/* Stats row hidden since we use hero-trust */
.stats-row { display: none; }


/* ── Section Commons ── */
section { position: relative; z-index: 1; padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .tag, .features-left .tag, .founder-content .tag {
    display: inline-block; padding: 5px 16px; border-radius: 0;
    background: rgba(255,107,43,0.08); border: 1px solid rgba(255,107,43,0.12);
    font-size: 0.75rem; font-weight: 700; color: var(--accent2);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px;
}
.section-header p { color: var(--muted); font-size: 1.02rem; max-width: 580px; margin: 0 auto; }
.section-header strong { color: var(--text); }

/* ── About Us (Asymmetric Option 1 Split) ── */
.about-section { padding: 90px 0; background: linear-gradient(180deg, transparent, rgba(255,107,43,0.02), transparent); }
.about-split {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px;
    max-width: 1200px; margin: 0 auto; padding: 0 20px; align-items: center;
}
.about-items-stack { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.about-item {
    display: flex; gap: 20px; background: #ffffff;
    border: 1px solid var(--border); padding: 22px;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
.about-item:hover {
    border-color: rgba(255, 107, 43, 0.25);
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(255, 107, 43, 0.04);
}
.about-item-icon {
    flex-shrink: 0; width: 46px; height: 46px;
    background: rgba(255, 107, 43, 0.05);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.about-item:hover .about-item-icon {
    background: var(--accent);
}
.about-item:hover .about-item-icon svg {
    stroke: #ffffff !important;
    transform: rotate(10deg) scale(1.05);
}
.about-item-icon svg { width: 22px; height: 22px; transition: all 0.3s ease; }
.about-item-text { flex-grow: 1; }
.about-item-text h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.about-item-text p { color: var(--muted); font-size: 0.86rem; line-height: 1.6; margin: 0; }

/* Animated Server Mockup Box */
.server-mockup-box {
    background: #0b0b0a; border: 1px solid rgba(255, 107, 43, 0.2);
    padding: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    color: #ffffff; font-family: 'Inter', monospace; position: relative;
    overflow: hidden;
}
.server-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px; margin-bottom: 20px; font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4); font-weight: 600; letter-spacing: 0.05em;
}
.server-dots { display: flex; gap: 5px; }
.server-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.server-dot.active {
    background: #22c55e; box-shadow: 0 0 10px #22c55e;
    animation: serverBlink 1.2s infinite ease-in-out;
}
@keyframes serverBlink { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.server-rack { display: flex; flex-direction: column; gap: 12px; }
.rack-unit {
    background: #141413; border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 18px; display: flex; justify-content: space-between;
    align-items: center; position: relative;
}
.rack-unit::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--accent);
}
.ru-info { display: flex; flex-direction: column; gap: 4px; }
.ru-title { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: #ffffff; letter-spacing: 0.04em; }
.ru-desc { font-size: 0.58rem; color: rgba(255, 255, 255, 0.4); }
.ru-status { display: flex; align-items: center; gap: 12px; }
.ru-bar { width: 70px; height: 6px; background: rgba(255, 255, 255, 0.08); position: relative; overflow: hidden; }
.ru-bar-fill {
    height: 100%; background: var(--accent);
    width: var(--percent, 40%); animation: ruPulse 2.5s infinite ease-in-out;
}
@keyframes ruPulse { 0%, 100% { width: var(--percent); } 50% { width: calc(var(--percent) + 12%); } }

.ru-led { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.ru-led.orange {
    background: var(--accent); box-shadow: 0 0 8px var(--accent);
    animation: ledBlink 0.6s infinite ease-in-out;
}
@keyframes ledBlink { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

.server-connections {
    margin-top: 24px; height: 36px; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.db-cable { width: 100%; height: 3px; background: rgba(255, 255, 255, 0.06); position: relative; overflow: hidden; }
.db-cable-glow {
    position: absolute; top: 0; bottom: 0; width: 35%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: dbFlow 1.8s infinite linear;
}
@keyframes dbFlow { 0% { left: -35%; } 100% { left: 100%; } }
.db-badge-server {
    position: absolute; bottom: -4px; font-size: 0.58rem; font-weight: 700;
    color: rgba(255, 255, 255, 0.3); letter-spacing: 0.08em; text-transform: uppercase;
}

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

/* ── Features (Adash Service Sticky Scroll) ── */
.features-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,.02), transparent); }
.features-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1200px; margin: 0 auto;
}
.features-left {
    position: sticky; top: 120px; align-self: start;
    padding-right: 20px;
}
.features-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900;
    line-height: 1.15; margin-bottom: 18px; letter-spacing: -.02em;
}
.features-left h2 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.features-left p { color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 24px; }
.features-count {
    display: flex; gap: 28px; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.fc-item { text-align: center; }
.fc-num { font-family: 'Satoshi', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.fc-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }

/* Right: sticky stacking cards */
.features-right {
    display: flex; flex-direction: column; gap: 24px;
    padding-bottom: 40vh; /* extra space so last card can stick */
}
.stack-card {
    position: sticky;
    top: calc(100px + var(--i, 0) * 40px);
    z-index: calc(10 + var(--i, 0));
    transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.feature-card {
    background: #fff; border: 1px solid rgba(0,0,0,.06);
    padding: 0; position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: all 0.35s cubic-bezier(.23,1,.32,1);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), transparent);
    opacity: 0; transition: opacity .35s;
}
.feature-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(255,107,43,.12), 0 4px 12px rgba(0,0,0,.06);
    border-color: rgba(255,107,43,.2);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.featured { border-color: rgba(255,107,43,.15); background: linear-gradient(180deg, #fff8f3 0%, #fff 50%); }
.feature-card.featured::before { opacity: 1; }
.feature-tag {
    position: absolute; top: 20px; right: 20px;
    padding: 4px 12px; background: var(--accent); color: #fff;
    font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
}
.feature-icon {
    padding: 28px 28px 16px; font-size: 2.2rem;
    transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.feature-card:hover .feature-icon { transform: translateY(-3px) scale(1.08); }
.feature-card h3 { font-size: 1.08rem; font-weight: 800; padding: 0 28px; margin-bottom: 8px; letter-spacing: -.01em; }
.feature-card p { color: var(--muted); font-size: .85rem; line-height: 1.7; padding: 0 28px 24px; }

/* ── Pricing ── */
.pricing-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,0.03), transparent); }
.pricing-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    align-items: stretch;
}
.price-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 0;
    padding: 36px 28px; text-align: center; transition: all 0.3s; position: relative;
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
}
.price-card:hover { border-color: rgba(255,107,43,0.25); transform: translateY(-4px); }
.price-card.popular {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255,107,43,0.08), rgba(255,160,90,0.04));
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255,107,43,0.12);
}
.price-card.popular:hover { transform: scale(1.07); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 5px 20px; border-radius: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    font-size: 0.72rem; font-weight: 700; color: #fff; white-space: nowrap;
}
.price-tier { font-size: 0.9rem; font-weight: 700; color: var(--accent2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.price-amount { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.price-amount .currency { font-size: 1.4rem; vertical-align: super; color: var(--muted); }
.price-amount .period { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.price-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; flex: 1; }
.price-features li {
    padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,140,50,0.06);
}
.price-features li:last-child { border: none; }

/* ── Pricing Toggle ── */
.pricing-toggle-wrap {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 40px;
}
.toggle-label {
    font-size: 0.95rem; font-weight: 600; color: var(--muted);
    transition: color 0.3s;
}
.toggle-label.active { color: var(--text); }
.toggle-switch {
    position: relative; display: inline-block; width: 54px; height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--accent); transition: .4s;
}
.toggle-switch .slider:before {
    position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px;
    background-color: white; transition: .4s;
}
.toggle-switch input:checked + .slider { background-color: var(--accent2); }
.toggle-switch input:focus + .slider { box-shadow: 0 0 1px var(--accent2); }
.toggle-switch input:checked + .slider:before { transform: translateX(26px); }
.toggle-switch .slider.round { border-radius: 34px; }
.toggle-switch .slider.round:before { border-radius: 50%; }

/* ── How It Works ── */
.steps-timeline { max-width: 700px; margin: 0 auto; position: relative; }
.steps-timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent2), transparent);
}
.step {
    display: flex; gap: 24px; position: relative;
    padding: 32px 0;
}
.step + .step { border-top: 1px solid rgba(255,140,50,0.04); }
.step-num {
    width: 50px; height: 50px; border-radius: 0; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 800; color: #fff;
    box-shadow: 0 0 20px var(--glow); position: relative; z-index: 2;
}
.step-content { padding-top: 8px; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { color: var(--muted); font-size: 0.88rem; }

/* ── Comparison Table ── */
.compare-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,0.03), transparent); }
.compare-table-wrap { max-width: 1000px; margin: 0 auto; overflow-x: auto; border-radius: 0; border: 1px solid var(--border); }
.compare-table {
    width: 100%; border-collapse: collapse; font-size: 0.88rem;
    background: var(--card); backdrop-filter: blur(10px);
}
.compare-table thead { background: rgba(255,107,43,0.06); }
.compare-table th {
    padding: 20px 16px; font-weight: 700; text-align: center;
    border-bottom: 2px solid rgba(255,107,43,0.12);
    font-size: 0.9rem;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.highlight {
    background: rgba(255,107,43,0.10); color: var(--accent2);
    border-bottom-color: var(--accent);
}
.compare-table td {
    padding: 14px 16px; border-bottom: 1px solid rgba(255,140,50,0.06);
    text-align: center; color: var(--muted);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table td.highlight { background: rgba(255,107,43,0.05); color: var(--success); font-weight: 600; }
.compare-table tbody tr:hover { background: rgba(255,107,43,0.03); }
.tool-logo {
    width: 36px; height: 36px; border-radius: 0; margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    background: rgba(255,255,255,0.05);
}
.tool-logo img { height: 20px; width: auto; object-fit: contain; filter: brightness(0.9); }

/* ── Founder (Split Layout) ── */
.founder-section { background: linear-gradient(180deg, transparent, rgba(255,107,43,.03), transparent); }
.founder-split {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
    align-items: center; max-width: 1100px; margin: 0 auto;
}
.founder-visual { text-align: center; }
.founder-img-wrap {
    position: relative; display: inline-block; margin-bottom: 24px;
}
.founder-img-wrap img {
    width: 300px; height: 300px; object-fit: cover;
    border: 3px solid rgba(255,107,43,.3);
    filter: grayscale(10%);
    position: relative; z-index: 2;
}
.founder-img-wrap::before {
    content: ''; position: absolute; inset: -8px; z-index: 1;
    background: linear-gradient(135deg, var(--accent), transparent 60%);
    opacity: .2;
}
.founder-badge-float {
    position: absolute; bottom: -10px; right: -10px; z-index: 3;
    background: var(--accent); color: #fff;
    padding: 5px 12px; font-size: .72rem; font-weight: 700;
}
.founder-stats-mini {
    display: flex; justify-content: center; gap: 24px;
    padding: 16px 0; border-top: 1px solid var(--border);
}
.fsm-item { text-align: center; }
.fsm-num { font-family:'Satoshi',sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.fsm-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.founder-content .tag { margin-bottom: 16px; }
.founder-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 16px; }
.founder-content h2 .gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.founder-role-badge {
    display: inline-block; padding: 6px 16px; margin-bottom: 20px;
    background: rgba(255,107,43,.08); border: 1px solid rgba(255,107,43,.15);
    font-size: .8rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: .04em;
}
.founder-content p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 24px; }
.founder-content strong { color: var(--text); }
.founder-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.founder-pills span {
    padding: 5px 14px; font-size: .75rem; font-weight: 600;
    background: rgba(255,107,43,.06); border: 1px solid rgba(255,107,43,.12);
    color: var(--accent2);
}
.founder-contact {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; background: var(--accent); color: #fff;
    font-weight: 700; font-size: .88rem; transition: all .3s;
}
.founder-contact:hover { background: #e85d1c; transform: translateY(-2px); }

/* ── CTA (Dark Split) ── */
.cta-section {
    background: #0f0e0d; position: relative; overflow: hidden;
    padding: 100px 24px;
}
.cta-bg-mesh { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .3;
}
.cta-orb-1 { width: 400px; height: 400px; top: -10%; left: -5%; background: rgba(255,107,43,.4); }
.cta-orb-2 { width: 300px; height: 300px; bottom: -10%; right: 5%; background: rgba(255,160,90,.25); }
.cta-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 2;
}
.cta-badge {
    display: inline-block; padding: 5px 16px; margin-bottom: 20px;
    background: rgba(255,107,43,.15); border: 1px solid rgba(255,107,43,.3);
    font-size: .75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em;
}
.cta-inner h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
    color: #fff; line-height: 1.1; margin-bottom: 18px; letter-spacing: -.02em;
}
.cta-inner p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-demo-link {
    color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 600;
    transition: color .2s;
}
.cta-demo-link:hover { color: #fff; }
.cta-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.cta-trust-row span { font-size: .78rem; color: rgba(255,255,255,.45); }
.cta-feature-list {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    padding: 8px;
}
.cfl-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 500;
    transition: background .2s;
}
.cfl-item:last-child { border-bottom: none; }
.cfl-item:hover { background: rgba(255,107,43,.08); }
.cfl-icon { font-size: 1.1rem; }

/* ── Footer (Dark) ── */
.footer {
    background: #0a0908;
    border-top: 1px solid rgba(255,107,43,.12);
    padding: 60px 24px 28px;
    position: relative; z-index: 1;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,.4); font-size: .85rem; margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    font-size: 1.2rem; opacity: .5; transition: opacity .2s;
    text-decoration: none;
}
.footer-social a:hover { opacity: 1; }
.footer-col h4 {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: rgba(255,255,255,.9); margin-bottom: 16px;
    padding-bottom: 8px; border-bottom: 1px solid rgba(255,107,43,.15);
}
.footer-col a {
    display: block; color: rgba(255,255,255,.4); font-size: .84rem;
    padding: 5px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-bottom a { color: rgba(255,107,43,.7); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* Payment Methods */
.footer-payments {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    text-align: center;
}
.fp-icons {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.pay-icon {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1); border-radius: 4px;
    font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.7);
    transition: all .2s; letter-spacing: .02em;
}
.pay-icon:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }
.pay-icon.bkash { color: #e2136e; }
.pay-icon.bkash svg { color: #e2136e; }
.pay-icon.visa { font-style: italic; color: #1a1f71; background: #fff; border-color: #fff; }
.pay-icon.mastercard { gap: 8px; }
.mc-circles { display: flex; align-items: center; }
.mc-red { width: 14px; height: 14px; background: #eb001b; border-radius: 50%; z-index: 2; mix-blend-mode: multiply; }
.mc-orange { width: 14px; height: 14px; background: #f79e1b; border-radius: 50%; margin-left: -6px; z-index: 1; mix-blend-mode: multiply; }
.pay-icon.amex { color: #002663; background: #fff; border-color: #fff; }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-left { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .dash-mockup { transform: none; animation: none; }
    .dash-notif { display: none; }
    .features-split { grid-template-columns: 1fr; gap: 40px; }
    .features-left { position: static; text-align: center; padding-right: 0; }
    .features-left p { max-width: 500px; margin-left: auto; margin-right: auto; }
    .features-count { justify-content: center; }
    .features-left .btn-primary-lg { margin-bottom: 12px; }
    .features-right { padding-bottom: 0; }
    .stack-card { position: relative; top: auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.popular { transform: scale(1); }
    .founder-split { grid-template-columns: 1fr; gap: 40px; }
    .cta-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .cta-actions { justify-content: center; }
    .cta-trust-row { justify-content: center; }
    .price-card.popular:hover { transform: scale(1.02); }
    .about-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .founder-card { flex-direction: column; text-align: center; padding: 36px 24px; }
    .founder-tags { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: rgba(250,249,247,0.98);
        border-top: 1px solid var(--border); padding: 16px 24px; gap: 12px;
        backdrop-filter: blur(20px);
    }
    .nav-links.show { display: flex; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 0.95rem; }
    .hero-buttons .btn-primary-lg { padding: 14px 28px; }
    .stats-row { gap: 24px; }
    .stat-item .num { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .step { padding: 20px 0; }
    .steps-timeline::before { left: 24px; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 1.5rem; }
    .compare-table { font-size: 0.78rem; }
    .compare-table th, .compare-table td { padding: 10px 8px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 12px auto 0; }
    .founder-image img { width: 140px; height: 140px; }
}

/* ── Auth Pages (Login/Register) ── */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 24px; position: relative; z-index: 1;
}
.auth-container { width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .icon {
    width: 56px; height: 56px; border-radius: 0; margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.auth-logo h1 {
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.auth-logo p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.auth-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 0;
    padding: 36px; backdrop-filter: blur(20px);
}
.auth-card .form-group { margin-bottom: 20px; }
.auth-card label {
    display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em;
}
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%; padding: 12px 16px;
    background: rgba(245,243,239,0.8); border: 1px solid var(--border); border-radius: 0;
    color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif;
    outline: none; transition: all 0.2s;
}
.auth-card input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow); }
.auth-submit {
    width: 100%; padding: 14px; border-radius: 0; font-size: 0.95rem; font-weight: 700;
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none; cursor: pointer; transition: all 0.3s; margin-top: 8px;
    box-shadow: 0 4px 20px var(--glow);
}
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--muted); }
.auth-footer a { color: var(--accent2); font-weight: 600; }

.alert { padding: 12px 16px; border-radius: 0; font-size: 0.88rem; margin-bottom: 20px; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #86efac; }
.alert-warn { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: #fcd34d; }
.alert-info { background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.25); color: #7dd3fc; }

td {
    text-align: left !important;
}


/* ── Marquee Section ── */
.marquee-section {
    background: var(--card2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 16px 0; overflow: hidden; display: flex; white-space: nowrap; align-items: center;
}
.marquee-content {
    display: flex; gap: 40px; animation: scroll-left 25s linear infinite;
}
.m-item {
    display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--muted); font-size: 0.95rem; opacity: 0.8;
}
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Testimonials ── */
.testimonials-section { background: var(--bg); overflow: hidden; }
.testimonial-slider-wrap {
    position: relative; max-width: 1200px; margin: 0 auto;
}
.testimonial-slider {
    display: flex; gap: 24px; overflow-x: auto; padding: 20px 5px; scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.testimonial-slider::-webkit-scrollbar { display: none; /* Safari/Chrome */ }
.testi-card {
    flex: 0 0 calc(33.333% - 16px); background: var(--card); border: 1px solid var(--border);
    padding: 30px; border-radius: 0; scroll-snap-align: start; min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02); transition: 0.3s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: var(--accent); }
.testi-stars { color: #facc15; font-size: 1.1rem; margin-bottom: 16px; }
.testi-text { font-size: 1rem; color: var(--text); line-height: 1.6; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; flex-direction: column; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-author strong { color: var(--text); font-weight: 700; }
.testi-author span { color: var(--muted); font-size: 0.85rem; }

.slide-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--border);
    font-size: 1.2rem; color: var(--text); cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.slide-btn:hover { color: var(--primary); border-color: var(--primary); }
.prev-btn { left: -24px; }
.next-btn { right: -24px; }
@media (max-width: 768px) {
    .testi-card { flex: 0 0 calc(100% - 32px); }
    .prev-btn, .next-btn { display: none; }
}

/* ── FAQ Section ── */
.faq-section { background: var(--card2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 0; overflow: hidden;
    transition: 0.3s;
}
.faq-q {
    padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 700; font-size: 1.1rem; color: var(--text);
}
.faq-icon {
    font-size: 1.5rem; color: var(--accent); transition: 0.3s; font-weight: 400;
}
.faq-a {
    padding: 0 24px; max-height: 0; overflow: hidden; transition: 0.3s; color: var(--muted); line-height: 1.6;
}
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 16px rgba(255,107,43,0.08); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--text); }
.faq-item.active .faq-a { padding: 0 24px 20px 24px; max-height: 500px; }

@media (max-width: 1250px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }
}
@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ════════════ ANNOUNCEMENT BAR ════════════ */
.announcement-bar {
    background: linear-gradient(90deg, #ff6b2b, #d4440a);
    color: #fff; text-align: center; padding: 10px 20px;
    font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.ab-content { display: flex; align-items: center; gap: 12px; }
.ab-badge {
    background: #fff; color: #ff6b2b; font-size: 0.7rem; font-weight: 800;
    padding: 2px 8px; border-radius: 20px; text-transform: uppercase;
}
.ab-close {
    position: absolute; right: 20px; background: none; border: none;
    color: #fff; font-size: 1.2rem; cursor: pointer; opacity: 0.8;
}
.ab-close:hover { opacity: 1; }

/* ════════════ INTEGRATIONS MARQUEE ════════════ */
.integrations-section { padding: 40px 0; border-bottom: 1px solid var(--border); overflow: hidden; background: #fff; }
.integrations-title { text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }
.integration-marquee { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
.integration-marquee::before, .integration-marquee::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none; }
.integration-marquee::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.integration-marquee::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.marquee-track { display: flex; width: max-content; animation: scroll 20s linear infinite; }
.mq-group { display: flex; align-items: center; justify-content: space-around; }
.mq-group span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 1.1rem; font-weight: 700; color: var(--text);
    margin: 0 25px; opacity: 0.6; filter: grayscale(100%); transition: all 0.3s ease;
}
.mq-group span:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }

/* ── Stats Section (Sleek Compact Brand Style) ── */
.stats-section { padding: 50px 0; background: var(--bg2, #faf9f7); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.stat-box {
    background: #ffffff;
    border: 2px solid var(--accent); /* Cohesive solid brand orange border */
    padding: 24px 16px; /* Sleeker, more compact padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    opacity: 0;
    transform: translateY(20px);
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.stat-box.visible { opacity: 1; transform: translateY(0); }
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 107, 43, 0.15); /* Sleek brand glow */
}
.stat-svg {
    width: 36px; /* Sleeker compact icon sizes */
    height: 36px;
    margin-bottom: 16px;
    display: block;
}
.stat-num-wrap {
    font-size: 1.7rem; /* Sleeker compact font sizes */
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Satoshi', 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
}
.stat-divider {
    width: 28px; /* Tighter dividing lines */
    height: 2px;
    background-color: var(--accent);
    margin: 10px 0;
}
.stat-label {
    font-size: 0.85rem; /* Sleeker compact label sizes */
    font-weight: 600;
    color: var(--accent);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    margin-top: 4px;
    text-align: center;
}

/* ════════════ INTERACTIVE PRODUCT TOUR ════════════ */
.video-section { padding: 80px 0; background: var(--bg2); }
.tour-wrapper { max-width: 1200px; margin: 40px auto 0; position: relative; }
.tour-container {
    display: flex; height: 580px; background: #ffffff; border: 1px solid rgba(255, 107, 43, 0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.06); overflow: hidden; position: relative;
}
.tour-sidebar {
    width: 240px; background: #ffffff; border-right: 1px solid rgba(255, 107, 43, 0.12);
    display: flex; flex-direction: column; padding: 24px 10px; flex-shrink: 0;
}
.ts-logo {
    font-family: 'Satoshi', sans-serif; font-size: .92rem; font-weight: 900;
    color: var(--accent); display: flex; align-items: center; gap: 6px;
    margin-bottom: 24px; padding-left: 12px; text-transform: uppercase; letter-spacing: .05em;
}
.ts-menu { display: flex; flex-direction: column; gap: 4px; }
.ts-item {
    border: none; background: none; text-align: left;
    font-size: .78rem; color: var(--muted); padding: 10px 14px; font-weight: 600;
    transition: all .2s ease; cursor: pointer; display: flex; align-items: center; gap: 10px;
    width: 100%; border-radius: 0;
}
.ts-item:hover { background: var(--bg2); color: var(--text); }
.ts-item.active { background: rgba(255, 107, 43, 0.06); color: var(--accent); font-weight: 700; border-left: 3px solid var(--accent); padding-left: 11px; }
.ts-icon { font-size: 1rem; }

.tour-screen {
    flex: 1; display: flex; flex-direction: column; background: #faf9f7; position: relative; overflow: hidden;
}
.ts-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,.06);
    user-select: none; z-index: 10;
}
.ts-controls { display: flex; gap: 6px; }
.tc-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.tc-dot.red { background: #ef4444; } 
.tc-dot.yellow { background: #f59e0b; } 
.tc-dot.green { background: #22c55e; }
.ts-address {
    font-size: .68rem; font-weight: 500; color: var(--muted); background: var(--bg2);
    padding: 4px 20px; border-radius: 20px; width: 50%; text-align: center; font-family: monospace;
}
.ts-user { font-size: .68rem; font-weight: 600; color: var(--text); }

.ts-viewport { flex: 1; padding: 24px; position: relative; overflow-y: auto; z-index: 5; }
.tour-view { display: none; flex-direction: column; height: 100%; }
.tour-view.active { display: flex; animation: tabFadeIn .35s ease both; }

.view-title {
    font-family: 'Satoshi', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text);
    margin-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.06); padding-bottom: 8px;
}

/* STEP 0: Overview elements */
.tour-welcome-banner {
    background: linear-gradient(135deg, #fff8f3, #fff3eb);
    border: 1px solid rgba(255,107,43,0.12); padding: 16px 20px;
    margin-bottom: 16px; position: relative; overflow: hidden;
}
.tour-welcome-banner h3 { font-family: 'Satoshi', sans-serif; font-size: 1.1rem; font-weight: 800; }
.tour-welcome-banner h3 span { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tour-welcome-banner p { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.twb-grid { display: flex; gap: 16px; margin-top: 14px; }
.twb-card {
    background: #ffffff; border: 1px solid rgba(255,107,43,0.08); padding: 6px 12px;
    display: flex; flex-direction: column; min-width: 80px; text-align: center;
}
.twb-card strong { font-family: 'Satoshi', sans-serif; font-size: .95rem; font-weight: 800; color: var(--accent); }
.twb-card span { font-size: .58rem; color: var(--muted); text-transform: uppercase; letter-spacing: .02em; }

.tour-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.t-stat-card {
    background: #ffffff; border: 1px solid var(--border); padding: 8px 4px; text-align: center;
    display: flex; flex-direction: column; font-size: .62rem; color: var(--muted);
}
.t-stat-card strong { font-family: 'Satoshi', sans-serif; font-size: .9rem; font-weight: 800; color: var(--text); margin-top: 2px; }
.t-stat-card span { font-size: .52rem; text-transform: uppercase; letter-spacing: .02em; margin-top: 1px; }

/* STEP 1: Connected Pages */
.pages-list { display: flex; flex-direction: column; gap: 8px; }
.p-card-tour {
    background: #ffffff; border: 1px solid var(--border); padding: 12px 16px;
    display: flex; flex-direction: column; gap: 4px;
}
.pc-header { display: flex; justify-content: space-between; align-items: center; }
.pc-header strong { font-size: .84rem; color: var(--text); }
.pc-header .badge { font-size: .58rem; padding: 2px 6px; font-weight: 700; display: inline-block; }
.pc-header .badge.active { background: rgba(22,163,74,.08); color: #15803d; }
.pc-header .badge.inactive { background: rgba(220,38,38,.08); color: #b91c1c; }
.pc-details { font-size: .68rem; color: var(--muted); }
.pc-details code { font-size: .64rem; }

/* STEP 2: Product Catalog */
.products-tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.prod-card-tour {
    background: #ffffff; border: 1px solid var(--border); padding: 14px 10px;
    display: flex; flex-direction: column; text-align: center; gap: 4px;
}
.pct-emoji { font-size: 1.8rem; margin-bottom: 4px; }
.prod-card-tour strong { font-size: .78rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pct-price { font-size: .84rem; font-weight: 800; color: var(--accent); }
.pct-stock { font-size: .58rem; font-weight: 700; }

/* STEP 3: Order Management */
.table-tour-wrap { background: #ffffff; border: 1px solid var(--border); overflow: hidden; }
.tour-table { width: 100%; border-collapse: collapse; font-size: .7rem; }
.tour-table th { padding: 8px 10px; background: #faf9f7; font-weight: 700; color: var(--muted); border-bottom: 2px solid #ece7e0; }
.tour-table td { padding: 10px; border-bottom: 1px solid #f0ece6; color: var(--text); }
.badge-status { font-size: .58rem; padding: 2px 6px; font-weight: 700; }
.badge-status.pending { background: rgba(217,119,6,.08); color: #92400e; }
.badge-status.done { background: rgba(22,163,74,.08); color: #15803d; }

/* STEP 4: Leads */
.leads-list { display: flex; flex-direction: column; gap: 8px; }
.lead-item-tour {
    background: #ffffff; border: 1px solid var(--border); padding: 12px 16px;
    position: relative; display: flex; flex-direction: column; gap: 4px;
}
.li-top { display: flex; justify-content: space-between; align-items: center; }
.li-top strong { font-size: .84rem; color: var(--text); }
.li-time { font-size: .6rem; color: var(--muted); }
.li-phone { font-size: .68rem; color: var(--text); }
.li-msg { font-size: .72rem; color: var(--muted); font-style: italic; }
.li-badge {
    position: absolute; bottom: 12px; right: 16px; font-size: .56rem; font-weight: 700;
    padding: 3px 8px; background: rgba(255, 107, 43, 0.08); color: var(--accent);
}
.li-badge.solved { background: rgba(22,163,74,.08); color: #15803d; }

/* STEP 5: Event logs console */
.logs-console {
    background: #1a1410; border: 1px solid #2d231b; font-family: 'JetBrains Mono', monospace;
    font-size: .7rem; padding: 14px; height: 180px; overflow-y: auto;
    color: rgba(255,255,255,0.85); display: flex; flex-direction: column; gap: 6px;
}
.log-line { line-height: 1.4; }
.log-line.text-success { color: #22c55e; }
.log-line.text-info { color: #0ea5e9; }
.log-line.text-warn { color: #f59e0b; }
.log-line.text-danger { color: #ef4444; }

/* Subtitle Tour Guide Box Underneath the Container */
.tour-subtitle-box {
    margin-top: 20px; background: rgba(26, 20, 16, 0.92); border: 1px solid rgba(255, 107, 43, 0.25);
    padding: 20px 24px; color: #ffffff; display: flex; flex-direction: column; gap: 6px;
    box-shadow: 0 10px 40px rgba(255, 107, 43, 0.08); border-radius: 0;
    position: relative; /* Enabled absolute positioning of play/pause btn */
}
.tour-play-pause-btn {
    position: absolute; top: 18px; right: 20px; background: #ffffff;
    border: 1px solid rgba(255, 107, 43, 0.2); color: var(--accent) !important; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: all .2s ease; border-radius: 50%; outline: none; z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 43, 0.08);
}
.tour-play-pause-btn:hover {
    background: #ffffff; border-color: var(--accent); transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(255, 107, 43, 0.15);
}
.tpp-icon { display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; color: var(--accent) !important; }
.tpp-svg { width: 100%; height: 100%; fill: currentColor; display: block; }

.tso-badge {
    align-self: flex-start; padding: 2px 8px; background: rgba(22,163,74,0.15);
    color: #22c55e; font-size: .58rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .06em; border-radius: 20px; margin-bottom: 2px;
}
.tso-header { display: flex; align-items: center; gap: 8px; }
.tso-icon { font-size: 1.2rem; }
.tso-header h4 { font-family: 'Satoshi', sans-serif; font-size: .95rem; font-weight: 800; color: #ffffff; }
.tour-subtitle-box p { font-size: .82rem; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 100%; }

.tso-progress { width: 100%; height: 2px; background: rgba(255,255,255,0.1); margin-top: 10px; overflow: hidden; }
.tso-progress-bar { width: 0%; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); transition: width 0.1s linear; }

/* Responsive Tour adjustments */
@media (max-width: 768px) {
    .tour-container { flex-direction: column; height: auto; }
    .tour-sidebar { width: 100%; padding: 12px; border-right: none; border-bottom: 1px solid rgba(255, 107, 43, 0.12); }
    .ts-logo { display: none; }
    .ts-menu { flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: 8px; }
    .ts-menu::-webkit-scrollbar { display: none; }
    .ts-item { width: auto; font-size: .68rem; padding: 6px 12px; white-space: nowrap; }
    .ts-item.active { border-left: none; border-bottom: 2px solid var(--accent); padding-left: 12px; padding-bottom: 4px; }
    .tour-screen { min-height: 480px; }
    .ts-address { display: none; }
    .tour-subtitle-box { margin: 16px; border-radius: 0; background: #1a1410; }
    .tour-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .t-stat-card:nth-child(4), .t-stat-card:nth-child(5) { display: none; }
    .products-tour-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-card-tour:nth-child(3), .prod-card-tour:nth-child(4) { display: none; }
}

/* ════════════ LANGUAGE INTELLIGENCE ════════════ */
.language-section { padding: 100px 0; background: #fff; }
.lang-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lang-features { list-style: none; padding: 0; margin-top: 24px; }
.lang-features li { position: relative; padding-left: 28px; margin-bottom: 12px; font-weight: 600; color: var(--text); }
.lang-features li::before {
    content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
    background: var(--accent); border-radius: 0; display: inline-block;
}
.lang-features li::after {
    content: '✓'; position: absolute; left: 3px; top: 1px; color: #fff; font-size: 12px; font-weight: 900;
}
.lang-chat-mockup {
    background: var(--bg2); padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column;
    border: 1px solid var(--border); border-radius: 0; height: 450px; overflow-y: auto; scroll-behavior: smooth;
}
.lang-chat-mockup::-webkit-scrollbar { width: 6px; }
.lang-chat-mockup::-webkit-scrollbar-thumb { background: #ddd; }
.lang-chat-mockup .chat-msg { max-width: 85%; font-size: 0.95rem; margin-bottom: 16px; padding: 12px 16px; border-radius: 0; }
.lang-chat-mockup .chat-msg.incoming { background: #fff; border: 1px solid var(--border); align-self: flex-start; margin-right: auto; }
.lang-chat-mockup .chat-msg.outgoing { background: var(--accent); color: #fff; align-self: flex-end; margin-left: auto; }
.typing-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background-color: #fff; margin: 0 2px; animation: bounce 1.4s infinite ease-in-out both; }
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* ════════════ USE CASES ════════════ */
.usecases-section { padding: 100px 0; background: var(--bg); }
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.uc-card {
    background: #fff; padding: 40px; border-radius: 0; border: 1px solid var(--border);
    transition: all 0.3s; opacity: 0; transform: translateY(20px);
}
.uc-card.visible { opacity: 1; transform: translateY(0); }
.uc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(255,107,43,0.1); border-color: var(--accent); }
.uc-icon { font-size: 3rem; margin-bottom: 20px; }
.uc-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.uc-card p { color: var(--muted); }

/* Responsive Updates */
@media (max-width: 1000px) {
    .uc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lang-split { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .navbar { top: 56px; }
    .ab-content { flex-direction: column; gap: 4px; padding-right: 20px; text-align: left; }
    .ab-badge { align-self: flex-start; }
    .stats-grid { grid-template-columns: 1fr; }
    .uc-grid { grid-template-columns: 1fr; }
}

/* ── Cohesive Flat SVG Icons Styling ── */
.nav-brand .icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: #ffffff !important;
    color: #ffffff !important;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
}
.hero-trust .trust-svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
.feature-icon svg {
    display: block;
    width: 38px;
    height: 38px;
    transition: transform 0.3s ease;
}
.about-icon svg {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.uc-icon svg {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon svg,
.about-card:hover .about-icon svg,
.uc-card:hover .uc-icon svg {
    transform: scale(1.1);
}
.footer-social a svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
}
