.v2-home-loader-lock {
    overflow: hidden;
}

.v2-home-loader {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.46s ease, visibility 0s linear 0.46s;
}

.v2-home-loader.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.22s ease;
}

.v2-home-loader.is-closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.v2-home-loader__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 26%, rgba(79, 124, 255, 0.2), transparent 44%),
        radial-gradient(circle at 84% 70%, rgba(46, 200, 255, 0.16), transparent 40%),
        #0b1424;
}

.v2-home-loader__content {
    position: relative;
    width: min(360px, 86vw);
    border-radius: 20px;
    border: 1px solid rgba(156, 214, 255, 0.24);
    background: linear-gradient(160deg, rgba(10, 20, 37, 0.86), rgba(6, 12, 24, 0.94));
    box-shadow: 0 28px 64px rgba(0, 8, 24, 0.55), 0 0 0 1px rgba(79, 124, 255, 0.14) inset;
    padding: 1.25rem 1.2rem 1.1rem;
    display: grid;
    justify-items: center;
    gap: 0.95rem;
    backdrop-filter: blur(8px);
}

.v2-home-loader__logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ecf5ff;
    animation: v2LoaderLogoReveal 0.9s ease both;
}

.v2-home-loader__logo-k {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #eaf6ff;
    border: 1px solid rgba(155, 216, 255, 0.48);
    background: linear-gradient(130deg, rgba(79, 124, 255, 0.7), rgba(46, 200, 255, 0.56));
    box-shadow: 0 0 22px rgba(46, 200, 255, 0.26);
}

.v2-home-loader__logo-text {
    font-size: 1.02rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.v2-home-loader__orbit {
    position: relative;
    width: 92px;
    height: 92px;
}

.v2-home-loader__orbit-path {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(157, 214, 255, 0.2);
}

.v2-home-loader__orbit-path i {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #2ec8ff, #4f7cff);
    box-shadow: 0 0 14px rgba(46, 200, 255, 0.44);
}

.v2-home-loader__orbit-path--a {
    animation: v2LoaderOrbitA 3.8s linear infinite;
}

.v2-home-loader__orbit-path--b {
    inset: 8px;
    border-color: rgba(157, 214, 255, 0.32);
    animation: v2LoaderOrbitB 5.2s linear infinite reverse;
}

.v2-home-loader__orbit-path--b i {
    background: radial-gradient(circle, #4f7cff, #2ec8ff);
}

.v2-home-loader__progress {
    width: min(300px, 76vw);
    height: 6px;
    border-radius: 999px;
    background: rgba(167, 210, 255, 0.14);
    overflow: hidden;
}

.v2-home-loader__progress > span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #4f7cff 0%, #2ec8ff 100%);
    box-shadow: 0 0 16px rgba(46, 200, 255, 0.46);
    animation: v2LoaderProgressFill 2.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.v2-home-loader__text {
    margin: 0;
    color: #b8cbee;
    font-size: 0.83rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v2-home-loader__text span::after {
    content: "...";
    display: inline-block;
    width: 16px;
    overflow: hidden;
    vertical-align: bottom;
    animation: v2LoaderDots 1.35s steps(3, end) infinite;
}

@keyframes v2LoaderLogoReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 8px, 0) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes v2LoaderOrbitA {
    to {
        transform: rotate(360deg);
    }
}

@keyframes v2LoaderOrbitB {
    to {
        transform: rotate(360deg);
    }
}

@keyframes v2LoaderProgressFill {
    0% {
        transform: scaleX(0);
    }
    70% {
        transform: scaleX(0.86);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes v2LoaderDots {
    0% {
        width: 0;
    }
    100% {
        width: 16px;
    }
}

@media (max-width: 767.98px) {
    .v2-home-loader__content {
        width: min(320px, 92vw);
        padding: 1.05rem 0.95rem 0.95rem;
        gap: 0.8rem;
    }

    .v2-home-loader__orbit {
        width: 80px;
        height: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-home-loader,
    .v2-home-loader *,
    .v2-home-loader *::before,
    .v2-home-loader *::after {
        animation: none !important;
        transition: none !important;
    }
}

.v2-home-shell {
    position: relative;
    isolation: isolate;
    background: #0b1424;
}

.v2-home-shell > *:not(.v2-home-tech-bg) {
    position: relative;
    z-index: 1;
}

.v2-home-tech-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.72;
}

.v2-home-tech-bg__grid,
.v2-home-tech-bg__aurora,
.v2-home-tech-bg__links {
    position: absolute;
    inset: 0;
}

.v2-home-tech-bg__grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.86));
}

.v2-home-tech-bg__aurora {
    background:
        radial-gradient(circle at 18% 22%, rgba(79, 124, 255, 0.18), transparent 38%),
        radial-gradient(circle at 76% 34%, rgba(46, 200, 255, 0.14), transparent 34%),
        radial-gradient(circle at 62% 84%, rgba(79, 124, 255, 0.12), transparent 32%);
    filter: blur(16px);
    animation: v2TechAuroraShift 14s ease-in-out infinite;
}

.v2-home-tech-bg__links {
    width: 100%;
    height: 100%;
    opacity: 0.32;
}

.v2-home-tech-bg__links line {
    stroke: rgba(117, 178, 255, 0.34);
    stroke-width: 0.14;
}

.v2-home-tech-bg__node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(46, 200, 255, 0.95), rgba(79, 124, 255, 0.64));
    box-shadow: 0 0 0 0 rgba(79, 124, 255, 0.38);
    opacity: 0.8;
    animation: v2TechNodePulse 4.6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.v2-home-tech-bg__node:nth-of-type(2n) {
    background: radial-gradient(circle, rgba(79, 124, 255, 0.95), rgba(46, 200, 255, 0.58));
}

@keyframes v2TechAuroraShift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.92;
    }
    50% {
        transform: translate3d(0, -1.6%, 0) scale(1.03);
        opacity: 0.7;
    }
}

@keyframes v2TechNodePulse {
    0%, 100% {
        opacity: 0.52;
        box-shadow: 0 0 0 0 rgba(79, 124, 255, 0.08);
    }
    45% {
        opacity: 0.92;
        box-shadow:
            0 0 0 6px rgba(79, 124, 255, 0),
            0 0 12px rgba(46, 200, 255, 0.35);
    }
    65% {
        opacity: 0.72;
        box-shadow: 0 0 0 10px rgba(79, 124, 255, 0);
    }
}

@media (max-width: 767.98px) {
    .v2-home-tech-bg {
        opacity: 0.5;
    }

    .v2-home-tech-bg__grid {
        background-size: 30px 30px;
    }

    .v2-home-tech-bg__links {
        opacity: 0.22;
    }

    .v2-home-tech-bg__node {
        width: 6px;
        height: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-home-tech-bg__aurora,
    .v2-home-tech-bg__node {
        animation: none;
    }
}

.v2-hero {
    padding: clamp(2.8rem, 8vw, 6.2rem) 0 2.8rem;
    position: relative;
    overflow: hidden;
}

.v2-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 22% 18%, rgba(59, 130, 246, 0.36), transparent 46%),
                radial-gradient(circle at 78% 8%, rgba(124, 58, 237, 0.28), transparent 44%),
                linear-gradient(145deg, rgba(8, 15, 30, 0.9), rgba(8, 11, 24, 0.94));
    background-size: 140% 140%, 130% 130%, 100% 100%;
    animation: v2HeroBgShift 12s ease-in-out infinite;
}

.v2-hero__bg::before,
.v2-hero__bg::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.42;
    pointer-events: none;
}

.v2-hero__bg::before {
    width: min(460px, 42vw);
    height: min(460px, 42vw);
    background: rgba(34, 211, 238, 0.34);
    top: -12%;
    left: -6%;
}

.v2-hero__bg::after {
    width: min(520px, 46vw);
    height: min(520px, 46vw);
    background: rgba(124, 58, 237, 0.34);
    right: -10%;
    top: -18%;
}

.v2-hero__inner {
    display: grid;
    gap: 2rem;
}

.v2-hero__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}

.v2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.78rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #cfe7ff;
    border: 1px solid rgba(187, 214, 255, 0.36);
    background: rgba(23, 37, 67, 0.55);
    margin-bottom: 1rem;
}

