
:root {
    --bg: #000000;
    --bg-alt: #ffffff;
    --card-bg: #0a0c0c;
    --text-main: #FFFFFF;
    --text-alt: #000000;
    --text-muted: #808a8a;
    --accent: #164fc8;
    --border: rgba(255, 255, 255, 0.06);
    --grad-1: #053396;
    --grad-2: #3a68cf;
    --grad-3: #c2def4;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; cursor: crosshair; }
body { background: var(--bg); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

.gradient-text {
    background: linear-gradient(to right, var(--grad-1), var(--grad-2), var(--grad-3), var(--grad-1));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s linear infinite;
    font-weight: 800;
    padding-right: 0.02em;
}

@keyframes gradientMove { to { background-position: 200% center; } }

header {
    padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0, 0.9); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; }

.menu-toggle {
    display: none;
    background: none; border: 1px solid var(--border); border-radius: 8px;
    color: #fff; cursor: pointer; padding: 0.4rem 0.5rem;
    align-items: center; justify-content: center;
    transition: border-color 0.2s;
}
.menu-toggle:hover { border-color: rgba(255,255,255,0.3); }
.menu-toggle svg { width: 20px; height: 20px; }

.header-nav { display: flex; gap: 0.5rem; align-items: center; }
.nav-link {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
    padding: 0.5rem 1rem; border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.nav-link:hover { color: #fff; border-color: var(--border); }
.nav-link.active { color: #fff; background: rgba(22,79,200,0.15); border-color: rgba(22,79,200,0.3); }

@media (max-width: 768px) {
    header { flex-wrap: wrap; padding: 1rem 5%; }
    .header-tagline { display: none; }
    .menu-toggle { display: flex; }
    .header-nav {
        display: none; flex-direction: column; align-items: stretch;
        width: 100%; padding: 0.75rem 0 0.25rem; gap: 0.25rem;
    }
    .header-nav.open { display: flex; }
    .nav-link { text-align: center; border-radius: 8px; }
}

.hero-auto { height: calc(100vh - 72px); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 5%; text-align: center; }
.hero-auto .badge { margin-bottom: 1.5rem; }

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.hero > *:not(canvas):not(.hero-glow) { position: relative; z-index: 1; }

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(22, 79, 200, 0.08) 0%, rgba(5, 51, 150, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -55%) scale(1.12); }
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 0.95; letter-spacing: -4px; margin-bottom: 2rem; font-weight: 800; }
.hero p { color: var(--text-muted); font-size: 1.25rem; max-width: 700px; margin: 0 auto 3.5rem; font-weight: 300; }

.btn-blue-grad {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 1.2rem 2.5rem; border-radius: 50px;
    background: linear-gradient(135deg, var(--grad-1) 0%, var(--grad-2) 100%);
    color: #ffffff; font-weight: 700; text-decoration: none; letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(22, 79, 200, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative; overflow: hidden;
}
.btn-blue-grad::before {
    content: ''; position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.btn-blue-grad:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(22, 79, 200, 0.5), 0 0 60px rgba(58, 104, 207, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-blue-grad:hover::before { left: 160%; }
.btn-blue-grad:active {
    transform: translateY(-1px) scale(0.99);
    transition-duration: 0.1s;
}

.pipeline-section {
    position: relative;
    padding: 180px 5% 140px;
    background: transparent;
    overflow: hidden;
    margin-top: -8px;
}

.pipeline-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}
.pipeline-wave svg {
    display: block;
    width: 100%;
    height: 180px;
}
@media (max-width: 768px) {
    .pipeline-wave svg { height: 100px; }
}

.pipeline-header {
    max-width: 1100px;
    margin: 0 auto 80px;
    text-align: center;
}
.pipeline-label {
    display: inline-block;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.pipeline-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.pipeline-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pipeline-section {
        padding: 100px 0 120px;
        overflow: hidden;
    }
}
.pipeline-container { max-width: 1100px; margin: 0 auto; position: relative; min-height: 200px; }

@media (max-width: 768px) {
    .pipeline-container {
        min-height: unset;
        padding: 0;
        margin: 0 auto;
    }
}
#pipeline-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.nodes-wrapper { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 1rem; }
.pipeline-step { display: flex; flex-direction: column; align-items: center; width: 220px; transition: all 0.5s ease; }

.step-dot {
    width: 60px; height: 60px;
    background: #060808; border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative; flex-shrink: 0;
}
.pipeline-step.active .step-dot::after {
    content: ''; position: absolute; inset: 0; border-radius: 12px;
    background: radial-gradient(circle at center, rgba(22, 79, 200, 0.4) 0%, transparent 70%);
    animation: innerGlow 2s infinite ease-in-out;
}
@keyframes innerGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}
.step-dot svg { display: block; transform: rotate(-45deg); width: 24px; height: 24px; }
.pipeline-step.active .step-dot {
    border-color: #164fc8; color: #ffffff;
    background: rgba(22, 79, 200, 0.1);
    box-shadow: 0 0 25px rgba(22, 79, 200, 0.2);
    transform: translateY(-10px) rotate(45deg) scale(1.1);
}
.step-content { text-align: center; }
.node-number { display: block; font-size: 0.65rem; font-weight: 800; color: #164fc8; letter-spacing: 3px; margin-bottom: 6px; opacity: 0.6; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; font-weight: 300; opacity: 0; transform: translateY(6px); transition: opacity 0.5s ease, transform 0.5s ease; }
.pipeline-step.active .step-desc { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .nodes-wrapper { flex-direction: column; align-items: center; gap: 48px; overflow-x: hidden; padding: 20px 5%; }
    .pipeline-step { width: 100%; max-width: 400px; flex-direction: row; align-items: flex-start; gap: 1.25rem; }
    .step-dot { width: 48px; height: 48px; margin-bottom: 0; flex-shrink: 0; }
    .step-dot svg { width: 18px; height: 18px; }
    .step-content { text-align: left; }
    .node-number { font-size: 0.6rem; letter-spacing: 2px; }
    .step-title { font-size: 0.95rem; }
    .step-desc { font-size: 0.78rem; }
    .pipeline-step.active .step-dot { transform: rotate(45deg) scale(1.1); }
    .pipeline-header { margin-bottom: 50px; }
    .pipeline-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}

.card, .project-card {
    background: var(--card-bg);
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.card:hover, .project-card:hover { border-color: rgba(22, 79, 200, 0.4); background: #0c0f0f; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; padding: 2rem 5% 8rem; }
.card { padding: 3.5rem; border-radius: 32px; border: 1px solid var(--border); position: relative; }
.card h3 { font-size: 1.6rem; margin-bottom: 1rem; letter-spacing: -0.5px; }
.card p { color: var(--text-muted); font-size: 1rem; }

.portfolio { padding: 220px 5% 8rem; background: #ffffff; color: #000000; position: relative; z-index: 1; }
@media (max-width: 768px) {
    .portfolio { padding-top: 130px; }
}
.portfolio-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}
.portfolio-wave svg {
    display: block;
    width: 100%;
    height: 222px;
}
@media (max-width: 768px) {
    .portfolio-wave svg { height: 132px; }
}
.section-header { margin-bottom: 5rem; text-align: center; }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -2px; margin-top: 0.5rem; color: #000000; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
.project-card {
    position: relative; border-radius: 28px;
    border: 1px solid rgba(0,0,0,0.08); overflow: hidden;
    display: flex; flex-direction: column;
    background: #ffffff;
}
.project-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.project-img {
    width: 100%; height: 360px;
    background: #fafafa;
    display: flex; align-items: stretch; justify-content: center;
    position: relative; overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ===================== MOCKUP SHELL ===================== */
.mock-shell {
    width: 100%; height: 100%;
    background: #ffffff;
    display: flex; flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.project-card:hover .mock-shell { transform: scale(1.03); }

.mock-bar {
    background: #f1f1f1;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 7px 10px;
    display: flex; align-items: center; gap: 7px;
    flex-shrink: 0;
}
.mock-dots { display: flex; gap: 4px; }
.mock-d { width: 7px; height: 7px; border-radius: 50%; }
.mock-dr { background: #ff5f57; }
.mock-dy { background: #ffbd2e; }
.mock-dg { background: #164fc8; }
.mock-urlbar {
    flex: 1; height: 19px;
    background: #ffffff;
    border-radius: 4px; border: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; padding: 0 8px; gap: 5px;
}
.mock-urltext { font-size: 9px; color: rgba(0,0,0,0.3); font-family: monospace; }
.mock-lock { font-size: 8px; color: #164fc8; opacity: 0.6; }
.mock-screen { flex: 1; overflow: hidden; position: relative; }

/* ---- shared animations ---- */
@keyframes mock-shimmer {
    0% { background-position: -300% center; }
    100% { background-position: 300% center; }
}
.mock-sk {
    background: linear-gradient(90deg, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 75%);
    background-size: 300% 100%;
    animation: mock-shimmer 2s ease-in-out infinite;
    border-radius: 3px;
}
@keyframes mock-blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
@keyframes mock-ctaPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(22, 79, 200, 0); }
    55% { box-shadow: 0 0 0 5px rgba(22, 79, 200, 0.2); }
}
@keyframes mock-cardlight {
    0%,70%,100% { border-color: rgba(0,0,0,0.07); background: rgba(0,0,0,0.02); }
    35% { border-color: rgba(22, 79, 200, 0.4); background: rgba(22, 79, 200, 0.05); }
}
@keyframes mock-dotPop { 0%,100%{transform:scale(1);} 50%{transform:scale(1.4);} }
@keyframes mock-featGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(22, 79, 200, 0); }
    50% { box-shadow: 0 0 10px 2px rgba(22, 79, 200, 0.1); }
}
@keyframes mock-drawLine { to { stroke-dashoffset: 0; } }
@keyframes mock-fadeIn { to { opacity: 1; } }
@keyframes mock-dotAppear { to { opacity: 1; } }
@keyframes mock-ringPulse { 0%{opacity:.6;} 100%{opacity:0;} }
@keyframes mock-barIn { from { width: 0; } }
@keyframes mock-ping { 0%,100%{transform:scale(1);opacity:1;} 60%{transform:scale(1.6);opacity:0.3;} }
@keyframes mock-flyDot {
    0%   { opacity:1; transform: translate(0,0) scale(1); }
    100% { opacity:0; transform: translate(0, 0) scale(0.4); }
}


/* ===================== VITRINE MOCKUP ===================== */
.mv-screen { background: #ffffff; height: 100%; display: flex; flex-direction: column; }
.mv-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 14px; border-bottom: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.015); flex-shrink: 0;
}
.mv-navlogo { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: rgba(0,0,0,0.7); font-style: italic; }
.mv-navlinks { display: flex; gap: 14px; }
.mv-navlink { font-size: 9px; color: rgba(0,0,0,0.3); }
.mv-navlink.active { color: #164fc8; }
.mv-body { padding: 14px 16px 12px; flex: 1; display: flex; flex-direction: column; }
.mv-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(22, 79, 200, 0.1); border: 1px solid rgba(22, 79, 200, 0.2);
    border-radius: 20px; padding: 3px 9px; margin-bottom: 10px; width: fit-content;
}
.mv-tag-dot { width: 5px; height: 5px; background: #164fc8; border-radius: 50%; animation: mock-dotPop 2s ease-in-out infinite; }
.mv-tag-text { font-size: 9px; color: #164fc8; letter-spacing: 0.5px; font-weight: 500; }
.mv-headline { font-size: 16px; font-weight: 700; color: rgba(0,0,0,0.9); line-height: 1.25; letter-spacing: -0.3px; margin-bottom: 7px; }
.mv-headline span { color: #164fc8; }
.mv-sub { font-size: 9px; color: rgba(0,0,0,0.45); line-height: 1.5; margin-bottom: 13px; max-width: 200px; }
.mv-cursor { display: inline-block; width: 1.5px; height: 12px; background: #164fc8; border-radius: 1px; margin-left: 1px; vertical-align: middle; animation: mock-blink 1s step-end infinite; }
.mv-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: #164fc8; border-radius: 20px; padding: 6px 13px;
    width: fit-content; margin-bottom: 14px;
    animation: mock-ctaPulse 2.8s ease-in-out infinite;
}
.mv-cta-label { font-size: 9px; font-weight: 600; color: #fff; }
.mv-cta-arrow { font-size: 10px; color: rgba(255,255,255,0.7); }
.mv-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.mv-card {
    border: 1px solid rgba(0,0,0,0.07); background: rgba(0,0,0,0.02);
    border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 5px;
}
.mv-card:nth-child(1) { animation: mock-cardlight 3.5s ease-in-out infinite 0s; }
.mv-card:nth-child(2) { animation: mock-cardlight 3.5s ease-in-out infinite 1.1s; }
.mv-card:nth-child(3) { animation: mock-cardlight 3.5s ease-in-out infinite 2.2s; }
.mv-card-ico { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.mv-card-title { font-size: 9px; font-weight: 600; color: rgba(0,0,0,0.75); }
.mv-card-desc { font-size: 8px; color: rgba(0,0,0,0.3); line-height: 1.4; }

/* ===================== E-COMMERCE MOCKUP ===================== */
.mec-screen { background: #ffffff; height: 100%; display: flex; flex-direction: column; position: relative; }
.mec-nav {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #fafafa; flex-shrink: 0;
}
.mec-brand { font-size: 11px; font-weight: 600; color: rgba(0,0,0,0.65); letter-spacing: -0.2px; }
.mec-search {
    flex: 1; height: 18px;
    background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.07);
    border-radius: 4px; display: flex; align-items: center; padding: 0 7px; gap: 4px;
}
.mec-search-icon { font-size: 9px; color: rgba(0,0,0,0.2); }
.mec-search-ph { font-size: 8px; color: rgba(0,0,0,0.18); }
.mec-cart-wrap { position: relative; }
.mec-cart-ico { font-size: 13px; color: rgba(0,0,0,0.4); }
.mec-bdot {
    position: absolute; top: -3px; right: -3px;
    width: 7px; height: 7px; background: #164fc8; border-radius: 50%;
    border: 1.5px solid #fafafa;
    animation: mock-dotPop 2s ease-in-out infinite;
}
.mec-cats { display: flex; gap: 5px; padding: 7px 12px; border-bottom: 1px solid rgba(0,0,0,0.04); flex-shrink: 0; }
.mec-cat { font-size: 8px; padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.08); color: rgba(0,0,0,0.4); }
.mec-cat.on { background: rgba(22, 79, 200, 0.15); border-color: rgba(22, 79, 200, 0.4); color: #164fc8; font-weight: 600; }
.mec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 9px 12px; }
.mec-prod { border: 1px solid rgba(0,0,0,0.07); background: rgba(0,0,0,0.02); border-radius: 8px; overflow: hidden; }
.mec-prod.feat { border-color: rgba(22, 79, 200, 0.3); animation: mock-featGlow 3s ease-in-out infinite; }
.mec-thumb { height: 42px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 16px; background: rgba(0,0,0,0.025); }
.mec-prod.feat .mec-thumb { background: rgba(22, 79, 200, 0.06); }
.mec-pinfo { padding: 6px; }
.mec-pname { font-size: 8px; font-weight: 600; color: rgba(0,0,0,0.7); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mec-pcat { font-size: 7px; color: rgba(0,0,0,0.3); margin-bottom: 5px; }
.mec-pfoot { display: flex; justify-content: space-between; align-items: center; }
.mec-price { font-size: 9px; font-weight: 700; color: #164fc8; }
.mec-add { width: 16px; height: 16px; border-radius: 4px; background: rgba(22, 79, 200, 0.2); display: flex; align-items: center; justify-content: center; font-size: 11px; color: #164fc8; position: relative; }
.mec-stars { display: flex; gap: 1px; margin-bottom: 3px; }
.mec-star { font-size: 7px; color: #f59e0b; }
.mec-star.dim { opacity: 0.2; }
.mec-fly { position: absolute; width: 6px; height: 6px; background: #164fc8; border-radius: 50%; pointer-events: none; opacity: 0; z-index: 10; }
.mec-fly.go { animation: mock-flyDot 0.65s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }

/* ===================== DASHBOARD MOCKUP ===================== */
.mdb-screen { background: #ffffff; height: 100%; display: flex; }
.mdb-side {
    width: 42px; flex-shrink: 0; background: #f5f5f5;
    border-right: 1px solid rgba(0,0,0,0.06);
    display: flex; flex-direction: column; align-items: center; padding: 10px 0; gap: 6px;
}
.mdb-sico { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 12px; position: relative; color: rgba(0,0,0,0.4); }
.mdb-sico.on { background: rgba(22, 79, 200, 0.15); color: #164fc8; }
.mdb-sep { width: 22px; height: 1px; background: rgba(0,0,0,0.05); margin: 2px 0; }
.mdb-notif { position: absolute; top: 1px; right: 1px; width: 6px; height: 6px; background: #164fc8; border-radius: 50%; border: 1.5px solid #f5f5f5; animation: mock-ping 2.5s ease-in-out 2s infinite; }
@keyframes mock-ping { 0%,100%{transform:scale(1);opacity:1;} 60%{transform:scale(1.6);opacity:0.3;} }
.mdb-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.mdb-head {
    padding: 8px 11px; border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.mdb-pagetitle { font-size: 11px; font-weight: 600; color: rgba(0,0,0,0.75); }
.mdb-pagesub { font-size: 8px; color: rgba(0,0,0,0.3); margin-top: 1px; }
.mdb-period { font-size: 8px; color: rgba(0,0,0,0.35); background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08); border-radius: 4px; padding: 3px 7px; }
.mdb-av { width: 22px; height: 22px; border-radius: 50%; background: rgba(22, 79, 200, 0.2); border: 1.5px solid rgba(22, 79, 200, 0.4); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 600; color: #164fc8; margin-left: 6px; }
.mdb-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 8px 11px; flex-shrink: 0; }
.mdb-kpi { background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.05); border-radius: 7px; padding: 7px 8px; }
.mdb-kpi-lbl { font-size: 7.5px; color: rgba(0,0,0,0.4); margin-bottom: 4px; }
.mdb-kpi-val { font-size: 13px; font-weight: 700; color: #000; margin-bottom: 3px; }
.mdb-kpi-delta { display: flex; align-items: center; gap: 3px; font-size: 7.5px; }
.mdb-body { flex: 1; padding: 0 11px 8px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.mdb-chart-box {
    flex: 1; border: 1px solid rgba(0,0,0,0.06); border-radius: 7px;
    overflow: hidden; position: relative; background: rgba(0,0,0,0.01); min-height: 60px;
}
.mdb-chart-hd {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 9px; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mdb-chart-title { font-size: 8.5px; font-weight: 600; color: rgba(0,0,0,0.55); }
.mdb-leg { display: flex; gap: 8px; }
.mdb-leg-item { display: flex; align-items: center; gap: 3px; font-size: 7.5px; color: rgba(0,0,0,0.3); }
.mdb-leg-dot { width: 6px; height: 6px; border-radius: 50%; }
.mdb-chart-inner { position: absolute; bottom: 0; left: 0; right: 0; top: 30px; }
.mdb-chart-svg { width: 100%; height: 100%; }
#mdb-cline { stroke-dasharray: 500; stroke-dashoffset: 500; animation: mock-drawLine 2s cubic-bezier(0.22,1,0.36,1) 0.5s forwards; }
@keyframes mock-drawLine { to { stroke-dashoffset: 0; } }
#mdb-cfill { opacity: 0; animation: mock-fadeIn 0.5s ease 2s forwards; }
@keyframes mock-fadeIn { to { opacity: 1; } }
#mdb-cdash { stroke-dasharray: 500; stroke-dashoffset: 500; animation: mock-drawLine 2s cubic-bezier(0.22,1,0.36,1) 0.8s forwards; }
#mdb-cdot { opacity: 0; animation: mock-dotAppear 0.4s cubic-bezier(0.34,1.56,0.64,1) 2.3s forwards; }
@keyframes mock-dotAppear { to { opacity: 1; } }
#mdb-cring { animation: mock-ringPulse 1.6s ease-out 2.5s infinite; }
@keyframes mock-ringPulse { 0%{opacity:.6;} 100%{opacity:0;} }
.mdb-rows { flex-shrink: 0; border: 1px solid rgba(0,0,0,0.06); border-radius: 7px; overflow: hidden; }
.mdb-row { display: flex; align-items: center; gap: 8px; padding: 5px 9px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.mdb-row:last-child { border-bottom: none; }
.mdb-row-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mdb-row-name { font-size: 8px; color: rgba(0,0,0,0.5); width: 46px; flex-shrink: 0; }
.mdb-row-bar-bg { flex: 1; height: 4px; background: rgba(0,0,0,0.05); border-radius: 2px; overflow: hidden; }
.mdb-row-bar { height: 100%; border-radius: 2px; width: 0; animation: mock-barIn 1.4s cubic-bezier(0.22,1,0.36,1) 0.6s forwards; }
@keyframes mock-barIn { from { width: 0; } }
.mdb-row-val { font-size: 8px; color: rgba(0,0,0,0.4); width: 28px; text-align: right; flex-shrink: 0; }

/* ===================== PROJECT INFO (unchanged) ===================== */

.project-info { padding: 2.5rem; background: #ffffff; }
.project-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 0.5rem;
    display: block;
    font-weight: 700;
}
.project-info h3 {  color: var(--accent); font-weight: 700; font-size: 1.8rem; margin-bottom: 1rem; }
.project-info p { color: rgba(0,0,0,0.6); font-size: 0.95rem; }

@media (max-width: 1024px) { .portfolio-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .project-img { height: 260px; }
}

footer { padding: 8rem 5% 4rem; text-align: center; background: radial-gradient(circle at bottom, rgba(22, 79, 200, 0.05) 0%, transparent 70%); }
.cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 2rem; font-weight: 800; letter-spacing: -2px; }
.signature { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.heart { color: #164fc8; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

@media (max-width: 768px) { .nodes-container { flex-direction: column; gap: 4rem; align-items: center; } .pipeline-line { display: none; } }

.btn-blue-grad svg[data-lucide="sparkles"] { transform-origin: center; animation: sparklePulse 2s infinite ease-in-out; }
.btn-blue-grad:hover svg[data-lucide="sparkles"] { animation-duration: 1s; }
@keyframes sparklePulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.3) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 5px var(--grad-2)); }
}

/* ===================== PAIN SECTION ===================== */
.pain-section { padding: 6rem 5% 4rem; background: var(--bg); }
.pain-section .container { max-width: 1100px; margin: 0 auto; }
.badge-red {
    display: inline-block;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -2px;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}
.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.pain-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}
.pain-item:hover {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    transform: translateY(-5px);
}
.pain-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}
.pain-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.pain-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pain-stat {
    text-align: center;
    flex: 1;
}
.pain-stat-value {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 0.5rem;
}
.pain-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 200px;
    margin: 0 auto;
}
.pain-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}
.pain-bridge {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: 3rem;
}
.pain-bridge strong {
    color: var(--text-main);
    font-weight: 700;
}
@media (max-width: 768px) {
    .pain-list { grid-template-columns: 1fr; }
    .pain-stats { flex-direction: column; gap: 2rem; }
    .pain-stat-divider { display: none; }
}

/* ===================== SECURITY FEATURES SECTION ===================== */
.sec-features-section {
    padding: 6rem 5% 5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.sec-features-section .container { max-width: 1100px; margin: 0 auto; }
.sec-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.sec-feature {
    background: rgba(22, 79, 200, 0.04);
    border: 1px solid rgba(22, 79, 200, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}
.sec-feature:hover {
    border-color: rgba(22, 79, 200, 0.4);
    background: rgba(22, 79, 200, 0.08);
    transform: translateY(-5px);
}
.sec-feature-icon {
    width: 44px; height: 44px;
    background: rgba(22, 79, 200, 0.12);
    border: 1px solid rgba(22, 79, 200, 0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: #164fc8;
}
.sec-feature-icon svg { width: 20px; height: 20px; }
.sec-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}
.sec-feature p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}
@media (max-width: 768px) {
    .sec-features-grid { grid-template-columns: 1fr; }
}

/* ===================== TECH SECTION ===================== */
.tech-section {
    padding: 220px 0 3rem;
    background: #ffffff;
    color: #000000;
    position: relative;
    overflow: hidden;
}
.tech-wave-top {
    position: absolute; top: 0; left: 0;
    width: 100%; pointer-events: none; line-height: 0;
    background: #000000;
}
.tech-wave-top svg { display: block; width: 100%; height: 200px; margin-bottom: -2px; }
.trusted-wave-bottom {
    position: absolute; bottom: 0; left: 0;
    width: 100%; pointer-events: none; line-height: 0;
    background: #000000;
}
.trusted-wave-bottom svg { display: block; width: 100%; height: 200px; margin-top: -2px; }

.tech-header {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 5rem;
}
.tech-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.25rem;
}
.tech-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; letter-spacing: -2px; line-height: 1.1;
    color: #000000;
}

/* Marquee */
.tech-marquee-wrapper {
    position: relative;
    overflow: hidden;
}


@keyframes scroll-tech {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.tech-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 0;
    animation: scroll-tech 32s linear infinite;
}
.tech-marquee-wrapper:hover .tech-track { animation-play-state: paused; }

.tech-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 1rem;
    width: 160px; height: 140px;
    background: #0a0c0c;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: default;
}
.tech-item:hover {
    border-color: rgba(22, 79, 200, 0.5);
    transform: translateY(-4px);
}
.tech-item img, .tech-item > svg {
    width: 56px; height: 56px; object-fit: contain; flex-shrink: 0;
}
.tech-item span {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    color: #ffffff; text-align: center; line-height: 1.3;
}

@media (max-width: 768px) {
    .tech-section { padding: 140px 0 3rem; }
    .tech-wave-top svg { height: 140px; }
    .trusted-wave-bottom svg { height: 140px; }
    .tech-header { margin-bottom: 3.5rem; }
    .tech-item { width: 130px; height: 118px; }
    .tech-item img, .tech-item > svg { width: 44px; height: 44px; }
    .tech-marquee-wrapper::before,
    .tech-marquee-wrapper::after { width: 60px; }
}

/* ===================== TRUSTED SECTION ===================== */
.trusted-section {
    padding: 3rem 0 200px;
    text-align: center;
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    position: relative;
}
.trusted-header {
    padding: 0 5%;
    margin-bottom: 5rem;
}
.trusted-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.25rem;
}
.trusted-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; letter-spacing: -2px; line-height: 1.1;
    color: #000000;
}

/* Marquee */
.trusted-marquee-wrapper {
    position: relative; overflow: hidden;
}
.trusted-marquee-wrapper::before,
.trusted-marquee-wrapper::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none;
}
.trusted-marquee-wrapper::before { left: 0;  background: linear-gradient(to right, #fff 0%, transparent 100%); }
.trusted-marquee-wrapper::after  { right: 0; background: linear-gradient(to left,  #fff 0%, transparent 100%); }

@keyframes scroll-trusted {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trusted-track {
    display: flex; align-items: center; gap: 3rem;
    width: max-content; padding: 1rem 0;
    animation: scroll-trusted 28s linear infinite;
}
.trusted-marquee-wrapper:hover .trusted-track { animation-play-state: paused; }

.trusted-logo-item {
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; mix-blend-mode: normal;
    width: 160px; height: 140px;
    background: #0a0c0c;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    transition: border-color 0.3s, transform 0.3s;
}
.trusted-logo-item:hover { border-color: rgba(22,79,200,0.5); transform: translateY(-4px); }
.trusted-logo-item img {
    max-height: 60px; max-width: 120px;
    width: auto; object-fit: contain;
}
.trusted-logo-item img.logo-dark-bg { filter: invert(1); }
.trusted-logo-item img.logo-rounded { border-radius: 10px; }
.trusted-logo-text {
    font-size: 0.9rem; font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
    color: #fff; border: 1px solid rgba(255,255,255,0.2);
    padding: 0.6rem 1.4rem; border-radius: 8px;
    background: rgba(255,255,255,0.04); white-space: nowrap;
}
@media (max-width: 768px) {
    .trusted-section { padding: 2rem 0 140px; }
    .trusted-header { margin-bottom: 3.5rem; }
    .trusted-logo-item { width: 130px; height: 118px; }
    .trusted-logo-item img { max-height: 44px; max-width: 100px; }
    .trusted-marquee-wrapper::before,
    .trusted-marquee-wrapper::after { width: 60px; }
}