/* ===== CSS Variables & Reset ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --ink: #0A0F1E;
    --paper: #eef1eb;
    --lime: #00A3E0;
    --navy: #002D62;
    --muted: #889493;
    --line: #ffffff18;
    --font-main: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--ink);
    color: #e8ecf4;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-family: var(--font-main);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
em { color: var(--lime); font-style: normal; }
h1, h2, h3, p { margin-top: 0; }/* ===== Animated Grid Background ===== */
.gridBg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: var(--ink);
}

.gridBg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0,163,224,0.20) 1.5px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(0,45,98,0.25) 1.5px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(0,163,224,0.12) 1.5px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0,45,98,0.18) 1.5px, transparent 2px);
    background-size: 80px 80px, 80px 80px, 80px 80px, 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 100%);
            mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 100%);
    animation: gridDrift 25s linear infinite;
}

.gridBg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0,163,224,0.55) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(0,45,98,0.4) 1px, transparent 1.5px);
    background-size: 140px 140px, 210px 210px;
    background-position: 0 0, 70px 50px;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 10%, transparent 85%);
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 10%, transparent 85%);
    animation: nodePulse 8s ease-in-out infinite alternate;
}

@keyframes gridDrift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    50%  { transform: translate(-20px, 15px) rotate(1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes nodePulse {
    0%   { opacity: 0.4; }
    100% { opacity: 0.9; }
}/* ===== Header ===== */
.header {
    z-index: 50;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    background: #0A0F1Ed0;
    align-items: center;
    gap: 16px;
    height: 78px;
    padding: 0 4.5vw;
    display: flex;
    position: sticky;
    top: 0;
}

.logo {
    align-items: center;
    display: flex;
    flex-shrink: 0;
}

.logoImg {
    height: 36px;
    width: auto;
    transition: transform .3s;
    filter: brightness(1.2) contrast(1.1);
}

.logo:hover .logoImg {
    transform: scale(1.06);
    filter: brightness(1.4) contrast(1.15);
}

.nav {
    color: #8a96a8;
    gap: 27px;
    margin: 0 auto;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav a {
    white-space: nowrap;
    font-weight: 500;
    transition: color .2s;
    letter-spacing: .03em;
}

.nav a:hover { color: var(--lime); }

.headerCta {
    flex-shrink: 0;
}

.menuBtn { display: none; }

/* ===== Footer ===== */
footer {
    border-top: 1px solid var(--line);
    color: #87928f;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    padding: 6vw 4.5vw 25px;
    font-size: 11px;
    display: grid;
}

footer > div {
    flex-direction: column;
    gap: 13px;
    display: flex;
}

footer b { color: #fff; }

footer .logoImg {
    height: 32px;
    width: auto;
    filter: brightness(1.1);
}

.footerBottom {
    border-top: 1px solid var(--line);
    flex-direction: row;
    grid-column: 1/-1;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
}/* ===== Buttons ===== */
.btn {
    border: 1px solid var(--lime);
    background: var(--lime);
    color: #fff;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 24px;
    min-height: 52px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 700;
    transition: all .25s;
    display: inline-flex;
    border-radius: 6px;
}

.btn:hover {
    background: #33b5e8;
    transform: translateY(-2px);
}

.btnSmall {
    min-height: 42px;
    border-radius: 6px;
}

.btnGhost {
    color: #fff;
    background: 0 0;
    border-color: #53605e;
    border-radius: 6px;
}

.actions {
    gap: 12px;
    display: flex;
}

.signature {
    border-top: 1px solid var(--line);
    letter-spacing: .14em;
    gap: 20px;
    margin-top: 70px;
    padding-top: 18px;
    font-size: 11px;
    display: flex;
}

.signature span { color: #7f8c89; }/* ===== Hero ===== */
.hero {
    background: radial-gradient(circle at 72% 38%, #577f631f, #0000 30%);
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 5vw;
    min-height: calc(100vh - 78px);
    padding: 8vw 4.5vw 5vw;
    display: grid;
}

.eyebrow {
    color: #aeb9b6;
    letter-spacing: .18em;
    text-transform: uppercase;
    align-items: center;
    gap: 10px;
    margin: 0 0 30px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
}

.eyebrow > span {
    background: var(--lime);
    width: 26px;
    height: 1px;
}

.hero h1, .innerHero h1 {
    letter-spacing: -.055em;
    max-width: 1000px;
    margin-bottom: 30px;
    font-size: clamp(46px, 5.4vw, 86px);
    font-weight: 500;
    line-height: 1.01;
}

.heroCopy > p, .innerHero > p, .innerHero > div > p {
    color: #aab4b1;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== Flow Diagram ===== */
.flow {
    border: 1px solid var(--line);
    background-color: #0000;
    background-image: linear-gradient(#ffffff08 1px, #0000 1px), linear-gradient(90deg, #ffffff08 1px, #0000 1px);
    background-size: 45px 45px;
    height: 570px;
    position: relative;
    overflow: hidden;
}

.flow::before {
    content: "";
    background: radial-gradient(circle, #00A3E01c, #0000 45%);
    position: absolute;
    inset: 0;
}

.flowTop, .dashHeader {
    letter-spacing: .15em;
    color: #7e8b88;
    border-bottom: 1px solid var(--line);
    justify-content: space-between;
    padding: 18px;
    font-size: 9px;
    display: flex;
}

.live, .dashHeader b { color: var(--lime); }

.flow svg {
    width: 100%;
    height: 440px;
    position: absolute;
    inset: 62px 0;
}

.flow svg path {
    fill: none;
    stroke: #00A3E059;
    stroke-dasharray: 7;
}

.flow svg circle { fill: var(--lime); }

.node {
    z-index: 2;
    background: #0a1415;
    border: 1px solid #43504d;
    width: 124px;
    padding: 13px;
    position: absolute;
}

.node small {
    color: #71807d;
    letter-spacing: .15em;
    font-size: 7px;
    display: block;
}

.node b {
    color: var(--lime);
    margin: 9px 0;
    font-size: 22px;
    display: block;
}

.node > span {
    color: #8c9895;
    font-size: 8px;
}

.core {
    border-color: var(--lime);
    width: 150px;
    height: 116px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.n1 { top: 16%; left: 7%; }
.n2 { top: 16%; right: 7%; }
.n3 { bottom: 17%; right: 7%; }

.flowStats {
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.flowStats span {
    border-right: 1px solid var(--line);
    color: #75827f;
    padding: 15px;
    font-size: 8px;
}

.flowStats b {
    color: #fff;
    font-size: 15px;
    display: block;
}

/* ===== Inner Hero ===== */
.innerHero {
    background: radial-gradient(circle at 80%, #00A3E012, #0000 30%);
    flex-direction: column;
    justify-content: center;
    min-height: 660px;
    padding: 10vw 4.5vw 8vw;
    display: flex;
}

.innerHero > p { font-size: 18px; }/* ===== Sections Layout ===== */
.problems, .solutions, .process, .sectors, .innerContent {
    padding: 9vw 4.5vw;
}

.sectionHead {
    max-width: 860px;
    margin-bottom: 65px;
}

.sectionHead h2, .transform h2, .sales h2, .principle h2, .finalCta h2 {
    letter-spacing: -.045em;
    font-size: clamp(38px, 4.4vw, 68px);
    font-weight: 500;
    line-height: 1.06;
}

.sectionHead > p {
    color: #8c9895;
    max-width: 600px;
    line-height: 1.7;
}

/* ===== Problem Grid / Cap Grid ===== */
.problemGrid, .capGrid {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
    display: grid;
}

.problemGrid article, .capGrid article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 220px;
    padding: 28px;
    transition: all .25s;
}

.problemGrid article:hover, .capGrid article:hover {
    background: #0e191a;
    border-color: var(--lime);
    box-shadow: inset 0 0 0 1px var(--lime);
}

.problemGrid span, .solutionGrid > a > span, .timeline article > span, .capGrid article > span {
    color: var(--lime);
    letter-spacing: .15em;
    font-size: 9px;
}

.problemGrid h3, .solutionGrid h3, .timeline h3 {
    margin: 44px 0 15px;
    font-size: 22px;
}

.problemGrid p, .solutionGrid p, .timeline p, .capGrid p {
    color: #899592;
    font-size: 13px;
    line-height: 1.6;
}

/* ===== Transform ===== */
.transform {
    background: var(--paper);
    color: var(--ink);
    grid-template-columns: 1fr 1.2fr;
    gap: 8vw;
    padding: 9vw 4.5vw;
    display: grid;
}

.transform .eyebrow, .principle .eyebrow {
    color: #596260;
}

.compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    display: grid;
}

.compare article {
    background: #e5e8e1;
    border: 1px solid #c6cbc5;
    padding: 28px;
}

.compare small {
    letter-spacing: .15em;
    color: #6c7572;
    margin-bottom: 24px;
    font-size: 8px;
    display: block;
}

.compare span {
    border-top: 1px solid #c7ccc5;
    padding: 13px 0;
    font-size: 12px;
    display: block;
}

.compare .after {
    color: #fff;
    background: #101a1b;
    border-color: #101a1b;
    transform: scale(1.06);
}

.compare .after span {
    border-color: #303b39;
}

.switch {
    background: var(--lime);
    z-index: 2;
    border-radius: 50%;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: -8px;
    display: grid;
}

/* ===== Solutions Grid ===== */
.solutionGrid {
    border: 1px solid var(--line);
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}

.solutionGrid a {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 310px;
    padding: 35px;
    transition: all .3s;
    position: relative;
}

.project-terminal {
    background: #111c1d;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-x: auto;
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.terminal-dots {
    display: flex;
    gap: 0.3rem;
    margin-right: 1rem;
}

.terminal-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.terminal-title {
    font-weight: 600;
    color: var(--lime);
}

.project-actions {
    margin-top: 1rem;
}

.project-header {
    margin-bottom: 1rem;
}

.project-header h3 {
    margin-bottom: 0.5rem;
}

.project-meta {
    font-size: 0.9rem;
    color: var(--muted);
}

.projectsReal h2 {
    margin-bottom: 1rem;
}

.solutionGrid a:hover {
    background: var(--lime);
    color: #fff;
    border-color: var(--lime);
    box-shadow: 0 0 30px rgba(0,163,224,0.25);
}

.solutionGrid h3 { font-size: 30px; }

.solutionGrid b {
    justify-content: space-between;
    font-size: 11px;
    display: flex;
    position: absolute;
    bottom: 30px;
    left: 35px;
    right: 35px;
}

/* ===== Sales ===== */
.sales {
    border: 1px solid var(--line);
    background: #111c1d;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 8vw;
    margin: 4vw 4.5vw 9vw;
    padding: 6vw;
    display: grid;
}

.salesCopy p {
    color: #8b9694;
    margin-bottom: 35px;
    line-height: 1.7;
}

.dashboard {
    background: #091314;
    border: 1px solid #3b4946;
    height: 430px;
}

.metrics {
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.metrics div {
    border-right: 1px solid var(--line);
    padding: 22px;
}

.metrics small, .metrics i {
    color: #788582;
    font-size: 8px;
    font-style: normal;
    display: block;
}

.metrics strong {
    margin: 10px 0;
    font-size: 28px;
    display: block;
}

.metrics i { color: var(--lime); }

.chart {
    border-bottom: 1px solid var(--line);
    align-items: end;
    gap: 6%;
    height: 210px;
    padding: 35px 28px 0;
    display: flex;
}

.chart span {
    background: linear-gradient(var(--lime), #00A3E014);
    flex: 1;
}

.dashFoot {
    color: #7a8784;
    justify-content: space-between;
    padding: 16px;
    font-size: 8px;
    display: flex;
}

/* ===== Timeline ===== */
.timeline {
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(5, 1fr);
    display: grid;
}

.timeline article {
    border-right: 1px solid var(--line);
    min-height: 230px;
    padding: 27px 25px;
}

.process blockquote {
    text-align: center;
    margin: 9vw 0 0;
    font-size: clamp(28px, 4vw, 58px);
    line-height: 1.15;
}

/* ===== Sectors ===== */
.sectorList {
    border-top: 1px solid var(--line);
}

.sectorList div {
    border-bottom: 1px solid var(--line);
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    padding: 24px 5px;
    display: grid;
    transition: all .25s;
}

.sectorList div:hover { 
    color: var(--lime); 
    background: #0e191a;
    border-left: 3px solid var(--lime);
}

.sectorList span {
    color: #6f7d7a;
    font-size: 9px;
}

.sectorList b {
    font-size: 22px;
    font-weight: 500;
}

.sectors > p {
    color: #879390;
    margin-top: 30px;
}

/* ===== Final CTA ===== */
.finalCta {
    text-align: center;
    border-top: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 670px;
    padding: 9vw 4.5vw;
    display: flex;
    position: relative;
    overflow: hidden;
}

.finalCta h2 { max-width: 900px; }

.finalCta > p {
    color: #909b98;
    max-width: 650px;
    line-height: 1.7;
}

.finalCta small {
    color: #6e7a77;
    margin-top: 20px;
}

.orb {
    background: radial-gradient(circle, #00A3E021, #0000 65%);
    border-radius: 50%;
    width: 440px;
    height: 440px;
    position: absolute;
}/* ===== Solutions List (inner pages) ===== */
.solutions-list {
    border-top: 1px solid var(--line);
}

.solution-row {
    border-bottom: 1px solid var(--line);
    grid-template-columns: 70px 1fr;
    align-items: start;
    gap: 30px;
    padding: 35px 5px;
    display: grid;
    transition: all .25s;
}

.solution-row:hover {
    padding-left: 15px;
    background: #0e191a;
    border-left: 3px solid var(--lime);
}

.solution-num {
    color: var(--lime);
    letter-spacing: .15em;
    font-size: 9px;
}

.solution-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.solution-content h3 a {
    color: inherit;
    transition: color .2s;
}

.solution-content h3 a:hover {
    color: var(--lime);
}

.solution-content p {
    color: #899592;
    font-size: 13px;
    line-height: 1.6;
}

/* ===== Principle Section ===== */
.principle {
    background: var(--paper);
    color: var(--ink);
    padding: 9vw 4.5vw;
}

.principle > div {
    max-width: 860px;
    margin: 0 auto;
}

.principle h2 {
    letter-spacing: -.045em;
    font-size: clamp(38px, 4.4vw, 68px);
    font-weight: 500;
    line-height: 1.06;
}

/* ===== Contact Form ===== */
.contactHero {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 7vw;
    padding: 9vw 4.5vw;
    display: grid;
}

.contactForm {
    border: 1px solid var(--line);
    background: #0d1718;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 35px;
    display: grid;
}

.contactForm label {
    letter-spacing: .12em;
    color: #9aa5a2;
    font-size: 9px;
}

.contactForm input,
.contactForm select,
.contactForm textarea {
    color: #fff;
    background: var(--ink);
    border: 1px solid #35413f;
    outline: none;
    width: 100%;
    margin-top: 9px;
    padding: 15px;
    display: block;
}

.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
    border-color: var(--lime);
}

.contactForm textarea { height: 120px; }
.contactForm .wide { grid-column: 1/-1; }

.contactForm .check {
    letter-spacing: 0;
    gap: 10px;
    line-height: 1.5;
    display: flex;
}

.contactForm .check input {
    width: auto;
    margin: 0;
}

/* ===== Legal ===== */
.legal {
    max-width: 900px;
    min-height: 700px;
    padding: 10vw 4.5vw;
}

.legal h1 { font-size: 60px; }
.legal h2 { margin-top: 50px; font-size: 22px; }
.legal p { color: #9ca6a3; line-height: 1.8; }

.notice {
    border-left: 2px solid var(--lime);
    background: #111c1d;
    padding: 20px;
}

/* ===== Cap Grid (inner pages) ===== */
.capGrid {
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
    display: grid;
}

.capGrid article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    min-height: 220px;
    padding: 28px;
    transition: all .25s;
}

.capGrid article:hover { background: #0e191a; }
.capGrid span { color: var(--lime); letter-spacing: .15em; font-size: 9px; }
.capGrid h2 { margin-top: 40px; font-size: 20px; }
.capGrid p { color: #899592; font-size: 13px; line-height: 1.6; }/* ===== Chatbot ===== */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    display: flex;
    flex-direction: column;
}

.chat-toggle {
    background: linear-gradient(90deg, #2E6BFF, #00D4FF);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: 0.25s;
    font-weight: 600;
}

.chat-toggle:hover { transform: translateY(-2px); }
.chat-icon { font-size: 1.2rem; }
.chat-label { font-size: 0.9rem; }

.chat-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #0a1415;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-bubble.open { display: flex; }

.chat-header {
    background: linear-gradient(90deg, #2E6BFF, #00D4FF);
    color: white;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
}

.chat-messages {
    padding: 1rem;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.message {
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 85%;
}

.message.user {
    background: linear-gradient(120deg, #1B4DFF, #2E6BFF);
    color: white;
    margin-left: auto;
}

.message.bot {
    background: #111c1d;
    color: #f4f6ef;
    margin-right: auto;
}

.chat-input {
    display: flex;
    padding: 0.6rem 1rem 1rem;
    border-top: 1px solid var(--line);
    background: #091314;
}

.chat-input input {
    flex-grow: 1;
    padding: 0.6rem 1rem;
    border: 1px solid #35413f;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--lime);
}

.chat-send {
    background: #2E6BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-left: 0.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.chat-send:hover { background: var(--lime); color: var(--ink); }

.business-systems-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.solution-description {
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solution-description h2 {
    margin-bottom: 1.5rem;
    color: var(--ink);
    text-align: center;
}

.solution-features {
    background: var(--ink);
    color: var(--text);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.solution-features h3 {
    margin-bottom: 1rem;
    color: var(--lime);
}

.solution-features ul {
    text-align: left;
    padding-left: 1.5rem;
    margin: 0;
}

.solution-features li {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.case-studies {
    margin-top: 2rem;
    text-align: left;
}

.case-studies h3 {
    margin-bottom: 1rem;
    color: var(--ink);
}

.case-study {
    background: var(--light);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--lime);
}

.case-study h4 {
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.business-systems-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.sales-operations-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.automation-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.integrations-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.ai-solutions-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.custom-development-grid {
    padding: 2rem 0;
    background: var(--light);
    border-radius: 12px;
    margin: 2rem 0;
}

.projectsReal h2 {
    margin-bottom: 1rem;
    margin-left: 0.5rem;
}

.project-card {
    background: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.project-features {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.project-features p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.project-features p strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--ink);
}

.project-benefits {
    margin-top: 1.5rem;
}

.project-benefits p {
    font-size: 0.95rem;
    color: var(--muted);
}

.projectsGrid {
    border: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    margin: 2rem 0;
}

.projectsGrid article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 35px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.projectsGrid article:hover {
    background: var(--light);
    border-color: var(--lime);
}

.projectsGrid h3 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.project-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.project-features p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.project-features li {
    padding: 0.25rem 0;
    color: var(--text);
    position: relative;
    padding-left: 1.25rem;
}

.project-features li::before {
    content: '✓';
    color: var(--lime);
    position: absolute;
    left: 0;
}

.project-actions {
    margin-top: auto;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav {
        background: var(--ink);
        flex-direction: column;
        padding: 25px;
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        margin: 0;
        gap: 20px;
        border-bottom: 1px solid var(--line);
    }
    .nav.open { display: flex; }
    .menuBtn {
        background: 0 0;
        border: 0;
        margin-left: auto;
        display: block;
        cursor: pointer;
        padding: 4px;
    }
    .menuBtn i {
        background: #fff;
        width: 22px;
        height: 1.5px;
        margin: 5px 0;
        display: block;
        transition: transform .3s, opacity .3s;
    }
    .headerCta { display: none; }
    .hero { grid-template-columns: 1fr; }
    .problemGrid, .capGrid { grid-template-columns: repeat(2, 1fr); }
    .transform, .sales, .contactHero { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .solutionGrid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr 1fr; }
    .footerBrand { grid-column: 1/-1; }
}

@media (max-width: 600px) {
    .header { padding: 0 20px; }
    .hero, .problems, .solutions, .process, .sectors, .innerContent, .principle, .innerHero, .legal {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero h1, .innerHero h1 { font-size: 45px; }
    .actions { flex-direction: column; }
    .flow { height: 420px; }
    .node { transform: scale(.8); }
    .core { transform: translate(-50%, -50%) scale(.8); }
    .problemGrid, .capGrid { grid-template-columns: 1fr; }
    .transform { padding: 80px 20px; }
    .compare { grid-template-columns: 1fr; }
    .switch {
        margin: -8px auto;
        transform: rotate(90deg);
    }
    .compare .after { transform: none; }
    .sales { margin: 0; padding: 70px 20px; }
    .metrics strong { font-size: 18px; }
    .timeline { grid-template-columns: 1fr; }
    .finalCta { padding: 100px 20px; }
    footer { padding: 70px 20px 25px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}

/* ===== Hero Flow Animations - Realistic Operations Panel ===== */
.flowTop { position: relative; }
.flowTop .live { animation: livePulse 2s infinite; }

@keyframes livePulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 8px var(--lime); }
    50% { opacity: 0.6; text-shadow: 0 0 3px var(--lime); }
}

.flowTop::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.flowSvg { width: 100%; height: 440px; position: absolute; inset: 62px 0; overflow: visible; }

/* Paths with gradient flow */
.flowPath {
    fill: none;
    stroke-width: 2;
    filter: drop-shadow(0 0 4px currentColor);
}
.flowPath--in { color: #00ff88; }
.flowPath--out { color: #00a3e0; }
.flowPath { animation: pathGlow 3s ease-in-out infinite alternate; }

@keyframes pathGlow {
    0% { stroke-opacity: 0.4; stroke-width: 1.5; filter: drop-shadow(0 0 2px currentColor); }
    100% { stroke-opacity: 0.9; stroke-width: 2.5; filter: drop-shadow(0 0 8px currentColor); }
}

/* Core pulse rings */
.corePulse {
    fill: none;
    stroke: var(--lime);
    stroke-width: 1;
    stroke-opacity: 0.15;
    animation: pulseRing 4s ease-out infinite;
}
.corePulse:nth-child(1) { animation-delay: 0s; }
.corePulse:nth-child(2) { animation-delay: 1.3s; }
.corePulse:nth-child(3) { animation-delay: 2.6s; }

@keyframes pulseRing {
    0% { r: 80; stroke-opacity: 0.3; }
    100% { r: 140; stroke-opacity: 0; }
}

/* Data particles moving along paths */
.dataParticle {
    filter: drop-shadow(0 0 6px currentColor);
}

/* Core node with logo */
.node.core {
    border-color: var(--lime);
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    background: radial-gradient(circle at 50% 50%, #0a1415 0%, #050a0b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    animation: coreBreath 4s ease-in-out infinite;
}

@keyframes coreBreath {
    0%, 100% { box-shadow: 0 0 20px rgba(0,163,224,0.15), inset 0 0 20px rgba(0,255,136,0.05); border-color: rgba(0,255,136,0.5); }
    50% { box-shadow: 0 0 40px rgba(0,255,136,0.3), inset 0 0 30px rgba(0,255,136,0.1); border-color: var(--lime); }
}

.core::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, var(--lime) 20%, transparent 40%, transparent 60%, var(--lime) 80%, transparent 100%);
    z-index: -1;
    opacity: 0.15;
    animation: coreSpin 20s linear infinite;
}

@keyframes coreSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coreLogo { 
    filter: drop-shadow(0 0 12px rgba(0,255,136,0.5)); 
    transition: transform 0.3s ease;
}
.node.core:hover .coreLogo { transform: scale(1.05); }

.coreLabel {
    color: var(--lime);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.coreSub {
    color: #6a7a77;
    font-size: 10px;
    letter-spacing: 0.05em;
}

/* Peripheral nodes */
.node.n1, .node.n2, .node.n3 {
    animation: nodeFloat 6s ease-in-out infinite;
}
.node.n1 { animation-delay: 0s; }
.node.n2 { animation-delay: 2s; }
.node.n3 { animation-delay: 4s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.node b { color: var(--lime); text-shadow: 0 0 8px rgba(0,255,136,0.4); }

/* Flow paths */
.flowPath { stroke-dasharray: 12 8; animation: dashFlow 2s linear infinite; }
.flowPath--in { stroke: url(#gradIn); }
.flowPath--out { stroke: url(#gradOut); }

@keyframes dashFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

/* Stats with counting animation */
.flowStats { 
    border-top: 1px solid var(--line); 
    grid-template-columns: repeat(3, 1fr); 
    display: grid; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 16px 0;
}

.flowStats .stat { 
    border-right: 1px solid var(--line); 
    color: #75827f; 
    padding: 12px 8px; 
    font-size: 11px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 4px; 
}
.flowStats .stat:last-child { border-right: none; }
.flowStats .stat b { 
    color: var(--lime); 
    font-size: 20px; 
    font-weight: 600; 
    font-variant-numeric: tabular-nums;
    font-family: var(--font-mono);
}
.flowStats .stat small { font-size: 9px; color: #5a6a67; text-transform: uppercase; letter-spacing: 0.05em; }

/* Counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat[data-counter] b { animation: countUp 1.2s ease-out forwards; opacity: 0; }
.stat[data-counter="uptime"] b { animation-delay: 0.2s; }
.stat[data-counter="events"] b { animation-delay: 0.4s; }
.stat[data-counter="latency"] b { animation-delay: 0.6s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .flowPath, .corePulse, .dataParticle, .core, .core::before, .node.n1, .node.n2, .node.n3, .flowPath {
        animation: none !important;
    }
    .stat[data-counter] b { opacity: 1; animation: none !important; }
}

/* ===== Projects Page ===== */
.projectsOverview { padding: 8vw 4.5vw; }
.projectsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.projectCard {
    background: #0a1415;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.projectCard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.projectCard:hover {
    border-color: var(--lime);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--lime);
    transform: translateY(-4px);
}
.projectCard:hover::before { transform: scaleX(1); }
.projectCard--production { border-color: rgba(0,255,136,0.3); }
.projectCard--production:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--lime), 0 0 30px rgba(0,255,136,0.15); }

.projectCard__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 16px; }
.projectCard__meta { display: flex; flex-direction: column; gap: 6px; }
.projectCard__number { color: var(--lime); font-family: var(--font-mono); font-size: 20px; font-weight: 700; }
.projectCard__country { color: #5a6a67; font-size: 12px; font-weight: 500; }
.projectCard__badge {
    background: var(--lime);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); } 50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); } }

.projectCard__title { font-size: 22px; font-weight: 500; margin: 0 0 6px; color: #fff; }
.projectCard__tagline { color: var(--lime); font-size: 13px; font-weight: 500; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.projectCard__desc { color: #8c9895; font-size: 14px; line-height: 1.65; margin: 0 0 20px; flex-grow: 1; }

.projectCard__stack { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.projectCard__stack li { background: #0d1718; border: 1px solid var(--line); color: #8c9895; font-size: 11px; padding: 6px 12px; border-radius: 100px; font-family: var(--font-mono); font-size: 10px; transition: all 0.2s; }
.projectCard__stack li:hover { border-color: var(--lime); color: var(--lime); background: rgba(0,255,136,0.05); }

.projectCard__actions { display: flex; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.projectCard__actions .btn { flex: 1; justify-content: center; }

/* Production Deep Dive */
.productionDeepDive { padding: 8vw 4.5vw; background: #0a1415; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.deepDiveGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 28px; margin-top: 32px; }
.deepDiveCard { background: #0a1415; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.deepDiveCard:hover { border-color: var(--lime); box-shadow: 0 16px 32px rgba(0,0,0,0.3); }
.deepDiveCard__header { padding: 32px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.deepDiveCard__tagline { color: var(--lime); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.deepDiveCard__title { font-size: 28px; font-weight: 500; margin: 0 0 12px; color: #fff; }
.deepDiveCard__summary { color: #8c9895; margin: 0; font-size: 14px; line-height: 1.65; max-width: 400px; }
.deepDiveCard__content { padding: 32px; display: grid; gap: 24px; }
.deepDiveCard__section h4 { color: #5a6a67; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 12px; }
.deepDiveCard__section:last-of-type { border-top: 1px solid var(--line); padding-top: 24px; }
.deepDiveCard__cta { border-top: none !important; }

.tagList, .featureList { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.featureList { flex-direction: column; gap: 10px; }
.featureList li { display: flex; align-items: center; gap: 10px; color: #8c9895; font-size: 13px; padding-left: 4px; }
.featureList svg { color: var(--lime); flex-shrink: 0; }
.tagList li { background: #0d1718; border: 1px solid var(--line); color: #8c9895; font-size: 11px; padding: 6px 12px; border-radius: 100px; font-family: var(--font-mono); font-size: 10px; transition: all 0.2s; }
.tagList li:hover { border-color: var(--lime); color: var(--lime); background: rgba(0,255,136,0.05); }

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

/* Method Reminder */
.methodReminder { border-radius: 20px; }
.methodReminder .btn { margin-top: 8px; }

@media (max-width: 900px) {
    .deepDiveGrid { grid-template-columns: 1fr; }
    .projectsGrid { grid-template-columns: 1fr; }
}