.v2-hero__content p {
    color: #b7c7e7;
    max-width: 54ch;
    font-size: clamp(1rem, 1.22vw, 1.16rem);
    margin: 1rem 0 1.25rem;
}

.v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
}

.v2-proof-inline {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.v2-proof-inline__item {
    min-width: 118px;
}

.v2-proof-inline__item strong {
    display: block;
    color: #f4f8ff;
    font-size: 1.02rem;
    line-height: 1.2;
}

.v2-proof-inline__item span {
    color: #8fa6d4;
    font-size: 0.84rem;
}

.v2-hero__media {
    position: relative;
    min-height: 420px;
}

.v2-hero__mockup {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(186, 209, 255, 0.26);
    box-shadow: 0 24px 65px rgba(3, 9, 24, 0.48);
    background: rgba(10, 16, 33, 0.86);
}

.v2-hero__mockup img {
    width: 100%;
    height: clamp(300px, 34vw, 440px);
    object-fit: cover;
    display: block;
}

.v2-float-card {
    position: absolute;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(185, 209, 253, 0.34);
    background: rgba(8, 14, 28, 0.86);
    box-shadow: 0 16px 36px rgba(2, 8, 22, 0.34);
    min-width: 150px;
    backdrop-filter: blur(10px);
}

.v2-float-card span {
    display: block;
    color: #8fb1e3;
    font-size: 0.74rem;
    margin-bottom: 0.18rem;
}

.v2-float-card strong {
    color: #f4f8ff;
    font-size: 1.2rem;
    font-weight: 800;
}

.v2-float-card--a {
    left: -20px;
    top: 28px;
    animation: v2float 4.8s ease-in-out infinite;
}

.v2-float-card--b {
    right: -20px;
    top: 95px;
    animation: v2float 5.3s ease-in-out infinite;
}

.v2-float-card--c {
    right: 18px;
    bottom: -22px;
    animation: v2float 5.7s ease-in-out infinite;
}

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

@keyframes v2HeroBgShift {
    0%, 100% {
        background-position: 0% 0%, 100% 0%, 50% 50%;
    }
    50% {
        background-position: 8% 6%, 92% 10%, 50% 50%;
    }
}

.v2-hero__tech-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(150, 176, 226, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 176, 226, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 52% 28%, rgba(0, 0, 0, 0.9), transparent 84%);
    opacity: 0.42;
}

.v2-hero__tech-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.v2-hero__tech-lines line {
    stroke: rgba(133, 176, 245, 0.2);
    stroke-width: 1.2;
    animation: v2HeroNetworkPulse 8s ease-in-out infinite;
}

.v2-hero__tech-lines circle {
    fill: rgba(80, 172, 255, 0.85);
    filter: drop-shadow(0 0 7px rgba(80, 172, 255, 0.5));
    animation: v2HeroNetworkPulse 8s ease-in-out infinite;
}

@keyframes v2HeroNetworkPulse {
    0%, 100% {
        opacity: 0.34;
    }
    50% {
        opacity: 0.8;
    }
}

.v2-hero .v2-btn--primary {
    border: 0;
    background: linear-gradient(120deg, #2563eb, #22d3ee);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    will-change: transform;
}

.v2-hero .v2-btn--primary:hover,
.v2-hero .v2-btn--primary:focus-visible {
    transform: translate3d(0, -2px, 0) scale(1.02);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.44), 0 0 36px rgba(34, 211, 238, 0.34);
    filter: saturate(1.08);
}

.v2-hero .v2-btn--ghost {
    border-color: rgba(161, 193, 245, 0.35);
    background: rgba(8, 14, 28, 0.42);
    color: #d8e8ff;
}

.v2-hero .v2-btn--ghost:hover,
.v2-hero .v2-btn--ghost:focus-visible {
    border-color: rgba(94, 165, 255, 0.55);
    background: rgba(8, 14, 28, 0.68);
}

.v2-hero__media {
    min-height: 470px;
}

.v2-dashboard-mockup {
    padding: 0.95rem;
    transform-style: preserve-3d;
    transform: perspective(1100px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    will-change: transform;
}

.v2-dashboard-mockup::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 24px;
    border: 1px solid rgba(145, 197, 255, 0.3);
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(56, 189, 248, 0.22), transparent 44%);
    mix-blend-mode: screen;
}

.v2-dashboard__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    border: 1px solid rgba(174, 205, 247, 0.2);
    border-radius: 12px;
    background: rgba(6, 12, 26, 0.72);
    padding: 0.46rem 0.68rem;
    margin-bottom: 0.75rem;
    color: #d6e8ff;
    font-size: 0.78rem;
}

.v2-dashboard__traffic-lights {
    display: inline-flex;
    gap: 0.35rem;
}

.v2-dashboard__traffic-lights i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(189, 207, 243, 0.4);
}

.v2-dashboard__traffic-lights i:nth-child(1) { background: #fb7185; }
.v2-dashboard__traffic-lights i:nth-child(2) { background: #fbbf24; }
.v2-dashboard__traffic-lights i:nth-child(3) { background: #4ade80; }

.v2-dashboard__status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 0 0.55rem;
    background: rgba(16, 185, 129, 0.17);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #9cf1cb;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.66rem;
}

.v2-dashboard__grid {
    display: grid;
    gap: 0.72rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-dash-card {
    border: 1px solid rgba(168, 200, 243, 0.2);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.72rem;
    min-height: 128px;
    color: #d9eaff;
}

.v2-dash-card__label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8badde;
    margin-bottom: 0.3rem;
}

.v2-dash-card strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1.15;
    margin-bottom: 0.2rem;
}

.v2-dash-card small {
    font-size: 0.76rem;
    color: #98b4df;
}

.v2-dash-card--chart {
    grid-column: 1 / -1;
    min-height: 160px;
}

.v2-dash-card--chart header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.62rem;
}

.v2-dash-card--chart header span {
    font-size: 0.8rem;
    color: #9fbde7;
}

.v2-dash-card--chart svg {
    width: 100%;
    height: 92px;
    display: block;
}

.v2-dash-card--chart polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.v2-dash-card--chart polyline:first-child {
    stroke: #38bdf8;
}

.v2-dash-card--chart polyline:last-child {
    stroke: rgba(129, 166, 224, 0.7);
}

.v2-dash-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 0.34rem;
    min-height: 58px;
    margin: 0.18rem 0 0.28rem;
}

.v2-dash-bars span {
    display: block;
    width: 100%;
    height: var(--bar, 68%);
    border-radius: 7px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.95), rgba(37, 99, 235, 0.42));
}

.v2-tech-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(178, 208, 252, 0.34);
    background: rgba(8, 14, 28, 0.86);
    color: #d9ebff;
    padding: 0.34rem 0.62rem;
    font-size: 0.74rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(2, 8, 22, 0.36);
    animation: v2float 5s ease-in-out infinite;
    z-index: 3;
}

.v2-tech-float i {
    color: #7dd3fc;
}

.v2-tech-float--a {
    left: -16px;
    top: -20px;
}

.v2-tech-float--b {
    right: -20px;
    top: 118px;
    animation-delay: 0.35s;
}

.v2-tech-float--c {
    left: 34%;
    bottom: -18px;
    animation-delay: 0.75s;
}

.v2-float-card {
    min-width: 168px;
    padding: 0.9rem 1rem;
}

.v2-float-card span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-weight: 600;
}

.v2-float-card span i {
    color: #7dd3fc;
}

.v2-float-card small {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.72rem;
    color: #8ea8d5;
}

.v2-trusted {
    border-radius: 18px;
    border: 1px solid rgba(190, 209, 244, 0.16);
    background: rgba(10, 17, 33, 0.64);
    padding: 1rem 1.2rem;
}

.v2-trusted__title {
    display: block;
    color: #a4b7de;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v2-trusted__logos {
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.v2-trusted__logos img,
.v2-trusted__placeholder {
    width: 100%;
    height: 62px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px dashed rgba(180, 200, 238, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: #90a8d4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.v2-proof-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-proof-card {
    border-radius: 16px;
    border: 1px solid rgba(186, 205, 245, 0.16);
    background: rgba(12, 20, 39, 0.7);
    padding: 1rem 1.05rem;
}

.v2-proof-card__metric {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.42rem;
}

.v2-proof-card__metric strong {
    color: #f3f8ff;
    font-size: 1.28rem;
    line-height: 1;
    font-weight: 700;
}

.v2-proof-card__metric small {
    color: #7dd3fc;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.v2-proof-card h3 {
    margin-bottom: 0.45rem;
}

.v2-proof-card p {
    margin: 0;
    color: #9fb4db;
}

.v2-about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8, 13, 25, 0.7), rgba(8, 13, 24, 0));
}

