
      :root {
        --bg: #060d1a;
        --bg2: rgba(10, 25, 47, 0.55);
        --green: #00ffab;
        --cyan: #00d1ff;
        --text: #e8f4f8;
        --muted: #6b8aa0;
        --border: rgba(0, 255, 171, 0.12);
        --bdim: rgba(255, 255, 255, 0.06);
        --gg: 0 0 48px rgba(0, 255, 171, 0.22);
        --gc: 0 0 48px rgba(0, 209, 255, 0.18);
      }
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--bg);
        color: var(--text);
        font-family: "Inter", sans-serif;
        overflow-x: hidden;
        cursor: none;
        -webkit-font-smoothing: antialiased;
      }
      #cursor {
        position: fixed;
        width: 10px;
        height: 10px;
        background: var(--green);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        box-shadow:
          0 0 14px var(--green),
          0 0 28px rgba(0, 255, 171, 0.35);
        transition:
          width 0.22s,
          height 0.22s;
      }
      #cursor-ring {
        position: fixed;
        width: 32px;
        height: 32px;
        border: 1.5px solid rgba(0, 255, 171, 0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition:
          width 0.28s,
          height 0.28s,
          border-color 0.28s;
      }
      ::-webkit-scrollbar {
        width: 3px;
      }
      ::-webkit-scrollbar-track {
        background: var(--bg);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--green);
        border-radius: 2px;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 30px 6%;
        background: rgba(6, 13, 26, 0.82);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(0, 255, 171, 0.07);
        transition:
          padding 0.3s,
          border-color 0.3s;
      }
      nav.scrolled {
        padding: 13px 6%;
        border-bottom-color: rgba(0, 255, 171, 0.14);
      }
      .logo {
        font-family: "Inter", sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .nl {
        display: flex;
        gap: 2rem;
        list-style: none;
        align-items: center;
      }
      .nl a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.86rem;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
      }
      .nl a::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--green);
        transition: width 0.3s;
      }
      .nl a:hover {
        color: var(--text);
      }
      .nl a:hover::after {
        width: 100%;
      }
      .ncta {
        background: linear-gradient(135deg, var(--green), var(--cyan));
        color: #060d1a !important;
        padding: 9px 20px;
        border-radius: 7px;
        font-weight: 700;
        font-size: 0.82rem;
        cursor: pointer;
        transition:
          box-shadow 0.3s,
          transform 0.2s;
      }
      .ncta:hover {
        box-shadow: var(--ggg);
        transform: translateY(-1px);
      }
      .hbg {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }
      .hbg span {
        width: 22px;
        height: 2px;
        background: var(--green);
        border-radius: 2px;
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 130px 6% 90px;
      }
      .hbg2 {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 65% 55% at 50% 18%,
            rgba(0, 255, 171, 0.07),
            transparent 70%
          ),
          radial-gradient(
            ellipse 45% 45% at 84% 78%,
            rgba(0, 209, 255, 0.06),
            transparent 60%
          ),
          radial-gradient(
            ellipse 35% 35% at 18% 72%,
            rgba(123, 94, 234, 0.05),
            transparent 60%
          );
      }
      .grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(0, 255, 171, 0.033) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0, 255, 171, 0.033) 1px, transparent 1px);
        background-size: 58px 58px;
        mask-image: radial-gradient(
          ellipse at center,
          rgba(0, 0, 0, 0.8),
          transparent 72%
        );
      }
      .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
        animation: flt 9s ease-in-out infinite;
      }
      .o1 {
        width: 420px;
        height: 420px;
        background: rgba(0, 255, 171, 0.07);
        top: -8%;
        right: -5%;
      }
      .o2 {
        width: 320px;
        height: 320px;
        background: rgba(0, 209, 255, 0.06);
        bottom: -2%;
        left: -4%;
        animation-delay: 3s;
      }
      .o3 {
        width: 210px;
        height: 210px;
        background: rgba(123, 94, 234, 0.07);
        top: 40%;
        right: 20%;
        animation-delay: 5.5s;
      }
      @keyframes flt {
        0%,
        100% {
          transform: translateY(0) scale(1);
        }
        50% {
          transform: translateY(-26px) scale(1.03);
        }
      }
      .hc {
        position: relative;
        z-index: 2;
        max-width: 840px;
        text-align: center;
      }
      .badge {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: rgba(0, 255, 171, 0.07);
        border: 1px solid rgba(0, 255, 171, 0.17);
        padding: 7px 18px;
        border-radius: 100px;
        font-size: 0.72rem;
        color: var(--green);
        font-weight: 700;
        margin-bottom: 2rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        animation: fd 0.8s ease both;
      }
      .bdot {
        width: 6px;
        height: 6px;
        background: var(--green);
        border-radius: 50%;
        box-shadow: 0 0 7px var(--green);
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.4;
        }
      }
      @keyframes fd {
        from {
          opacity: 0;
          transform: translateY(-16px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fu {
        from {
          opacity: 0;
          transform: translateY(26px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero h1 {
        font-family: "Inter", sans-serif;
        font-size: clamp(2.3rem, 5vw, 3.9rem);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
        animation: fu 0.9s ease 0.2s both;
      }
      .hl {
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .hero p {
        font-size: 1.08rem;
        color: var(--muted);
        line-height: 1.78;
        max-width: 610px;
        margin: 30px auto 2.5rem;
        font-weight: 400;
        animation: fu 0.9s ease 0.35s both;
      }
      .ctas {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fu 0.9s ease 0.5s both;
      }
      .bp {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        color: #060d1a;
        padding: 14px 30px;
        border-radius: 9px;
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
        letter-spacing: 0.2px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-family: "Inter", sans-serif;
        position: relative;
        overflow: hidden;
      }
      .bp::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.15);
        opacity: 0;
        transition: opacity 0.3s;
      }
      .bp:hover {
        box-shadow: var(--gg);
        transform: translateY(-2px);
      }
      .bp:hover::before {
        opacity: 1;
      }
      .bs {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--text);
        padding: 13px 28px;
        border-radius: 9px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        border: 1.5px solid rgba(255, 255, 255, 0.11);
        transition: all 0.3s;
        cursor: pointer;
        font-family: "Inter", sans-serif;
      }
      .bs:hover {
        border-color: var(--cyan);
        color: var(--cyan);
      }
      .trust {
        margin-top: 2rem;
        color: var(--muted);
        font-size: 0.8rem;
        animation: fu 0.9s ease 0.65s both;
      }
      .trust span {
        color: var(--green);
        font-weight: 600;
      }

      /* PROOF */
      .ps {
        padding: 46px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: rgba(0, 255, 171, 0.015);
        overflow: hidden;
      }
      .pt {
        display: flex;
        gap: 4rem;
        padding: 0 2rem;
        align-items: center;
        white-space: nowrap;
        animation: mq 22s linear infinite;
      }
      @keyframes mq {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      .pi {
        display: flex;
        align-items: center;
        gap: 1.1rem;
        flex-shrink: 0;
      }
      .pn {
        font-family: "Inter", sans-serif;
        font-size: 1.85rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .pl {
        font-size: 0.78rem;
        color: var(--muted);
        line-height: 1.45;
        max-width: 110px;
        font-weight: 500;
      }
      .psep {
        width: 1px;
        height: 36px;
        background: var(--border);
        flex-shrink: 0;
      }

      /* GLOBALS */
      section {
        padding: 96px 6%;
        position: relative;
      }
      .stag {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 1rem;
      }
      .stag::before {
        content: "";
        width: 16px;
        height: 1.5px;
        background: var(--green);
      }
      .stitle {
        font-family: "Inter", sans-serif;
        font-size: clamp(1.7rem, 3.1vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -0.4px;
        line-height: 1.15;
        margin-bottom: 1rem;
      }
      .ssub {
        font-size: 0.92rem;
        color: var(--muted);
        line-height: 1.78;
        max-width: 540px;
        font-weight: 400;
      }
      .gt {
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── CASE STUDIES ── */
      .cases-hdr {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3.2rem;
      }
      .cases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border-radius: 22px;
        overflow: hidden;
      }
      .cc {
        background: var(--bg);
        padding: 2.4rem;
        position: relative;
        cursor: pointer;
        transition: all 0.4s;
        overflow: hidden;
      }
      .cc::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 255, 171, 0.04),
          rgba(0, 209, 255, 0.02)
        );
        opacity: 0;
        transition: opacity 0.4s;
      }
      .cc:hover::before {
        opacity: 1;
      }
      .cn {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.1rem;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .cn::before {
        content: "";
        width: 12px;
        height: 1px;
        background: var(--muted);
      }
      .cb {
        font-family: "Inter", sans-serif;
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 0.25rem;
      }
      .cp {
        font-size: 0.72rem;
        color: var(--muted);
        margin-bottom: 1.6rem;
        font-weight: 500;
      }

      /* Dashboard mock */
      .dash {
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.055);
        border-radius: 12px;
        padding: 1.2rem;
        margin-bottom: 1.6rem;
      }
      .dh {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 0.9rem;
      }
      .dd {
        width: 7px;
        height: 7px;
        border-radius: 50%;
      }
      .dt {
        font-size: 0.6rem;
        color: var(--muted);
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin-left: 5px;
      }
      .dm-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        margin-bottom: 0.9rem;
      }
      .dm {
        background: rgba(0, 255, 171, 0.04);
        border: 1px solid rgba(0, 255, 171, 0.08);
        border-radius: 8px;
        padding: 0.7rem;
      }
      .dmv {
        font-family: "Inter", sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .dml {
        font-size: 0.58rem;
        color: var(--muted);
        font-weight: 500;
        margin-top: 1px;
        letter-spacing: 0.2px;
      }
      .mc {
        height: 34px;
        display: flex;
        align-items: flex-end;
        gap: 3px;
      }
      .mb {
        flex: 1;
        border-radius: 3px 3px 0 0;
        background: linear-gradient(
          180deg,
          var(--green),
          rgba(0, 255, 171, 0.28)
        );
      }

      .cmet {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
      }
      .mv {
        font-family: "Inter", sans-serif;
        font-size: 1.55rem;
        font-weight: 800;
      }
      .mvg {
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .ml {
        font-size: 0.7rem;
        color: var(--muted);
        font-weight: 500;
      }
      .cpill {
        display: inline-block;
        padding: 4px 12px;
        background: rgba(0, 255, 171, 0.07);
        border: 1px solid rgba(0, 255, 171, 0.13);
        border-radius: 100px;
        font-size: 0.65rem;
        color: var(--green);
        font-weight: 700;
        margin-top: 1.3rem;
        letter-spacing: 0.4px;
      }
      .carr {
        position: absolute;
        bottom: 1.8rem;
        right: 1.8rem;
        width: 30px;
        height: 30px;
        border: 1.5px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
      }
      .cc:hover .carr {
        border-color: var(--green);
        background: rgba(0, 255, 171, 0.09);
        transform: rotate(45deg);
      }
      .carr svg {
        width: 13px;
        height: 13px;
        stroke: var(--muted);
        transition: stroke 0.3s;
      }
      .cc:hover .carr svg {
        stroke: var(--green);
      }

      /* ── HOW WE HELP ── */
      .hc3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.4rem;
        margin-top: 3.2rem;
      }
      .hcard {
        background: rgba(10, 25, 47, 0.42);
        border: 1px solid var(--bdim);
        border-radius: 16px;
        padding: 2.4rem;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
      }
      .hcard::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--green), var(--cyan));
        transform: scaleX(0);
        transition: transform 0.4s;
        transform-origin: left;
      }
      .hcard:hover {
        border-color: rgba(0, 255, 171, 0.2);
        transform: translateY(-6px);
        box-shadow: var(--gg);
      }
      .hcard:hover::after {
        transform: scaleX(1);
      }
      .hi {
        /* width: 50px;
        height: 50px;
        background: rgba(0, 255, 171, 0.08);
        border: 1px solid rgba(0, 255, 171, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.4rem; */
      }
      .hi svg {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
      }
      .hcard h3 {
        font-family: "Inter", sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.6rem;
        letter-spacing: -0.15px;
      }
      .hcard p {
        font-size: 0.84rem;
        color: var(--muted);
        line-height: 1.75;
        font-weight: 400;
      }

      /* ── SERVICES ── */
      .sg {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
        margin-top: 3.2rem;
      }
      .sc {
        background: rgba(8, 18, 36, 0.65);
        border: 1px solid var(--bdim);
        border-radius: 20px;
        padding: 2.8rem;
        cursor: pointer;
        transition: all 0.45s;
        position: relative;
        overflow: hidden;
      }
      .sc::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--green),
          transparent
        );
        transform: scaleX(0);
        transition: transform 0.5s;
        transform-origin: center;
      }
      .sc::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(0, 255, 171, 0.05),
          transparent 70%
        );
        transform: translate(40%, -40%);
        transition: transform 0.5s;
      }
      .sc:hover {
        border-color: rgba(0, 255, 171, 0.2);
        box-shadow:
          0 20px 56px rgba(0, 0, 0, 0.4),
          var(--gg);
      }
      .sc:hover::before {
        transform: scaleX(1);
      }
      .sc:hover::after {
        transform: translate(25%, -25%) scale(1.7);
      }
      .snum {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.6rem;
      }
      .siw {
        /* width: 58px;
        height: 58px;
        background: rgba(0, 255, 171, 0.06);
        border: 1px solid rgba(0, 255, 171, 0.13);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.6rem;
        transition: all 0.4s; */
      }
      .siw svg {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
      }
      .sc:hover .siw {
        /* background: rgba(0, 255, 171, 0.11);
        border-color: rgba(0, 255, 171, 0.26);
        box-shadow: 0 0 22px rgba(0, 255, 171, 0.13); */
      }
      .sc h3 {
        font-family: "Inter", sans-serif;
        font-size: 1.28rem;
        font-weight: 800;
        margin-bottom: 0.7rem;
        letter-spacing: -0.3px;
      }
      .sc p {
        font-size: 0.86rem;
        color: var(--muted);
        line-height: 1.76;
        max-width: 340px;
      }
      .sl {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 1.6rem;
        font-size: 0.81rem;
        font-weight: 600;
        color: var(--green);
        background: none;
        border: none;
        cursor: pointer;
        font-family: "Inter", sans-serif;
        padding: 0;
      }
      .sl svg {
        transition: transform 0.3s;
      }
      .sc:hover .sl svg {
        transform: translateX(4px);
      }

      /* ── DEEP CASE ── */
      .dc {
        background: rgba(0, 255, 171, 0.013);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .dg {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--border);
        border-radius: 20px;
        overflow: hidden;
      }
      .dcol {
        background: var(--bg);
        padding: 2.4rem 2rem;
        position: relative;
      }
      .dcol::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
      }
      .dcol:nth-child(1)::before {
        background: rgba(123, 94, 234, 0.7);
      }
      .dcol:nth-child(2)::before {
        background: rgba(0, 209, 255, 0.7);
      }
      .dcol:nth-child(3)::before {
        background: rgba(0, 255, 171, 0.5);
      }
      .dcol:nth-child(4)::before {
        background: linear-gradient(90deg, var(--green), var(--cyan));
      }
      .dln {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.9rem;
      }
      .dcol h3 {
        font-family: "Inter", sans-serif;
        font-size: 1.02rem;
        font-weight: 800;
        margin-bottom: 1.2rem;
      }
      .dcol p,
      .dcol li {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.8;
      }
      .dcol ul {
        list-style: none;
      }
      .dcol li::before {
        content: "→ ";
        color: var(--green);
      }
      .rb {
        font-family: "Inter", sans-serif;
        font-size: 1.85rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .rl {
        font-size: 0.7rem;
        color: var(--muted);
        margin-bottom: 1.3rem;
      }

      /* ── WHY ── */
      .wg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 2.8rem;
      }
      .wps {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
      }
      .wp {
        display: flex;
        gap: 1.2rem;
        align-items: flex-start;
        padding: 1.3rem;
        border-radius: 11px;
        border: 1px solid transparent;
        transition: all 0.3s;
      }
      .wp:hover {
        border-color: var(--border);
        background: rgba(0, 255, 171, 0.022);
      }
      .wi {
        width: 42px;
        height: 42px;
        background: rgba(0, 255, 171, 0.08);
        border: 1px solid rgba(0, 255, 171, 0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .wp h4 {
        font-weight: 700;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
        font-family: "Inter", sans-serif;
      }
      .wp p {
        font-size: 0.8rem;
        color: var(--muted);
        line-height: 1.65;
      }
      .wv {
        height: 420px;
        border-radius: 20px;
        background: rgba(0, 255, 171, 0.02);
        border: 1px solid var(--border);
        overflow: hidden;
      }
      .pc {
        padding: 2rem;
      }
      .plbl {
        font-size: 0.66rem;
        color: var(--muted);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 1.6rem;
        font-weight: 600;
      }
      .bw {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }
      .bi {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .bt {
        display: flex;
        justify-content: space-between;
        font-size: 0.7rem;
        color: var(--muted);
        font-weight: 500;
      }
      .bt span:last-child {
        color: var(--green);
        font-weight: 700;
      }
      .btr {
        height: 7px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
        overflow: hidden;
      }
      .bf {
        height: 100%;
        border-radius: 4px;
        background: linear-gradient(90deg, var(--green), var(--cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .bfc {
        background: linear-gradient(90deg, var(--cyan), var(--green));
      }
      .pf {
        margin-top: 2rem;
        padding-top: 1.4rem;
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
      }
      .psv {
        font-family: "Inter", sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .psl {
        font-size: 0.68rem;
        color: var(--muted);
        font-weight: 500;
      }

      /* ── IDEAL ── */
      .ideal {
        text-align: center;
      }
      .ib {
        max-width: 730px;
        margin: 2.8rem auto 0;
        background: rgba(0, 255, 171, 0.03);
        border: 1.5px solid rgba(0, 255, 171, 0.18);
        border-radius: 20px;
        padding: 3.2rem 4rem;
        position: relative;
      }
      .ii {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg);
        padding: 0 14px;
      }
      .ib p {
        font-family: "Inter", sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        line-height: 1.65;
        margin-bottom: 1.2rem;
      }
      .in {
        font-size: 0.82rem;
        color: var(--muted);
        line-height: 1.7;
        font-family: "Inter", sans-serif;
        font-weight: 400;
      }

      /* ── LOCAL SEO ── */
      .seosec {
        background: linear-gradient(
          180deg,
          transparent,
          rgba(0, 255, 171, 0.013),
          transparent
        );
      }
      .seoin {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
        align-items: start;
      }
      .seoc p {
        font-size: 0.88rem;
        color: var(--muted);
        line-height: 1.85;
        margin-top: 1.2rem;
      }
      .seotags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 1.8rem;
      }
      .seotag {
        padding: 6px 15px;
        background: rgba(0, 255, 171, 0.05);
        border: 1px solid var(--border);
        border-radius: 100px;
        font-size: 0.72rem;
        color: var(--green);
        font-weight: 600;
      }
      .seostats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--border);
        border-radius: 16px;
        overflow: hidden;
        margin-top: 2.5rem;
      }
      .seostat {
        background: var(--bg);
        padding: 1.6rem;
        text-align: center;
      }
      .ssv {
        font-family: "Inter", sans-serif;
        font-size: 1.7rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.25rem;
      }
      .ssl {
        font-size: 0.7rem;
        color: var(--muted);
        font-weight: 500;
      }
      .seor {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        padding-top: 0.5rem;
      }
      .scard {
        background: rgba(10, 25, 47, 0.45);
        border: 1px solid var(--bdim);
        border-radius: 13px;
        padding: 1.4rem;
        display: flex;
        align-items: flex-start;
        gap: 0.9rem;
        transition: all 0.3s;
      }
      .scard:hover {
        border-color: var(--border);
        transform: translateX(5px);
      }
      .sci {
        width: 36px;
        height: 36px;
        background: rgba(0, 255, 171, 0.08);
        border: 1px solid rgba(0, 255, 171, 0.13);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .scard h4 {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.28rem;
        font-family: "Inter", sans-serif;
      }
      .scard p {
        font-size: 0.77rem;
        color: var(--muted);
        line-height: 1.6;
      }

      /* ── FINAL CTA ── */
      .fcta {
        text-align: center;
        padding: 116px 6%;
        position: relative;
        overflow: hidden;
      }
      .fbg {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 72% 62% at 50% 50%,
          rgba(0, 255, 171, 0.052),
          transparent 68%
        );
      }
      .fcta h2 {
        font-family: "Inter", sans-serif;
        font-size: clamp(2rem, 4.4vw, 3.3rem);
        font-weight: 800;
        letter-spacing: -1px;
        margin-bottom: 1.3rem;
        position: relative;
      }
      .fcta > p {
        font-size: 0.97rem;
        color: var(--muted);
        margin-bottom: 2.8rem;
        position: relative;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.72;
      }
      .fbtns {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
      }

      /* WHATSAPP */
      .wa {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 52px;
        height: 52px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
        transition: all 0.3s;
        text-decoration: none;
        animation: pin 0.5s ease 1.2s both;
      }
      .wa:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.48);
      }
      @keyframes pin {
        from {
          transform: scale(0);
        }
        to {
          transform: scale(1);
        }
      }

      /* FOOTER */
      footer {
        border-top: 1px solid var(--border);
        padding: 2.8rem 6%;
        
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
      }
      .footer-branding{
            display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    
      }
      .footer_c p{
       font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 8px;
      }
      .footer-logo > *{
        text-align:left;
      }
      .footer-branding > div{
        flex: 1;
        text-align: center;
      }
      .footer-branding > div:nth-child(2){
        align-items: center;
        flex: 2;
      }
      .footer-branding > div:nth-child(3){
        text-align: right;
      }
      .fl {
        font-family: "Inter", sans-serif;
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      footer p {
            font-size: .85rem;
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.4;
      }

      .footer-cta-bb p{
        font-size: 2rem;
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
      }
      /* ── MODAL ── */
      .mov {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.78);
        backdrop-filter: blur(10px);
        z-index: 5000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
      }
      .mov.open {
        opacity: 1;
        pointer-events: all;
      }
      .mod {
        background: #091222;
        border: 1px solid rgba(0, 255, 171, 0.17);
        border-radius: 22px;
        padding: 2.8rem;
        max-width: 476px;
        width: 100%;
        position: relative;
        transform: translateY(18px) scale(0.97);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow:
          0 40px 90px rgba(0, 0, 0, 0.72),
          0 0 55px rgba(0, 255, 171, 0.05);
      }
      .mov.open .mod {
        transform: translateY(0) scale(1);
      }
      .mcls {
        position: absolute;
        top: 1.1rem;
        right: 1.2rem;
        width: 28px;
        height: 28px;
        border: 1px solid var(--bdim);
        border-radius: 7px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--muted);
        transition: all 0.2s;
        font-size: 0.9rem;
        font-family: "Inter", sans-serif;
      }
      .mcls:hover {
        border-color: var(--border);
        color: var(--text);
      }
      .mbadge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(0, 255, 171, 0.07);
        border: 1px solid rgba(0, 255, 171, 0.15);
        padding: 5px 13px;
        border-radius: 100px;
        font-size: 0.68rem;
        color: var(--green);
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-bottom: 1.4rem;
      }
      .mod h2 {
        font-family: "Inter", sans-serif;
        font-size: 1.55rem;
        font-weight: 800;
        margin-bottom: 0.45rem;
        letter-spacing: -0.3px;
      }
      .msub {
        font-size: 0.83rem;
        color: var(--muted);
        margin-bottom: 1.8rem;
        line-height: 1.62;
      }
      .fg {
        margin-bottom: 1.1rem;
      }
      .fg label {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--muted);
        margin-bottom: 0.45rem;
        letter-spacing: 0.4px;
        text-transform: uppercase;
      }
      .fg input,
      .fg select {
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 10px 14px;
        color: var(--text);
        font-family: "Inter", sans-serif;
        font-size: 0.86rem;
        outline: none;
        transition: all 0.3s;
      }
      .fg input:focus,
      .fg select:focus {
        border-color: rgba(0, 255, 171, 0.32);
        background: rgba(0, 255, 171, 0.025);
        box-shadow: 0 0 0 3px rgba(0, 255, 171, 0.06);
      }
      .fg select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8AA0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 13px center;
        background-size: 9px;
        padding-right: 34px;
      }
      .fg select option {
        background: #091222;
        color: var(--text);
      }
      .fr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem;
      }
      .msub2 {
        width: 100%;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        color: #060d1a;
        padding: 13px 22px;
        border-radius: 9px;
        font-weight: 700;
        font-size: 0.9rem;
        border: none;
        cursor: pointer;
        font-family: "Inter", sans-serif;
        margin-top: 0.4rem;
        transition: all 0.3s;
      }
      .msub2:hover {
        box-shadow: var(--gg);
        transform: translateY(-1px);
      }
      .mn {
        text-align: center;
        font-size: 0.7rem;
        color: var(--muted);
        margin-top: 0.9rem;
      }

      @media (max-width: 900px) {
        .nl {
          display: none;
        }
        .hbg {
          display: flex;
        }
        .cases-grid,
        .hc3,
        .sg {
          grid-template-columns: 1fr;
        }
        .dg {
          grid-template-columns: 1fr 1fr;
        }
        .wg,
        .seoin {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .seotags{
            justify-content: center;
        }
        .ib {
          padding: 2.2rem 1.6rem;
        }
        .fr {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 600px) {
        .dg {
          grid-template-columns: 1fr;
        }
        section {
          padding: 68px 5%;
        }
        .hero {
          padding: 108px 5% 68px;
        }
        .mod {
          padding: 2rem 1.4rem;
        }
      }

      /* ── FAQ SECTION ── */
      .faq-section {
        padding: 96px 6%;
        position: relative;
      }

      .faq-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 60% 50% at 80% 20%,
            rgba(0, 209, 255, 0.04),
            transparent 65%
          ),
          radial-gradient(
            ellipse 50% 40% at 20% 80%,
            rgba(0, 255, 171, 0.04),
            transparent 60%
          );
        pointer-events: none;
      }

      .faq-inner {
        max-width: 860px;
        margin: 0 auto;
      }

      .faq-header {
        text-align: center;
        margin-bottom: 3.5rem;
      }

      .faq-header .stag {
        justify-content: center;
      }

      .faq-header .ssub {
        max-width: 480px;
        margin: 0 auto;
        text-align: center;
      }

      /* Grid: two-column staggered layout */
      .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .faq-item {
        border-bottom: 1px solid rgba(0, 255, 171, 0.09);
        position: relative;
      }

      .faq-item:first-child {
        border-top: 1px solid rgba(0, 255, 171, 0.09);
      }

      .faq-q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1.1rem;
        padding: 1.4rem 0;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        font-family: "Inter", sans-serif;
        color: var(--text);
        position: relative;
        transition: padding 0.3s;
      }

      .faq-q:hover .faq-text {
        color: #fff;
      }

      .faq-num {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--muted);
        letter-spacing: 1.5px;
        font-family: "Syne", sans-serif;
        min-width: 26px;
        flex-shrink: 0;
        transition: color 0.3s;
      }

      .faq-q[aria-expanded="true"] .faq-num {
        color: var(--green);
      }

      .faq-text {
        font-size: 0.96rem;
        font-weight: 600;
        line-height: 1.45;
        flex: 1;
        color: var(--text);
        transition: color 0.3s;
        letter-spacing: -0.1px;
      }

      .faq-icon {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(0, 255, 171, 0.14);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        background: rgba(0, 255, 171, 0.04);
      }

      .faq-icon svg {
        display: block;
        transition: stroke 0.3s;
      }

      .faq-q[aria-expanded="true"] .faq-icon {
        background: rgba(0, 255, 171, 0.1);
        border-color: rgba(0, 255, 171, 0.3);
        transform: rotate(180deg);
      }

      /* Answer panel */
      .faq-a {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .faq-a.open {
        grid-template-rows: 1fr;
      }

      .faq-a-inner {
        overflow: hidden;
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.8;
        font-weight: 400;
        padding: 0 0 0 2.1rem;
        /* Extra space above text */
        padding-bottom: 0;
        transition: padding-bottom 0.38s;
      }

      .faq-a.open .faq-a-inner {
        padding-bottom: 1.5rem;
      }

      /* Bullet list inside answer */
      .faq-list {
        list-style: none;
        margin-top: 0.7rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
      }

      .faq-list li {
        padding-left: 1.2rem;
        position: relative;
        font-size: 0.875rem;
        color: var(--muted);
      }

      .faq-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--green);
        opacity: 0.7;
      }

      /* Active item highlight */
      .faq-item.active {
        background: rgba(0, 255, 171, 0.018);
      }

      .faq-item.active .faq-q {
        padding-left: 0.75rem;
      }

      @media (max-width: 600px) {
        .faq-text {
          font-size: 0.9rem;
        }
        .faq-section {
          padding: 68px 5%;
        }
      }

      /* nnn */
      /* ── PROJECT SHOWCASE ── */
      .showcase-section {
        padding: 96px 6%;
        position: relative;
        overflow: hidden;
      }

      .showcase-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 55% 45% at 15% 30%,
            rgba(0, 255, 171, 0.04),
            transparent 65%
          ),
          radial-gradient(
            ellipse 45% 40% at 85% 70%,
            rgba(0, 209, 255, 0.04),
            transparent 60%
          );
        pointer-events: none;
      }

      .showcase-header {
        margin-bottom: 3rem;
      }

      /* ── TAB TRACK ── */
      .tab-track-wrap {
        position: relative;
        margin-bottom: 2.8rem;
        overflow: hidden;
      }

      .tab-fade-l,
      .tab-fade-r {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        pointer-events: none;
        z-index: 2;
      }
      .tab-fade-l {
        left: 0;
        background: linear-gradient(90deg, var(--bg) 30%, transparent);
      }
      .tab-fade-r {
        right: 0;
        background: linear-gradient(-90deg, var(--bg) 30%, transparent);
      }

      .tab-track {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0.25rem 80px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        align-items: center;
        justify-content: flex-start;
      }
      .tab-track::-webkit-scrollbar {
        display: none;
      }

      .stab {
        flex-shrink: 0;
        padding: 10px 24px;
        border-radius: 100px;
        font-family: "Inter", sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        background: transparent;
        color: var(--muted);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        letter-spacing: 0.1px;
        white-space: nowrap;
      }

      .stab:hover {
        border-color: rgba(0, 255, 171, 0.25);
        color: var(--text);
      }

      .stab.active {
        background: linear-gradient(135deg, var(--green), var(--cyan));
        border-color: transparent;
        color: #060d1a;
        font-weight: 700;
        box-shadow:
          0 0 32px rgba(0, 255, 171, 0.22),
          0 4px 16px rgba(0, 0, 0, 0.3);
      }

      /* ── STAGE ── */
      .stage-wrap {
        position: relative;
      }

      .stage {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 20px;
        /* Height set by tallest slide via min-height */
      }

      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transform: translateX(110%);
        /* Base: off to the right */
        transition:
          transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
          opacity 0.5s ease;
        will-change: transform, opacity;
      }

      .slide.active {
        position: relative; /* takes up space */
        opacity: 1;
        pointer-events: all;
        transform: translateX(0);
      }

      .slide.exit-left {
        position: absolute;
        opacity: 0;
        transform: translateX(-110%);
        pointer-events: none;
      }

      .slide.exit-right {
        position: absolute;
        opacity: 0;
        transform: translateX(110%);
        pointer-events: none;
      }

      .slide.enter-from-right {
        transform: translateX(110%);
        opacity: 0;
      }

      .slide.enter-from-left {
        transform: translateX(-110%);
        opacity: 0;
      }

      /* ── SLIDE INNER LAYOUT ── */
      .slide-inner {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 3.5rem;
        align-items: center;
        background: rgba(10, 25, 47, 0.45);
        border: 1px solid rgba(0, 255, 171, 0.1);
        border-radius: 20px;
        padding: 3.5rem;
        min-height: 420px;
      }

      /* Left copy */
      .proj-overline {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 0.75rem;
      }

      .proj-title {
        font-size: clamp(1.6rem, 2.5vw, 2.1rem);
        font-weight: 800;
        letter-spacing: -0.4px;
        line-height: 1.15;
        margin-bottom: 1rem;
        color: var(--text);
      }

      .proj-desc {
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 1.8rem;
      }

      .proj-stats {
        display: flex;
        gap: 2rem;
        margin-bottom: 1.8rem;
      }

      .pstat-val {
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.1;
        margin-bottom: 0.2rem;
      }

      .pstat-lbl {
        font-size: 0.7rem;
        color: var(--muted);
        font-weight: 500;
        line-height: 1.4;
      }

      .proj-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .ptag {
        padding: 4px 12px;
        background: rgba(0, 255, 171, 0.07);
        border: 1px solid rgba(0, 255, 171, 0.13);
        border-radius: 100px;
        font-size: 0.68rem;
        color: var(--green);
        font-weight: 600;
        letter-spacing: 0.3px;
      }

      /* ── MOCK WINDOW ── */
      .mock-window {
        background: rgba(6, 12, 24, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
      }

      .mock-bar {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0.65rem 1rem;
        background: rgba(255, 255, 255, 0.035);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .mdot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
      }

      .mock-url {
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.25);
        font-weight: 500;
        letter-spacing: 0.2px;
        margin-left: 6px;
      }

      .mock-body {
        padding: 1.2rem;
      }

      .mock-kpi-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.2rem;
      }

      .mock-kpi {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.055);
        border-radius: 8px;
        padding: 0.65rem 0.6rem;
      }

      .mkv {
        font-family: "Syne", sans-serif;
        font-size: 1rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 2px;
        white-space: nowrap;
      }
      .mkv.green {
        background: linear-gradient(135deg, var(--green), var(--cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .mkv.cyan {
        background: linear-gradient(135deg, var(--cyan), var(--green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .mkl {
        font-size: 0.56rem;
        color: var(--muted);
        font-weight: 500;
        letter-spacing: 0.2px;
      }

      .mock-chart-label {
        font-size: 0.62rem;
        color: var(--muted);
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 0.6rem;
      }

      .mock-chart {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        padding: 0.8rem 0.8rem 0;
        border: 1px solid rgba(255, 255, 255, 0.04);
      }

      .mbar-wrap {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        height: 72px;
      }

      .mbar {
        flex: 1;
        height: var(--h);
        border-radius: 3px 3px 0 0;
        background: linear-gradient(
          180deg,
          var(--green) 0%,
          rgba(0, 255, 171, 0.25) 100%
        );
        transform: scaleY(0);
        transform-origin: bottom;
        animation: barUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--d) forwards;
      }

      .mbar.cyan {
        background: linear-gradient(
          180deg,
          var(--cyan) 0%,
          rgba(0, 209, 255, 0.25) 100%
        );
      }

      @keyframes barUp {
        to {
          transform: scaleY(1);
        }
      }

      .mbar-months {
        display: flex;
        justify-content: space-between;
        padding: 0.4rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 4px;
      }

      .mbar-months span {
        font-size: 0.55rem;
        color: var(--muted);
        font-weight: 500;
        flex: 1;
        text-align: center;
      }

      /* ── DOTS ── */
      .slide-dots {
        display: flex;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 1.8rem;
      }

      .sdot {
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: rgba(255, 255, 255, 0.15);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: block;
      }

      .sdot.active {
        width: 24px;
        background: var(--green);
        box-shadow: 0 0 10px rgba(0, 255, 171, 0.4);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .slide-inner {
          grid-template-columns: 1fr;
          padding: 2.2rem;
          gap: 2rem;
        }

        .mock-kpi-row {
          grid-template-columns: repeat(2, 1fr);
        }

        .proj-stats {
          gap: 1.2rem;
        }
      }

      @media (max-width: 580px) {
        .showcase-section {
          padding: 68px 5%;
        }

        .proj-title {
          font-size: 1.5rem;
        }

        .tab-track {
          padding: 0.25rem 50px;
        }

        .tab-fade-l,
        .tab-fade-r {
          width: 50px;
        }
      }

      #why {
        padding-top: 0;
      }
    
.my-slide-inner{
    padding: 0;
        padding: 0;
    display: block;
    padding-bottom: 0;
    align-items: stretch;
    min-height: auto;
}
.my-slide-inner img{
    width: 100%;
}
.slide-right img{
        max-width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: left;
    border-radius: 20px;
}

/* ── SLIDE IMAGE ── */
.slide-img {
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(0,255,171,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  cursor: zoom-in;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}

.slide-img:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 40px rgba(0,255,171,0.1);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  cursor: zoom-out;
}

.lb-content {
  position: relative;
  z-index: 2;
  max-width: 100%   ;
  max-height: 90vh;
  transform: scale(.93) translateY(12px);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.lightbox.open .lb-content {
  transform: scale(1) translateY(0);
}

.lb-content img {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(0,255,171,0.14);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(0,255,171,0.07);
}

/* Close button */
.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(10,25,47,0.9);
  border: 1px solid rgba(0,255,171,0.2);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Inter', sans-serif;
}

.lb-close:hover {
  background: rgba(0,255,171,0.1);
  border-color: rgba(0,255,171,0.4);
  color: var(--text);
  transform: scale(1.08);
}




/* ── WHY EDMFEED — REDESIGNED ── */
#why {
  padding: 0 6%;
  position: relative;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 10% 50%, rgba(0,255,171,0.04), transparent 65%),
    radial-gradient(ellipse 45% 40% at 90% 50%, rgba(0,209,255,0.04), transparent 60%);
  pointer-events: none;
}

.why-heading {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

/* 2 × 2 grid */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,255,171,0.08);
  border-radius: 22px;
  overflow: hidden;
}

/* Individual card */
.wcard {
  background: var(--bg);
  padding: 2.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.wcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}

.wcard:hover {
  background: rgba(0,255,171,0.025);
}

.wcard:hover::before {
  transform: scaleX(1);
}

/* Top row: icon + number */
.wcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.wcard-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,255,171,0.07);
  border: 1px solid rgba(0,255,171,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.wcard:hover .wcard-icon {
  background: rgba(0,255,171,0.12);
  border-color: rgba(0,255,171,0.28);
  box-shadow: 0 0 20px rgba(0,255,171,0.12);
}

.wcard-num {
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: 1px;
  transition: color .3s;
}

.wcard:hover .wcard-num {
  color: rgba(0,255,171,0.35);
}

/* Title */
.wcard-title {
 
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.2px;
  line-height: 1.3;
  margin-bottom: .85rem;
}

/* Body copy */
.wcard-body {
  font-size: .845rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 400;
  flex: 1;
  margin-bottom: 1.8rem;
}

/* Footer pills */
.wcard-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
}