.v2-about::before {
    content: "";
    position: absolute;
    top: -210px;
    left: 50%;
    width: min(1200px, 95vw);
    height: 300px;
    transform: translateX(-50%);
    pointer-events: none;
    background:
        radial-gradient(65% 95% at 20% 38%, rgba(79, 124, 255, 0.11), transparent 74%),
        radial-gradient(65% 95% at 80% 42%, rgba(0, 212, 255, 0.08), transparent 76%);
    filter: blur(34px);
    opacity: 0.28;
}

.v2-about .container {
    position: relative;
    z-index: 1;
}

.v2-about__summary {
    max-width: 760px;
    margin: 0.72rem auto 0;
    color: #a5bedf;
    line-height: 1.6;
    text-align: center;
}

.v2-services {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(7, 12, 24, 0), rgba(7, 12, 24, 0.42));
}

.v2-services::before {
    content: "";
    position: absolute;
    top: -220px;
    left: 50%;
    width: min(1220px, 95vw);
    height: 320px;
    transform: translateX(-50%);
    pointer-events: none;
    background:
        radial-gradient(66% 96% at 22% 36%, rgba(79, 124, 255, 0.11), transparent 74%),
        radial-gradient(66% 96% at 80% 44%, rgba(0, 212, 255, 0.08), transparent 76%);
    filter: blur(36px);
    opacity: 0.26;
}

.v2-services > .container {
    position: relative;
    z-index: 1;
}

.v2-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.4rem;
}

.v2-about__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.v2-about__stat {
    border-radius: 12px;
    border: 1px solid rgba(168, 192, 236, 0.26);
    background: rgba(9, 16, 31, 0.72);
    padding: 0.65rem 0.72rem;
}

.v2-about__stat strong {
    display: block;
    color: #f3f9ff;
    font-size: 1.08rem;
    line-height: 1.1;
}

.v2-about__stat span {
    color: #9fb8df;
    font-size: 0.79rem;
}

.v2-about__text p {
    color: #adc0e2;
    margin-bottom: 1rem;
    line-height: 1.74;
    max-width: 68ch;
}

.v2-about__feature-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.48rem;
}

.v2-about__feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.52rem;
    color: #d3e5ff;
    font-size: 0.92rem;
    line-height: 1.5;
}

.v2-about__feature-list i {
    margin-top: 0.1rem;
    color: #67e8f9;
    text-shadow: 0 0 14px rgba(103, 232, 249, 0.46);
}

.v2-about__cards {
    display: grid;
    gap: 1rem;
}

.v2-about-card {
    position: relative;
    padding: 1.15rem;
    border: 1px solid rgba(179, 203, 244, 0.24);
    background:
        linear-gradient(160deg, rgba(14, 29, 54, 0.62), rgba(8, 14, 28, 0.84)),
        rgba(8, 14, 28, 0.75);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.v2-about-card:hover,
.v2-about-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(97, 189, 255, 0.44);
    box-shadow: 0 18px 34px rgba(4, 12, 28, 0.42), 0 0 0 1px rgba(79, 124, 255, 0.2);
}

.v2-about-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(171, 205, 246, 0.36);
    background:
        radial-gradient(circle at 34% 30%, rgba(144, 208, 255, 0.4), rgba(79, 124, 255, 0.2)),
        rgba(8, 16, 32, 0.78);
    color: #d9ecff;
    box-shadow: 0 0 0 8px rgba(79, 124, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.18);
}

.v2-about-card h3 {
    margin: 0;
}

.v2-about__cards p {
    margin: 0.45rem 0 0;
    color: #9eb4da;
}

.v2-chip-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.3rem;
}

.v2-chip {
    border: 1px solid rgba(180, 202, 247, 0.28);
    background: rgba(12, 19, 36, 0.72);
    color: #c3d6f8;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 700;
}

.v2-chip.is-active,
.v2-chip:hover {
    border-color: rgba(34, 211, 238, 0.72);
    background: rgba(34, 211, 238, 0.16);
    color: #f3f9ff;
}

.v2-service-slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
}

.v2-service-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
}

.v2-service-grid::-webkit-scrollbar {
    display: none;
}

.v2-service-grid .v2-card--feature {
    scroll-snap-align: start;
}

.v2-card--feature {
    padding: 1.38rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(177, 201, 244, 0.2);
    background:
        linear-gradient(160deg, rgba(14, 29, 54, 0.62), rgba(8, 14, 28, 0.84)),
        rgba(9, 18, 34, 0.78);
    box-shadow: 0 10px 26px rgba(2, 8, 22, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    will-change: transform;
}

.v2-card--feature::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(59, 130, 246, 0.45), rgba(34, 211, 238, 0), rgba(124, 58, 237, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.v2-services .v2-card--feature:hover,
.v2-services .v2-card--feature:focus-within {
    transform: translateY(-10px);
    border-color: rgba(99, 192, 255, 0.46);
    box-shadow: 0 22px 44px rgba(2, 9, 24, 0.42), 0 0 0 1px rgba(79, 124, 255, 0.2);
}

.v2-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.18);
    color: #cfe4ff;
    margin-bottom: 0.85rem;
    transition: transform 0.2s ease;
}

.v2-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(175, 199, 246, 0.2);
    background: rgba(8, 14, 28, 0.72);
    margin-bottom: 0.95rem;
}

.v2-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.36s ease;
}

.v2-card--feature:hover .v2-card__icon {
    transform: scale(1.05) rotate(2deg);
}

.v2-services .v2-card--feature:hover .v2-card__media img,
.v2-services .v2-card--feature:focus-within .v2-card__media img {
    transform: scale(1.05);
}

.v2-card--feature h3 {
    margin: 0 0 0.55rem;
    transition: color 0.22s ease;
}

.v2-services .v2-card--feature:hover h3,
.v2-services .v2-card--feature:focus-within h3 {
    color: #eaf4ff;
}

.v2-card--feature p {
    color: #9eb4da;
    margin: 0;
}

.v2-card--feature .v2-inline-link {
    margin-top: auto;
    padding-top: 0.9rem;
}

.v2-services .v2-card--feature .v2-inline-link i {
    transition: transform 0.22s ease, color 0.22s ease;
}

.v2-services .v2-card--feature:hover .v2-inline-link i,
.v2-services .v2-card--feature .v2-inline-link:hover i,
.v2-services .v2-card--feature .v2-inline-link:focus-visible i {
    transform: translateX(6px);
    color: #7dd3fc;
}

.v2-card--feature.is-hidden {
    display: none;
}

.v2-why {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 16, 30, 0.5), rgba(8, 12, 24, 0));
}

.v2-why::before {
    content: "";
    position: absolute;
    top: -210px;
    left: 50%;
    width: min(1200px, 95vw);
    height: 300px;
    transform: translateX(-50%);
    pointer-events: none;
    background:
        radial-gradient(65% 95% at 20% 40%, rgba(79, 124, 255, 0.11), transparent 74%),
        radial-gradient(65% 95% at 80% 36%, rgba(0, 212, 255, 0.08), transparent 76%);
    filter: blur(34px);
    opacity: 0.26;
}

.v2-why > .container {
    position: relative;
    z-index: 1;
}

.v2-why__grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}

.v2-why__media {
    display: flex;
}

.v2-why__content p {
    color: #9fb5db;
}

.v2-bullet-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.v2-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #d2e2fd;
    margin-bottom: 0.7rem;
}

.v2-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 14px rgba(34, 211, 238, 0.6);
}

.v2-feature-list {
    margin-top: 1.05rem;
    display: grid;
    gap: 0.72rem;
}

.v2-feature-list li::before {
    content: none;
}

.v2-feature-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.62rem;
    align-items: flex-start;
    border-radius: 14px;
    border: 1px solid rgba(173, 198, 242, 0.2);
    background: rgba(9, 16, 31, 0.72);
    padding: 0.66rem 0.74rem;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.v2-feature-item:hover,
.v2-feature-item:focus-within {
    transform: translateX(6px);
    border-color: rgba(99, 192, 255, 0.44);
    box-shadow: 0 14px 30px rgba(2, 9, 24, 0.38), 0 0 0 1px rgba(79, 124, 255, 0.16);
}

.v2-feature-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(170, 203, 245, 0.36);
    background:
        radial-gradient(circle at 34% 30%, rgba(144, 208, 255, 0.38), rgba(79, 124, 255, 0.2)),
        rgba(8, 16, 32, 0.82);
    color: #daecff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 7px rgba(79, 124, 255, 0.1), 0 0 18px rgba(0, 212, 255, 0.16);
}

.v2-feature-item__icon i {
    font-size: 0.92rem;
}

.v2-feature-item__body {
    display: grid;
    gap: 0.26rem;
}

.v2-feature-item__title {
    color: #e4f0ff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

.v2-feature-item__desc {
    color: #a7bedf;
    font-size: 0.82rem;
    line-height: 1.45;
}

.v2-video-wrap,
.v2-video-placeholder {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
}

.v2-video-wrap {
    position: relative;
}

.v2-video-wrap--transparent {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.v2-video-placeholder {
    border-radius: 20px;
    border: 1px solid rgba(187, 210, 250, 0.2);
    background: linear-gradient(145deg, rgba(15, 25, 48, 0.86), rgba(15, 49, 78, 0.66));
    box-shadow: 0 20px 44px rgba(3, 9, 24, 0.32);
}

.v2-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
    z-index: 1;
}

.v2-video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #05080f;
    position: relative;
    z-index: 1;
}

.v2-video-wrap .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
        to right,
        #0b1220 0%,
        rgba(11, 18, 32, 0.85) 40%,
        rgba(11, 18, 32, 0.6) 100%
    );
}

.v2-why__media .v2-video-wrap--transparent,
.v2-why__media .v2-video-placeholder {
    border: 1px solid rgba(176, 203, 244, 0.22);
    border-radius: 20px;
    background:
        linear-gradient(160deg, rgba(16, 31, 56, 0.72), rgba(8, 14, 28, 0.88)),
        rgba(8, 14, 28, 0.75);
    box-shadow: 0 20px 42px rgba(2, 9, 24, 0.38);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.v2-why__media .v2-video-wrap--transparent .video-overlay {
    background:
        linear-gradient(160deg, rgba(10, 18, 34, 0.18), rgba(10, 18, 34, 0.58)),
        radial-gradient(circle at 86% 14%, rgba(56, 189, 248, 0.18), transparent 48%);
}

.v2-video-placeholder {
    display: grid;
    place-content: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.2rem;
}

.v2-video-placeholder i {
    font-size: 2.4rem;
    color: #7dd3fc;
}

.v2-video-placeholder p {
    margin: 0;
    color: #9bb4da;
}

.v2-process-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-process-card {
    border-radius: 16px;
    border: 1px solid rgba(188, 208, 247, 0.18);
    background: rgba(11, 18, 34, 0.74);
    padding: 1.1rem;
    min-height: 210px;
}

.v2-process-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    color: #cfe6ff;
    background: rgba(56, 130, 246, 0.22);
}

.v2-process-card p {
    color: #9ab0d7;
    margin: 0.5rem 0 0;
}

.v2-projects-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-project-card {
    border-radius: 18px;
    border: 1px solid rgba(191, 210, 248, 0.16);
    background: rgba(10, 18, 33, 0.76);
    box-shadow: 0 14px 34px rgba(3, 9, 24, 0.3);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-project-card__media {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.v2-project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.v2-project-card:hover .v2-project-card__media img {
    transform: scale(1.05);
}

.v2-project-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.v2-project-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(5, 8, 18, 0) 0%, rgba(5, 8, 18, 0.86) 46%, rgba(5, 8, 18, 0.96) 100%);
}

.v2-project-card__overlay h3 {
    margin: 0.5rem 0 0.35rem;
    font-size: 1rem;
}

.v2-project-card__overlay p {
    color: #b9c9e8;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
}

.v2-project-card:hover {
    border-color: rgba(100, 176, 255, 0.38);
    transform: translateY(-2px);
}

.v2-project-chip {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: #8ae6ff;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 0.24rem 0.58rem;
}

.v2-testimonial-slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
}

.v2-testimonials {
    background: linear-gradient(180deg, rgba(8, 13, 25, 0), rgba(8, 13, 25, 0.45));
}

.v2-slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(181, 206, 251, 0.28);
    border-radius: 999px;
    background: rgba(15, 23, 43, 0.8);
    color: #d8e7ff;
}

.v2-slider-btn:hover {
    border-color: rgba(34, 211, 238, 0.7);
}

.v2-slider-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.v2-testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
}

.v2-testimonial-track::-webkit-scrollbar {
    display: none;
}

.v2-testimonial-card {
    scroll-snap-align: start;
    border-radius: 16px;
    border: 1px solid rgba(186, 208, 248, 0.2);
    background: rgba(11, 19, 36, 0.8);
    padding: 1rem;
    min-height: 240px;
}

.v2-testimonial-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.v2-testimonial-card__head img {
    border-radius: 999px;
    border: 2px solid rgba(158, 187, 245, 0.35);
}

.v2-testimonial-card__head h3 {
    margin: 0;
    font-size: 1rem;
}

.v2-testimonial-card__head p {
    margin: 0.15rem 0 0;
    color: #90a8d4;
    font-size: 0.82rem;
}

.v2-stars {
    color: #fbbf24;
    margin-bottom: 0.7rem;
}

.v2-star-off {
    color: rgba(251, 191, 36, 0.36);
}

.v2-testimonial-card__text {
    color: #c3d8fb;
    margin: 0;
}

.v2-blog-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-blog-card {
    border-radius: 16px;
    border: 1px solid rgba(186, 209, 247, 0.17);
    background: rgba(11, 19, 36, 0.76);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v2-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(3, 9, 24, 0.34);
}

.v2-blog-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.v2-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.v2-blog-card:hover .v2-blog-card__media img {
    transform: scale(1.06);
}

.v2-blog-card__body {
    padding: 1rem;
}

.v2-blog-card__body p {
    color: #98b0d8;
    margin: 0.55rem 0 0.85rem;
}

.v2-section-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
}

.scroll-box-wrapper {
    border-radius: 16px;
    border: 1px solid rgba(174, 201, 242, 0.28);
    background: linear-gradient(145deg, rgba(13, 23, 43, 0.78), rgba(8, 14, 28, 0.64));
    box-shadow: 0 18px 34px rgba(3, 10, 24, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(1rem, 2.2vw, 1.35rem);
}

.scroll-box-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    line-height: 1.3;
    color: #e5f0ff;
}

.scroll-box-content {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.45rem;
    color: #b2c5e4;
    font-size: 0.97rem;
    line-height: 1.76;
    scrollbar-width: thin;
    scrollbar-color: rgba(157, 185, 233, 0.6) rgba(16, 29, 52, 0.34);
}

.scroll-box-content p {
    margin: 0 0 0.95rem;
}

.scroll-box-content p:last-child {
    margin-bottom: 0;
}

.scroll-box-content:focus-visible {
    outline: 2px solid rgba(125, 211, 252, 0.92);
    outline-offset: 2px;
    border-radius: 12px;
}

.scroll-box-content::-webkit-scrollbar {
    width: 8px;
}

.scroll-box-content::-webkit-scrollbar-track {
    background: rgba(16, 29, 52, 0.34);
    border-radius: 999px;
}

.scroll-box-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(151, 188, 244, 0.86), rgba(72, 149, 252, 0.88));
    border-radius: 999px;
}

[data-bs-theme="light"] .scroll-box-wrapper {
    border-color: rgba(148, 163, 184, 0.28);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.9));
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

[data-bs-theme="light"] .scroll-box-title {
    color: #111827;
}

[data-bs-theme="light"] .scroll-box-content {
    color: #334155;
    scrollbar-color: rgba(100, 116, 139, 0.55) rgba(203, 213, 225, 0.55);
}

[data-bs-theme="light"] .scroll-box-content::-webkit-scrollbar-track {
    background: rgba(203, 213, 225, 0.55);
}

[data-bs-theme="light"] .scroll-box-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(71, 85, 105, 0.82), rgba(59, 130, 246, 0.84));
}