.wcard-pill {
  padding: 4px 11px;
  background: rgba(0,255,171,0.05);
  border: 1px solid rgba(0,255,171,0.11);
  border-radius: 100px;
  font-size: .65rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: .3px;
  transition: background .3s, border-color .3s;
}

.wcard:hover .wcard-pill {
  background: rgba(0,255,171,0.09);
  border-color: rgba(0,255,171,0.22);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
  .wcard {
    padding: 2rem 1.8rem;
  }
}



/* ── FOUNDER SECTION ── */
.founder-section {
  padding: 96px 6%;
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 80% 50%, rgba(0,209,255,0.05), transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 40%, rgba(0,255,171,0.045), transparent 60%);
  pointer-events: none;
}
.founder-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.founder-left { display: flex; flex-direction: column; gap: 1.6rem; }
.founder-avatar-wrap { position: relative; width: 180px; height: 180px; }
.founder-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #00ffab, #00d1ff, #00ffab);
  animation: spin 6s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2.5px));
}
@keyframes spin { to { transform: rotate(360deg); } }
.founder-avatar {

  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(8,18,36,0.9);
  border: 2px solid rgba(0,255,171,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('../images/founder.png');
background-size: cover;
background-position: center;
}
.founder-initials {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00ffab, #00d1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text);
}
.founder-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}
.founder-role::before { content: ''; width: 16px; height: 1.5px; background: var(--green); }
.founder-social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.fslink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0,255,171,0.06);
  border: 1px solid rgba(0,255,171,0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: all 0.3s;
}
.fslink:hover {
  background: rgba(0,255,171,0.12);
  border-color: rgba(0,255,171,0.3);
  transform: translateY(-1px);
}
.founder-right { display: flex; flex-direction: column; gap: 2rem; }
.founder-bio {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 400;
}
.founder-bio strong { color: var(--text); font-weight: 600; }
.founder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.fstat {
  background: var(--bg);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: background 0.3s;
}
.fstat:hover { background: rgba(0,255,171,0.025); }
.fstat-val {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.fstat-lbl { font-size: 0.68rem; color: var(--muted); font-weight: 500; line-height: 1.4; }
.founder-highlight {
  background: rgba(0,255,171,0.03);
  border: 1px solid rgba(0,255,171,0.13);
  border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.4rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
}
.founder-highlight strong { color: var(--text); font-weight: 600; font-style: normal; }
.founder-clients { display: flex; flex-direction: column; gap: 0.7rem; }
.fc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.fc-label::before { content: ''; width: 16px; height: 1.5px; background: var(--muted); }
.fc-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.fc-pill {
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s;
}
.fc-pill:hover { border-color: rgba(0,255,171,0.25); color: var(--green); background: rgba(0,255,171,0.05); }

@media (max-width: 960px) {
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .founder-section { padding: 68px 5%;  text-align: center;}
  .founder-avatar-wrap{
    margin: auto;
  }
  .founder-stats { grid-template-columns: repeat(2,1fr); }
.footer-branding{
        display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-logo>*,.footer_c > *,.footer-branding > div:nth-child(3){
    text-align: center;
}
}