.v2-cta-band {
    padding: 1rem 0;
}

.v2-cta-band__inner {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(132deg, rgba(49, 100, 238, 0.95), rgba(24, 185, 224, 0.9), rgba(96, 76, 237, 0.92));
    border: 1px solid rgba(224, 240, 255, 0.28);
    box-shadow: 0 22px 46px rgba(10, 25, 58, 0.36), 0 0 0 1px rgba(120, 214, 255, 0.12) inset;
    padding: clamp(1.15rem, 3.5vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    will-change: transform;
}

.v2-cta-band__inner::before {
    content: "";
    position: absolute;
    inset: -35% -20%;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.24), transparent 44%),
        radial-gradient(circle at 84% 74%, rgba(125, 211, 252, 0.18), transparent 46%);
    opacity: 0.75;
}

.v2-cta-band__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.14));
    mix-blend-mode: soft-light;
    opacity: 0.8;
}

.v2-cta-band__inner:hover,
.v2-cta-band__inner:focus-within {
    transform: translateY(-2px);
    border-color: rgba(229, 244, 255, 0.44);
    box-shadow: 0 26px 52px rgba(10, 25, 58, 0.45), 0 0 35px rgba(34, 211, 238, 0.22);
}

.v2-cta-band__inner h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
}

.v2-cta-band__inner p {
    position: relative;
    z-index: 1;
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.v2-cta-band__btn {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
    color: #f8fbff;
    box-shadow: 0 14px 28px rgba(4, 15, 34, 0.3);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.v2-cta-band__btn:hover,
.v2-cta-band__btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16), 0 16px 30px rgba(4, 15, 34, 0.35);
}

.v2-contact-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.v2-contact-info p {
    color: #9bb3db;
}

.v2-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.v2-contact-info__list {
    display: grid;
    gap: 0.65rem;
}

.v2-contact-info__item {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    border-radius: 14px;
    border: 1px solid rgba(188, 208, 247, 0.2);
    background: rgba(10, 18, 33, 0.62);
    padding: 0.66rem 0.8rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.v2-contact-info__item:hover,
.v2-contact-info__item:focus-within {
    transform: translateX(4px);
    border-color: rgba(92, 185, 255, 0.5);
    background: rgba(12, 24, 44, 0.76);
    box-shadow: 0 14px 24px rgba(3, 10, 24, 0.25);
}

.v2-contact-info__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bde7ff;
    border: 1px solid rgba(120, 214, 255, 0.4);
    background:
        radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.28), rgba(59, 130, 246, 0.2)),
        rgba(10, 18, 33, 0.75);
    box-shadow: 0 10px 22px rgba(2, 8, 24, 0.28);
}

.v2-contact-info__content {
    display: grid;
    gap: 0.1rem;
}

.v2-contact-info__content strong {
    color: #e8f2ff;
    font-size: 0.92rem;
}

.v2-contact-info__content span {
    color: #b6c9ea;
    font-size: 0.88rem;
}

.v2-map-wrap,
.v2-map-placeholder {
    margin-top: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(185, 206, 247, 0.2);
    background: rgba(10, 18, 33, 0.7);
    overflow: hidden;
    min-height: 290px;
}

.v2-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 290px;
    border: 0;
}

.v2-map-placeholder {
    display: grid;
    place-items: center;
    color: #9db3d8;
    font-size: 0.9rem;
}

.v2-contact-form-wrap {
    border-radius: 18px;
    border: 1px solid rgba(188, 208, 247, 0.24);
    background: linear-gradient(165deg, rgba(10, 18, 33, 0.72), rgba(8, 15, 30, 0.82));
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 48px rgba(2, 8, 24, 0.4), 0 0 0 1px rgba(148, 200, 255, 0.09) inset;
    padding: clamp(1rem, 2.4vw, 1.5rem);
}

.v2-contact-form {
    display: grid;
    gap: 0.8rem;
}

.v2-field {
    position: relative;
}

.v2-field__icon {
    position: absolute;
    left: 0.84rem;
    top: 0.98rem;
    color: #7ea8db;
    font-size: 0.9rem;
    line-height: 1;
    pointer-events: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.v2-field input,
.v2-field textarea {
    width: 100%;
    border: 1px solid rgba(180, 202, 247, 0.22);
    background: rgba(8, 14, 28, 0.74);
    color: #eaf2ff;
    border-radius: 12px;
    padding: 1rem 0.95rem 0.5rem 2.55rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.v2-field textarea {
    resize: vertical;
    min-height: 134px;
}

.v2-field label {
    position: absolute;
    left: 2.5rem;
    top: 0.88rem;
    color: #87a0cc;
    pointer-events: none;
    transition: transform 0.18s ease, top 0.18s ease, color 0.18s ease, font-size 0.18s ease;
}

.v2-field input:focus,
.v2-field textarea:focus {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
    background: rgba(9, 18, 36, 0.9);
    outline: none;
}

.v2-field:focus-within .v2-field__icon {
    color: #7dd3fc;
    transform: scale(1.06);
}

.v2-field input:focus + label,
.v2-field textarea:focus + label,
.v2-field input:not(:placeholder-shown) + label,
.v2-field textarea:not(:placeholder-shown) + label,
.v2-field.has-value label {
    top: 0.32rem;
    font-size: 0.72rem;
    color: #8fe5ff;
}

.v2-contact-submit {
    background: linear-gradient(130deg, #4f7cff, #00d4ff);
    border: 1px solid rgba(133, 224, 255, 0.58);
    box-shadow: 0 14px 26px rgba(8, 22, 52, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.v2-contact-submit:hover,
.v2-contact-submit:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(164, 234, 255, 0.82);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18), 0 18px 32px rgba(8, 22, 52, 0.44);
}

@media (max-width: 1199.98px) {
    .v2-hero__grid,
    .v2-about__grid,
    .v2-why__grid,
    .v2-contact-grid {
        grid-template-columns: 1fr;
    }

    .v2-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-service-grid {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }

    .v2-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .v2-trusted__logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .v2-dashboard__grid {
        grid-template-columns: 1fr;
    }

    .v2-tech-float {
        display: none;
    }

    .v2-proof-grid {
        grid-template-columns: 1fr;
    }

    .v2-testimonial-track {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }

    .v2-cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-box-content {
        max-height: 230px;
    }
}

@media (max-width: 767.98px) {
    .v2-blog-grid,
    .v2-process-grid,
    .v2-projects-grid {
        grid-template-columns: 1fr;
    }

    .v2-testimonial-slider {
        grid-template-columns: 1fr;
    }

    .v2-slider-btn {
        display: none;
    }

    .v2-testimonial-track {
        grid-auto-columns: 100%;
    }

    .v2-service-slider {
        grid-template-columns: 1fr;
    }

    .v2-service-grid {
        grid-auto-columns: 100%;
    }

    .v2-trusted__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-hero__media {
        min-height: auto;
    }

    .v2-dashboard-mockup {
        padding: 0.7rem;
    }

    .v2-dashboard__topbar {
        font-size: 0.72rem;
    }

    .v2-dash-card {
        min-height: 112px;
    }

    .v2-float-card {
        position: static;
        margin-top: 0.7rem;
        min-width: 0;
    }

    .v2-proof-inline {
        gap: 0.72rem;
    }

    .scroll-box-content {
        max-height: 200px;
        font-size: 0.94rem;
        line-height: 1.7;
    }
}

.trust-metrics-bar {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 180px;
}

.trust-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.7;
}

.trust-value {
    font-weight: 600;
    font-size: 15px;
}

/* Profile Helper Blocks */









.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    width: 100%;
}

.profile-main {
    display: grid;
    gap: 0.9rem;
}

.profile-summary {
    width: 100%;
}


.profile-field {
    display: grid;
    gap: 0.35rem;
}

.profile-field label {
    color: #9fb7dc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.profile-field p {
    margin: 0;
    color: #a7bddf;
}

.profile-field--full {
    grid-column: 1 / -1;
}

.profile-summary h2 {
    margin: 0 0 0.7rem;
    color: #eaf4ff;
    font-size: 1.1rem;
}

.profile-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.profile-summary-item {
    border: 1px solid rgba(173, 198, 241, 0.18);
    border-radius: 12px;
    background: rgba(8, 14, 28, 0.52);
    padding: 0.7rem;
}

.profile-summary-item span {
    display: block;
    color: #9fb7dc;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.35rem;
}

.profile-summary-item strong {
    color: #ecf6ff;
    font-size: 1.05rem;
}

.profile-summary-item--wide {
    grid-column: 1 / -1;
}





.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 34px;
    padding: 0 0.7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.status-badge.paid {
    color: #defcef;
    border-color: rgba(52, 211, 153, 0.48);
    background: linear-gradient(120deg, rgba(5, 150, 105, 0.78), rgba(16, 185, 129, 0.66));
}

.status-badge.failed {
    color: #ffe5ea;
    border-color: rgba(251, 113, 133, 0.45);
    background: rgba(251, 113, 133, 0.2);
}

.status-badge.pending {
    color: #fef3c7;
    border-color: rgba(251, 191, 36, 0.45);
    background: rgba(251, 191, 36, 0.18);
}

.action-btn-glow,
.action-btn-secondary {
    border: 0;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn-glow {
    color: #04131f;
    background: linear-gradient(120deg, #22d3ee, #3b82f6);
    box-shadow: 0 14px 26px rgba(34, 211, 238, 0.26);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(34, 211, 238, 0.3);
}

.action-btn-secondary {
    color: #d8e7ff;
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.32);
}


.download-token-row {
    margin-top: 0.8rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(173, 198, 241, 0.12);
}

.token-info-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 0 0.72rem;
    font-size: 0.78rem;
    color: #c6daf7;
    background: rgba(148, 163, 184, 0.16);
}

.stat-box h2 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: #e5f2ff;
}

.stat-box p {
    margin: 0;
    color: #a8bddf;
}
















.recovery-code-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.recovery-code-wrap code {
    border: 1px solid rgba(173, 198, 241, 0.3);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    background: rgba(148, 163, 184, 0.14);
    color: #dbeafe;
}

.step-indicator {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.step {
    min-height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #9cb4d8;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 0 0.72rem;
}

.step.active {
    color: #e9faff;
    border-color: rgba(34, 211, 238, 0.6);
    background: rgba(34, 211, 238, 0.16);
}


@media (max-width: 991.98px) {

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-summary-grid {
        grid-template-columns: 1fr;
    }





}

/* Premium SaaS uplift (frontend-only visual layer) */
.v2-hero {
    isolation: isolate;
}

.v2-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(135, 160, 210, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135, 160, 210, 0.09) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.9), transparent 82%);
    opacity: 0.35;
}

.v2-hero::after {
    content: "";
    position: absolute;
    width: min(520px, 58vw);
    height: min(520px, 58vw);
    right: -10%;
    top: -18%;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.42) 0%, rgba(56, 189, 248, 0) 70%);
    filter: blur(8px);
    animation: v2HeroGlowFloat 8s ease-in-out infinite;
}

.v2-hero__mockup {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
        rgba(10, 16, 33, 0.86);
}

.v2-float-card {
    border-color: rgba(168, 202, 255, 0.42);
    box-shadow: 0 22px 44px rgba(2, 8, 22, 0.4), 0 0 28px rgba(59, 130, 246, 0.14);
}

.v2-trusted {
    position: relative;
    overflow: hidden;
}

.v2-trusted::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.08), rgba(34, 211, 238, 0.04), transparent 65%);
}

.v2-trusted__logos img,
.v2-trusted__placeholder {
    filter: grayscale(1) saturate(0.15);
    opacity: 0.76;
    transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform, opacity;
}

.v2-trusted__logos img:hover,
.v2-trusted__logos img:focus-visible,
.v2-trusted__placeholder:hover,
.v2-trusted__placeholder:focus-visible {
    filter: grayscale(0) saturate(1);
    opacity: 1;
    transform: translate3d(0, -4px, 0);
    border-color: rgba(59, 130, 246, 0.42);
    box-shadow: 0 14px 28px rgba(5, 12, 27, 0.35);
}

.v2-logo-cloud-section {
    padding-top: 0.3rem;
}

.v2-logo-cloud {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.75rem;
}

.v2-logo-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(186, 208, 247, 0.2);
    background: rgba(255, 255, 255, 0.03);
    color: #a9bcdf;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
    will-change: transform;
    animation: v2LogoFloat 5.2s ease-in-out infinite;
}

.v2-logo-pill i {
    font-size: 1rem;
    opacity: 0.82;
    transition: transform 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.v2-logo-pill:hover,
.v2-logo-pill:focus-visible {
    color: #eaf4ff;
    border-color: rgba(59, 130, 246, 0.5);
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 20px 40px rgba(2, 8, 24, 0.44), 0 0 34px rgba(56, 189, 248, 0.2);
}

.v2-logo-pill:hover i,
.v2-logo-pill:focus-visible i {
    transform: scale(1.12) rotate(4deg);
    color: #7dd3fc;
    opacity: 1;
}

.v2-logo-pill:nth-child(2n) {
    animation-delay: 0.3s;
}

.v2-logo-pill:nth-child(3n) {
    animation-delay: 0.6s;
}

.v2-card--feature,
.v2-process-card,
.v2-project-card,
.v2-testimonial-card,
.v2-blog-card {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform, box-shadow;
}

.v2-card--feature:hover,
.v2-process-card:hover,
.v2-project-card:hover,
.v2-testimonial-card:hover,
.v2-blog-card:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(59, 130, 246, 0.46);
    box-shadow: 0 24px 52px rgba(2, 8, 24, 0.42), 0 0 28px rgba(59, 130, 246, 0.18);
}

.v2-card__icon {
    width: 52px;
    height: 52px;
}

.v2-card__icon i {
    transition: transform 0.22s ease;
}

.v2-card--feature:hover .v2-card__icon i {
    transform: scale(1.12) rotate(6deg);
}

.v2-project-card__overlay {
    padding-bottom: 1.1rem;
}

.v2-project-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 211, 252, 0.42);
    background: rgba(15, 26, 48, 0.72);
    color: #d8ecff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.24rem 0.64rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-project-card:hover .v2-project-cta {
    transform: translate3d(0, -2px, 0);
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.2);
}

.v2-testimonial-card__head img {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 22px rgba(2, 8, 24, 0.44);
}

.v2-slider-btn {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.v2-slider-btn:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.22);
}

.v2-cta-band__inner {
    position: relative;
    overflow: hidden;
    background-size: 180% 180%;
    animation: v2CtaGradientShift 10s ease-in-out infinite;
}

.v2-cta-band__inner::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    right: -10%;
    top: -120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.v2-cta-band__inner .v2-btn--light {
    border: 1px solid rgba(255, 255, 255, 0.44);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.v2-cta-band__inner .v2-btn--light:hover {
    transform: translate3d(0, -2px, 0) scale(1.03);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.56);
}

@keyframes v2HeroGlowFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-18px, 14px, 0);
    }
}

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

@keyframes v2CtaGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 1199.98px) {
    .v2-logo-cloud {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .v2-logo-cloud {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .v2-logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-hero__bg,
    .v2-hero::after,
    .v2-logo-pill,
    .v2-cta-band__inner {
        animation: none !important;
    }
}

/* Home tech architecture upgrade */
.v2-tech-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1rem;
}

.v2-tech-map-card {
    padding: 0.8rem;
}

.v2-tech-mini-map {
    position: relative;
    min-height: 430px;
    border-radius: 16px;
    border: 1px solid rgba(177, 201, 247, 0.24);
    background:
        radial-gradient(circle at 16% 10%, rgba(59, 130, 246, 0.18), transparent 48%),
        radial-gradient(circle at 88% 90%, rgba(34, 211, 238, 0.14), transparent 44%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 32px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 32px),
        linear-gradient(180deg, rgba(6, 12, 24, 0.78), rgba(6, 12, 24, 0.36));
    overflow: hidden;
}

.v2-tech-mini-map::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 22% 22%, rgba(68, 126, 255, 0.2), transparent 36%);
    opacity: 0.85;
}

.v2-tech-mini-map__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.v2-tech-line {
    stroke: rgba(137, 161, 214, 0.26);
    stroke-width: 1.3;
    opacity: 0.72;
    transition: stroke 0.22s ease, opacity 0.22s ease, stroke-width 0.22s ease;
}

.v2-tech-line.is-active {
    stroke: rgba(96, 165, 250, 0.96);
    stroke-width: 2.1;
    opacity: 1;
}

.v2-tech-mini-node {
    position: absolute;
    left: 14%;
    top: 14%;
    transform: translate(-50%, -50%);
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.48rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(6, 14, 28, 0.78);
    color: #e7f1ff;
    min-height: 40px;
    max-width: 190px;
    padding: 0.34rem 0.7rem 0.34rem 0.52rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
    will-change: transform, opacity;
    z-index: 2;
    white-space: nowrap;
}

.v2-tech-mini-node__icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.v2-tech-mini-node__icon i {
    font-size: 0.82rem;
}

.v2-tech-mini-node__label {
    font-size: 0.79rem;
    letter-spacing: 0.01em;
}

.v2-tech-mini-node:hover,
.v2-tech-mini-node:focus-visible,
.v2-tech-mini-node.is-active {
    transform: translate(-50%, -50%) scale(1.11);
    border-color: rgba(59, 130, 246, 0.62);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4), 0 0 26px rgba(59, 130, 246, 0.3), 0 14px 32px rgba(0, 0, 0, 0.44);
    z-index: 4;
}

.v2-tech-mini-node:focus-visible {
    outline: none;
}

.v2-tech-mini-node.is-active::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.7);
    opacity: 0.6;
    animation: v2HomeTechPulse 1.9s ease-out infinite;
}

@keyframes v2HomeTechPulse {
    0% { transform: scale(1); opacity: 0.62; }
    100% { transform: scale(1.22); opacity: 0; }
}

.v2-tech-mini-node.is-dim {
    opacity: 0.22;
    pointer-events: none;
}

.v2-tech-mini-node.is-linked {
    border-color: rgba(6, 182, 212, 0.52);
    box-shadow: 0 10px 24px rgba(5, 14, 34, 0.45);
}

.v2-tech-mini-node[data-node-category="backend"] { color: #93c5fd; }
.v2-tech-mini-node[data-node-category="database"] { color: #a5b4fc; }
.v2-tech-mini-node[data-node-category="devops"] { color: #86efac; }
.v2-tech-mini-node[data-node-category="cloud"] { color: #67e8f9; }
.v2-tech-mini-node[data-node-category="payments"] { color: #c4b5fd; }
.v2-tech-mini-node[data-node-category="security"] { color: #f9a8d4; }

.v2-tech-mini-tooltip {
    position: absolute;
    left: 0;
    top: 0;
    max-width: min(90%, 280px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(6, 12, 24, 0.92);
    color: #e4efff;
    font-size: 0.8rem;
    line-height: 1.55;
    padding: 0.56rem 0.62rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translate3d(-9999px, -9999px, 0);
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 5;
}

.v2-tech-mini-tooltip.is-visible {
    opacity: 1;
}

.v2-tech-mini-tooltip strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #f4f9ff;
    font-size: 0.84rem;
}

.v2-tech-preview__panel {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    padding: 1.15rem;
}

.v2-tech-preview__panel h3 {
    margin: 0;
}

.v2-tech-preview__panel p {
    margin: 0;
    color: #a6bde1;
}

.v2-tech-preview__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.56rem;
}

.v2-tech-preview__list li {
    border-left: 2px solid rgba(59, 130, 246, 0.5);
    padding-left: 0.72rem;
    color: #cfe0fc;
    font-size: 0.9rem;
}

.v2-metric-strip {
    padding-top: 0.45rem;
}

.v2-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.v2-metric-item {
    border-radius: 14px;
    border: 1px solid rgba(180, 204, 246, 0.2);
    background: rgba(10, 18, 34, 0.75);
    padding: 1rem;
}

.v2-metric-item strong {
    display: block;
    color: #f3f9ff;
    font-size: 1.2rem;
}

.v2-metric-item span {
    color: #9fb5da;
    font-size: 0.86rem;
}

.v2-stack-architecture {
    position: relative;
    overflow: hidden;
}

.v2-stack-architecture::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(124, 158, 214, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 158, 214, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.22;
}

.v2-stack-architecture::after {
    content: "";
    position: absolute;
    top: -210px;
    left: 50%;
    width: min(1200px, 95vw);
    height: 300px;
    transform: translateX(-50%);
    pointer-events: none;
    background:
        radial-gradient(66% 96% at 22% 54%, rgba(79, 124, 255, 0.11), transparent 76%),
        radial-gradient(66% 96% at 80% 42%, rgba(0, 212, 255, 0.08), transparent 78%);
    filter: blur(36px);
    opacity: 0.27;
}

.v2-stack-architecture > .container {
    position: relative;
    z-index: 1;
}

.v2-stack-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1rem;
}

.v2-stack-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.v2-stack-block {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(180, 204, 246, 0.2);
    background:
        linear-gradient(155deg, rgba(18, 33, 62, 0.72), rgba(7, 14, 28, 0.84)),
        rgba(10, 18, 34, 0.76);
    padding: 1rem;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.v2-stack-block:hover,
.v2-stack-block:focus-within {
    transform: translateY(-6px);
    border-color: rgba(96, 188, 255, 0.42);
    box-shadow: 0 18px 36px rgba(4, 12, 28, 0.48), 0 0 0 1px rgba(79, 124, 255, 0.18);
}

.v2-stack-block__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(166, 194, 240, 0.32);
    background: rgba(8, 18, 36, 0.76);
    color: #b9d5ff;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.16rem 0.62rem;
    margin-bottom: 0.72rem;
}

.v2-stack-block h3 {
    margin: 0 0 0.62rem;
    font-size: 1rem;
}

.v2-stack-tech-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.v2-stack-tech-list li {
    display: flex;
    align-items: center;
    gap: 0.56rem;
    border-radius: 11px;
    border: 1px solid rgba(170, 196, 240, 0.2);
    background: rgba(7, 14, 28, 0.7);
    color: #d7e8ff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.54rem;
}

.v2-stack-tech-list__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(188, 209, 247, 0.3);
    background: rgba(5, 11, 24, 0.74);
    color: #d4e5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.v2-stack-block:hover .v2-stack-tech-list__icon,
.v2-stack-block:focus-within .v2-stack-tech-list__icon {
    border-color: rgba(105, 193, 255, 0.46);
    color: #eff7ff;
}

.v2-architecture-diagram {
    padding: 1rem;
    background:
        linear-gradient(165deg, rgba(16, 35, 65, 0.7), rgba(8, 14, 28, 0.9)),
        rgba(7, 14, 28, 0.88);
}

.v2-architecture-diagram h3 {
    margin: 0 0 0.7rem;
}

.v2-architecture-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.v2-architecture-flow li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.56rem;
    border-radius: 12px;
    border: 1px solid rgba(176, 201, 245, 0.24);
    background: rgba(8, 14, 28, 0.78);
    color: #d7e6ff;
    min-height: 44px;
    padding: 0.58rem 0.8rem 0.58rem 0.72rem;
    font-weight: 600;
}

.v2-architecture-flow__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    flex: 0 0 8px;
    background: linear-gradient(180deg, #4f7cff, #00d4ff);
    box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.14), 0 0 14px rgba(0, 212, 255, 0.44);
}

.v2-architecture-flow__label {
    display: inline-flex;
    align-items: center;
}

.v2-architecture-flow li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 18px;
    top: calc(100% - 1px);
    width: 2px;
    height: 0.96rem;
    background: linear-gradient(180deg, rgba(79, 124, 255, 0.58), rgba(0, 212, 255, 0.12));
}

.v2-architecture-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 14px;
    top: calc(100% - 1px);
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.95), rgba(79, 124, 255, 0.22));
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.48);
    animation: v2-flow-dot 2.6s linear infinite;
}

.v2-architecture-flow li:nth-child(1)::after { animation-delay: 0s; }
.v2-architecture-flow li:nth-child(2)::after { animation-delay: 0.22s; }
.v2-architecture-flow li:nth-child(3)::after { animation-delay: 0.44s; }
.v2-architecture-flow li:nth-child(4)::after { animation-delay: 0.66s; }

@keyframes v2-flow-dot {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.72);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(15px) scale(1);
    }
}

.v2-code-standards {
    position: relative;
    overflow: hidden;
}

.v2-code-standards::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    width: min(1160px, 94vw);
    height: 290px;
    transform: translateX(-50%);
    pointer-events: none;
    background:
        radial-gradient(64% 94% at 20% 44%, rgba(79, 124, 255, 0.11), transparent 74%),
        radial-gradient(64% 94% at 80% 30%, rgba(0, 212, 255, 0.08), transparent 76%);
    filter: blur(34px);
    opacity: 0.26;
}

.v2-code-standards .container {
    position: relative;
    z-index: 1;
}

.v2-code-standards__summary {
    max-width: 720px;
    margin: 0.72rem auto 0;
    color: #a9c1e4;
    font-size: 0.97rem;
    line-height: 1.6;
    text-align: center;
}

.v2-code-standards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.v2-code-standard-item {
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(180, 204, 246, 0.22);
    background:
        linear-gradient(160deg, rgba(14, 29, 54, 0.66), rgba(7, 14, 28, 0.84)),
        rgba(9, 18, 34, 0.78);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.v2-code-standard-item:hover,
.v2-code-standard-item:focus-within {
    transform: translateY(-6px);
    border-color: rgba(96, 188, 255, 0.44);
    box-shadow: 0 18px 34px rgba(4, 12, 28, 0.44), 0 0 0 1px rgba(79, 124, 255, 0.2);
}

.v2-code-standard-item i {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(144, 208, 255, 0.38), rgba(79, 124, 255, 0.24)),
        rgba(8, 16, 32, 0.8);
    border: 1px solid rgba(176, 206, 245, 0.38);
    color: #d8ecff;
    margin-bottom: 0.72rem;
    font-size: 1.06rem;
    box-shadow: 0 0 0 8px rgba(79, 124, 255, 0.1), 0 0 22px rgba(0, 212, 255, 0.2);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.v2-code-standard-item:hover i,
.v2-code-standard-item:focus-within i {
    transform: scale(1.06);
    border-color: rgba(131, 213, 255, 0.56);
    box-shadow: 0 0 0 8px rgba(79, 124, 255, 0.16), 0 0 28px rgba(0, 212, 255, 0.34);
}

.v2-code-standard-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.v2-code-standard-item p {
    margin: 0;
    color: #9fb5da;
}

.v2-process-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    position: relative;
}

.v2-process-timeline::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.24), rgba(34, 211, 238, 0.46), rgba(59, 130, 246, 0.24));
    pointer-events: none;
}

.v2-process-step {
    position: relative;
    --mx: 50%;
    --my: 50%;
    border-radius: 14px;
    border: 1px solid rgba(180, 204, 246, 0.2);
    background: rgba(10, 18, 34, 0.76);
    padding: 2rem 0.8rem 0.9rem;
    min-height: 190px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.v2-process-step::after {
    content: "";
    position: absolute;
    inset: -30%;
    pointer-events: none;
    background: radial-gradient(circle at var(--mx) var(--my), rgba(59, 130, 246, 0.26) 0%, rgba(59, 130, 246, 0) 62%);
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.v2-process-step:hover,
.v2-process-step:focus-within {
    transform: translate3d(0, -4px, 0);
    border-color: rgba(59, 130, 246, 0.52);
    box-shadow: 0 22px 46px rgba(3, 10, 24, 0.45), 0 0 0 1px rgba(59, 130, 246, 0.24);
}

.v2-process-step:hover::after,
.v2-process-step:focus-within::after {
    opacity: 1;
    transform: scale(1);
}

.v2-process-step__dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.84);
    background: #0b1220;
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.16);
}

.v2-process-step h3 {
    text-align: center;
    margin: 0 0 0.55rem;
    font-size: 0.96rem;
}

.v2-process-step p {
    margin: 0;
    text-align: center;
    color: #9fb5da;
    font-size: 0.88rem;
}

.v2-case-grid {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.55rem;
}

.v2-case-row {
    border: 1px solid rgba(179, 204, 246, 0.22);
    background: rgba(9, 14, 28, 0.56);
    border-radius: 10px;
    padding: 0.42rem 0.52rem;
}

.v2-case-row span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #85c7ff;
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.v2-case-row p {
    margin: 0;
    font-size: 0.75rem;
    color: #d6e7ff;
    line-height: 1.42;
}

.v2-map-wrap {
    position: relative;
    border-color: rgba(91, 124, 255, 0.24);
    background: #0b1220;
}

.v2-map-wrap iframe {
    filter: grayscale(1) invert(92%) hue-rotate(182deg) saturate(220%) brightness(0.78) contrast(1.05);
}

.v2-map-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(170deg, rgba(11, 18, 32, 0.55), rgba(0, 212, 255, 0.08)),
        radial-gradient(circle at 16% 18%, rgba(17, 24, 39, 0.35), transparent 38%);
    pointer-events: none;
}

.v2-home-trust-band {
    padding: 0 0 2.2rem;
}

.v2-home-trust-band__inner {
    border-radius: 18px;
    border: 1px solid rgba(179, 203, 245, 0.2);
    background: rgba(10, 18, 34, 0.8);
    box-shadow: 0 18px 38px rgba(2, 8, 22, 0.36);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.v2-home-trust-band__inner p {
    margin: 0;
    color: #cfe0fc;
    font-weight: 600;
}

.v2-home-trust-band__icons {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.v2-home-trust-band__icons span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(168, 192, 236, 0.3);
    background: rgba(8, 14, 28, 0.72);
    color: #d9e8ff;
    font-size: 0.8rem;
    padding: 0.2rem 0.72rem;
}

.v2-home-trust-band__icons i {
    color: #86d4ff;
}

@media (max-width: 1199.98px) {
    .v2-tech-preview__grid,
    .v2-stack-layout {
        grid-template-columns: 1fr;
    }

    .v2-code-standards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-process-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .v2-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-tech-mini-map {
        min-height: 380px;
    }

    .v2-process-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .v2-tech-mini-map {
        min-height: 340px;
    }

    .v2-tech-mini-node {
        font-size: 0.72rem;
        min-height: 35px;
        padding: 0.26rem 0.54rem 0.26rem 0.44rem;
        max-width: 150px;
        gap: 0.38rem;
    }

    .v2-tech-mini-node__icon {
        width: 18px;
        height: 18px;
    }

    .v2-tech-mini-node__icon i {
        font-size: 0.72rem;
    }

    .v2-tech-mini-node__label {
        font-size: 0.69rem;
    }

    .v2-metric-grid,
    .v2-stack-blocks,
    .v2-code-standards__grid,
    .v2-process-timeline {
        grid-template-columns: 1fr;
    }

    .v2-process-timeline::before {
        display: none;
    }

    .v2-process-step {
        min-height: 140px;
    }

    .v2-stack-block {
        padding: 0.9rem;
    }

    .v2-about__summary {
        text-align: left;
        margin-top: 0.62rem;
    }

    .v2-about__stats {
        grid-template-columns: 1fr;
    }

    .v2-about__stat {
        padding: 0.58rem 0.66rem;
    }

    .v2-about-card {
        padding: 1rem;
    }

    .v2-services .v2-card--feature {
        padding: 1.12rem;
    }

    .v2-feature-item {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 0.6rem 0.66rem;
    }

    .v2-feature-item__icon {
        width: 32px;
        height: 32px;
    }

    .v2-feature-item__title {
        font-size: 0.88rem;
    }

    .v2-feature-item__desc {
        font-size: 0.79rem;
    }

    .v2-stack-tech-list__icon {
        width: 30px;
        height: 30px;
        font-size: 0.94rem;
    }

    .v2-architecture-flow li {
        min-height: 42px;
        padding: 0.52rem 0.72rem 0.52rem 0.66rem;
    }

    .v2-architecture-flow li:not(:last-child)::before {
        left: 16px;
    }

    .v2-architecture-flow li:not(:last-child)::after {
        left: 12px;
    }

    .v2-home-trust-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-tech-mini-node,
    .v2-tech-line,
    .v2-map-wrap iframe,
    .v2-process-step,
    .v2-process-step::after,
    .v2-stack-block,
    .v2-stack-tech-list__icon,
    .v2-architecture-flow li::after,
    .v2-code-standard-item,
    .v2-code-standard-item i,
    .v2-about-card,
    .v2-about-card__icon,
    .v2-services .v2-card--feature,
    .v2-services .v2-card__media img,
    .v2-services .v2-card--feature .v2-inline-link i,
    .v2-feature-item {
        transition: none !important;
        animation: none !important;
    }
}
