*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #04060f;
    --bg2: #080c18;
    --surface: #0c1124;
    --surface2: #101628;
    --border: #1a2340;
    --cyan: #00f5ff;
    --cyan2: #00bcd4;
    --red: #ff2d55;
    --green: #00ff88;
    --purple: #7b2fff;
    --text: #c8d8f0;
    --muted: #5a7090;
    --white: #ffffff;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6
}
.service-block,
.legal-card{
    scroll-margin-top:120px;
}
a:-webkit-any-link {
    color: unset;
    text-decoration: none;
}
.vno {
    visibility: hidden;
}

.justify-center {
    justify-content: center;
}

[data-bgimg]{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 2px
}

/* ─── CANVAS ─── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .5
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 105px;
    background: rgba(4, 6, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.08);
}

nav .nav-logo {
    top: 2px;
    position: relative;
}

.nav-logo img {
    height: 90px;
}

.nav-logo .shield-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #000;
    font-weight: 900;
    animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 255, .4)
    }

    50% {
        box-shadow: 0 0 20px 8px rgba(0, 245, 255, .15)
    }
}

.nav-logo span {
    color: var(--cyan)
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .04em;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--cyan);
    transform: scaleX(0);
    transition: transform .25s;
}

.nav-links a:hover {
    color: var(--cyan)
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

.nav-cta {
    display: flex;
    gap: .75rem;
    align-items: center
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    color: #000;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    opacity: 0;
    transition: opacity .3s;
}

.btn-primary:hover::before {
    opacity: 1
}

.btn-primary span {
    position: relative
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid rgba(0, 245, 255, .4);
}

.btn-outline:hover {
    background: rgba(0, 245, 255, .08);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, .15);
}

.btn-red {
    background: transparent;
    color: var(--red);
    border: 1px solid rgba(255, 45, 85, .4);
}

.btn-red:hover {
    background: rgba(255, 45, 85, .08);
    border-color: var(--red)
}

/* ─── HERO ─── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 150px 5% 5rem;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 245, 255, .05);
    border: 1px solid rgba(0, 245, 255, .2);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: .72rem;
    padding: .3rem .85rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    letter-spacing: .1em;
    animation: badge-glow 2.5s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        border-color: rgba(0, 245, 255, .2)
    }

    50% {
        border-color: rgba(0, 245, 255, .6);
        box-shadow: 0 0 15px rgba(0, 245, 255, .1)
    }
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: dot-blink 1.5s ease infinite
}

@keyframes dot-blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--green)
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.01em;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-title .line2 {
    background: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-title .glitch {
    position: relative;
    animation: glitch-flicker 6s ease-in-out infinite;
}

@keyframes glitch-flicker {

    0%,
    92%,
    100% {
        text-shadow: none
    }

    93% {
        text-shadow: -2px 0 var(--red), 2px 0 var(--cyan)
    }

    94% {
        text-shadow: 2px 0 var(--purple), -2px 0 var(--green)
    }

    95% {
        text-shadow: none
    }

    97% {
        text-shadow: -3px 0 var(--cyan), 3px 0 var(--red)
    }

    98% {
        text-shadow: none
    }
}

.hero-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2.25rem;
    line-height: 1.75
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem
}

.trust-avatars {
    display: flex
}

.trust-avatars .av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av:nth-child(1) {
    background: linear-gradient(135deg, #ff6b6b, #ff2d55)
}

.av:nth-child(2) {
    background: linear-gradient(135deg, #4ecdc4, #00bcd4)
}

.av:nth-child(3) {
    background: linear-gradient(135deg, #a855f7, #7b2fff)
}

.av:nth-child(4) {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #000
}

.trust-text {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.4
}

.trust-text strong {
    color: var(--white);
    display: block
}

/* ─── HERO VISUAL ─── */
.hero-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Hex grid background */
.hex-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17' fill='none' stroke='rgba(0,245,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 52px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    animation: hex-shift 20s linear infinite;
}

@keyframes hex-shift {
    from {
        background-position: 0 0
    }

    to {
        background-position: 60px 52px
    }
}

/* Central shield */
.c-shield {
    position: relative;
    z-index: 5;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-svg {
    width: 200px;
    height: 220px;
    filter: drop-shadow(0 0 30px rgba(0, 245, 255, .5)) drop-shadow(0 0 60px rgba(0, 245, 255, .2));
    animation: shield-float 4s ease-in-out infinite;
}

@keyframes shield-float {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-12px) scale(1.02)
    }
}

/* Rotating data rings */
.data-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.ring1 {
    width: 320px;
    height: 320px;
    border-top: 2px solid var(--cyan);
    border-right: 2px solid rgba(0, 245, 255, .2);
    border-bottom: 1px solid rgba(0, 245, 255, .05);
    border-left: 1px solid rgba(0, 245, 255, .1);
    animation: rotate-cw 8s linear infinite;
}

.ring2 {
    width: 420px;
    height: 420px;
    border-bottom: 2px solid var(--purple);
    border-left: 2px solid rgba(123, 47, 255, .3);
    border-top: 1px solid transparent;
    border-right: 1px solid rgba(123, 47, 255, .1);
    animation: rotate-ccw 12s linear infinite;
}

.ring3 {
    width: 500px;
    height: 500px;
    border-top: 1px solid rgba(0, 245, 255, .08);
    border-right: 2px solid rgba(0, 245, 255, .15);
    animation: rotate-cw 20s linear infinite;
}

@keyframes rotate-cw {
    to {
        transform: rotate(360deg)
    }
}

@keyframes rotate-ccw {
    to {
        transform: rotate(-360deg)
    }
}

/* Ring node markers */
.ring-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    top: 50%;
    left: 50%;
    margin: -5px;
}

.rn1 {
    animation: orbit-rn1 8s linear infinite
}

.rn2 {
    background: var(--purple);
    box-shadow: 0 0 12px var(--purple);
    animation: orbit-rn2 12s linear infinite;
    width: 8px;
    height: 8px;
    margin: -4px
}

.rn3 {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    width: 6px;
    height: 6px;
    margin: -3px;
    animation: orbit-rn3 8s linear infinite
}

@keyframes orbit-rn1 {
    from {
        transform: rotate(0deg) translateX(160px)
    }

    to {
        transform: rotate(360deg) translateX(160px)
    }
}

@keyframes orbit-rn2 {
    from {
        transform: rotate(90deg) translateX(210px)
    }

    to {
        transform: rotate(450deg) translateX(210px)
    }
}

@keyframes orbit-rn3 {
    from {
        transform: rotate(180deg) translateX(160px)
    }

    to {
        transform: rotate(540deg) translateX(160px)
    }
}

/* Floating stat cards */
.stat-float {
    position: absolute;
    z-index: 6;
    background: rgba(8, 12, 24, .9);
    border: 1px solid rgba(0, 245, 255, .15);
    border-radius: 8px;
    padding: .8rem 1.1rem;
    backdrop-filter: blur(12px);
    animation: float-card 5s ease-in-out infinite;
}

.sf1 {
    top: 6%;
    left: -5%;
    animation-delay: 0s
}

.sf2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 1.5s
}

.sf3 {
    top: 10%;
    right: -5%;
    animation-delay: .8s
}

.sf4 {
    bottom: 8%;
    right: -6%;
    animation-delay: 2.2s
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.sf-label {
    font-size: .62rem;
    color: var(--muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: .08em
}

.sf-val {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-top: .15rem
}

.sf-val.cyan {
    color: var(--cyan)
}

.sf-val.green {
    color: var(--green)
}

.sf-val.red {
    color: var(--red)
}

.sf-sub {
    font-size: .65rem;
    color: var(--muted);
    margin-top: .1rem;
    display: flex;
    align-items: center;
    gap: .3rem
}

.up-arrow {
    color: var(--green);
    font-size: .7rem
}

.down-arrow {
    color: var(--red)
}

/* Scan beam */
.scan-beam {
    position: absolute;
    z-index: 4;
    width: 2px;
    height: 500px;
    background: linear-gradient(to bottom, transparent, rgba(0, 245, 255, .6), transparent);
    animation: scan-h 4s ease-in-out infinite;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes scan-h {
    0% {
        left: -10%;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        left: 110%;
        opacity: 0
    }
}

/* Cyber grid scan */
.scan-h-beam {
    position: absolute;
    z-index: 4;
    height: 2px;
    width: 500px;
    background: linear-gradient(to right, transparent, rgba(0, 245, 255, .4), transparent);
    animation: scan-v 5s ease-in-out infinite 1s;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes scan-v {
    0% {
        top: -10%;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        top: 110%;
        opacity: 0
    }
}

/* Alert blip */
.alert-blip {
    position: absolute;
    z-index: 7;
    background: rgba(255, 45, 85, .15);
    border: 1px solid rgba(255, 45, 85, .5);
    border-radius: 4px;
    padding: .35rem .65rem;
    font-family: var(--font-mono);
    font-size: .65rem;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: .4rem;
    animation: blip-appear 4s ease-in-out infinite 2s;
    top: 35%;
    right: 2%;
}

@keyframes blip-appear {

    0%,
    100% {
        opacity: 0;
        transform: scale(.9)
    }

    20%,
    80% {
        opacity: 1;
        transform: scale(1)
    }
}

.blip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: dot-blink 1s infinite
}

/* ─── TICKER ─── */
.ticker-wrap {
    position: relative;
    z-index: 1;
    background: rgba(0, 245, 255, .04);
    border-top: 1px solid rgba(0, 245, 255, .08);
    border-bottom: 1px solid rgba(0, 245, 255, .08);
    overflow: hidden;
    padding: .75rem 0;
}

.ticker-label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    background: var(--bg);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--cyan);
    border-right: 1px solid rgba(0, 245, 255, .15);
    letter-spacing: .1em;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    gap: 4rem;
    animation: ticker-scroll 30s linear infinite;
    padding-left: 220px;
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.ticker-item .tag {
    background: rgba(0, 245, 255, .08);
    color: var(--cyan);
    padding: .1rem .4rem;
    border-radius: 2px;
    font-size: .65rem;
}

.ticker-item .red-tag {
    background: rgba(255, 45, 85, .08);
    color: var(--red)
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ─── ABOUT / INTRO ─── */
.about-strip {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--cyan);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--cyan)
}

h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.01em
}

h2 .accent {
    color: var(--cyan)
}

.about-body {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.8;
    margin: 1.25rem 0 2rem
}

.checkmarks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem
}

.check-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem
}

.check-item::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 255, 136, .1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(0, 255, 136, .3);
}

/* Experience panel */
.exp-panel {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.exp-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.exp-inner {
    padding: 2rem
}

.exp-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem
}

.exp-stat .num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-stat .label {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem
}

.exp-divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 1rem
}

.founder-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.founder-name {
    font-weight: 600;
    color: var(--white);
    font-size: .95rem
}

.founder-role {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--muted);
    margin-top: .15rem
}

/* ─── SERVICES ─── */
.services {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    background: var(--bg)
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}
.services-grid a{
    position: relative;
    display: block;
}
.svc-card {
    background: var(--surface);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background .25s;
    cursor: pointer;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, .04), rgba(123, 47, 255, .03));
    opacity: 0;
    transition: opacity .3s;
}

.svc-card:hover {
    background: var(--surface2)
}

.svc-card:hover::before {
    opacity: 1
}

/* Top accent line per card */
.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.svc-card:hover::after {
    transform: scaleX(1)
}

.svc-num {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: .12em;
    margin-bottom: 1.25rem;
}

.svc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: rgba(0, 245, 255, .06);
    border: 1px solid rgba(0, 245, 255, .12);
    transition: all .3s;
}

.svc-card:hover .svc-icon-wrap {
    background: rgba(0, 245, 255, .12);
    box-shadow: 0 0 20px rgba(0, 245, 255, .15)
}

.svc-card h3 {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .04em;
    margin-bottom: .75rem
}

.svc-card p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.7
}

.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.5rem;
    font-size: .75rem;
    color: var(--cyan);
    font-family: var(--font-mono);
    opacity: 0;
    transition: opacity .25s;
    text-decoration: none;
}

.svc-card:hover .svc-arrow {
    opacity: 1
}

/* ─── STATS BAR ─── */
.stats-bar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-col {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat-col:last-child {
    border-right: none
}

.stat-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: stat-glow 3s ease-in-out infinite;
}

@keyframes stat-glow {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.stat-col:nth-child(2)::after {
    animation-delay: .75s
}

.stat-col:nth-child(3)::after {
    animation-delay: 1.5s
}

.stat-col:nth-child(4)::after {
    animation-delay: 2.25s
}

.stat-big {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .4rem;
}

.stat-desc {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .04em
}

/* ─── PROCESS ─── */
.process {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    background: var(--bg2)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3rem
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(0, 245, 255, .3);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    position: relative;
    transition: all .3s;
}

.step:hover .step-num {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, .3);
    background: rgba(0, 245, 255, .08);
}

.step-num .step-icon {
    font-size: 1.5rem
}

.step h3 {
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    margin-bottom: .6rem
}

.step p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7
}

/* ─── WHY US ─── */
.why-section {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    background: var(--bg)
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color .25s, transform .25s;
}

.why-card:hover {
    border-color: rgba(0, 245, 255, .3);
    transform: translateY(-3px)
}

.why-card-icon {
    font-size: 1.5rem;
    margin-bottom: .75rem
}

.why-card h4 {
    font-family: var(--font-head);
    font-size: .78rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.why-card p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.65
}

.why-text h2 {
    margin-bottom: 1.25rem
}

.why-text p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem
}

/* Terminal block */
.mini-terminal {
    background: #06090f;
    border: 1px solid rgba(0, 245, 255, .12);
    border-radius: 8px;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: .72rem;
    margin-top: 1.75rem;
}

.mt-bar {
    background: #0c1020;
    border-bottom: 1px solid rgba(0, 245, 255, .1);
    padding: .5rem .85rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.mt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.mt-dot.r {
    background: #ff5f57
}

.mt-dot.y {
    background: #febc2e
}

.mt-dot.g {
    background: #28c840
}

.mt-body {
    padding: .85rem 1rem;
    line-height: 2
}

.t-line {
    color: var(--muted)
}

.t-cmd {
    color: var(--cyan)
}

.t-ok {
    color: var(--green)
}

.t-warn {
    color: #facc15
}

.t-err {
    color: var(--red)
}

.t-cur {
    display: inline-block;
    width: 7px;
    height: 13px;
    background: var(--cyan);
    animation: blink 1s step-end infinite;
    vertical-align: middle
}

@keyframes blink {
    50% {
        opacity: 0
    }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    background: var(--bg2)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
}

.testi-card:hover {
    border-color: rgba(0, 245, 255, .2);
    transform: translateY(-4px)
}

.testi-card::before {
    content: '❝';
    position: absolute;
    top: .75rem;
    right: 1.25rem;
    font-size: 3rem;
    line-height: 1;
    color: var(--cyan);
    opacity: .08;
    font-family: Georgia, serif;
}

.testi-stars {
    color: var(--cyan);
    font-size: .75rem;
    letter-spacing: .1em;
    margin-bottom: .85rem
}

.testi-body {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.author-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ta1 {
    background: linear-gradient(135deg, #00f5ff, #0099aa)
}

.ta2 {
    background: linear-gradient(135deg, #7b2fff, #a855f7)
}

.ta3 {
    background: linear-gradient(135deg, #ff2d55, #ff6b6b)
}

.ta4 {
    background: linear-gradient(135deg, #00ff88, #00bcd4);
    color: #000
}

.author-name {
    font-weight: 600;
    font-size: .83rem;
    color: var(--white)
}

.author-role {
    font-size: .72rem;
    color: var(--muted);
    font-family: var(--font-mono)
}

/* ─── CTA ─── */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #080c18, #0a0618);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, .06) 0%, transparent 65%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: cta-breathe 5s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 255, .08) 0%, transparent 65%);
    right: -100px;
    top: -100px;
}

@keyframes cta-breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1)
    }
}

.cta-section>* {
    position: relative
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem
}

.cta-section p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 2.5rem
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* emergency line badge */
.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--red);
    background: rgba(255, 45, 85, .06);
    border: 1px solid rgba(255, 45, 85, .2);
    padding: .45rem 1rem;
    border-radius: 2px;
    animation: badge-glow-red 2s ease-in-out infinite;
}

@keyframes badge-glow-red {

    0%,
    100% {
        border-color: rgba(255, 45, 85, .2)
    }

    50% {
        border-color: rgba(255, 45, 85, .5);
        box-shadow: 0 0 15px rgba(255, 45, 85, .1)
    }
}

.e-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: dot-blink 1s infinite
}

/* ─── FOOTER ─── */
footer {
    position: relative;
    z-index: 1;
    background: #020409;
    border-top: 1px solid var(--border);
    padding: 4rem 5% 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
    display: inline-flex
}

.footer-brand p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 280px
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1.25rem
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--muted);
    text-decoration: none;
    transition: all .2s;
}

.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan)
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: .6rem
}

.footer-col a {
    font-size: .95rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--cyan)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: .75rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: .75rem;
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none
}

.footer-bottom a:hover {
    color: var(--cyan)
}

.cyber-line {
    color: var(--cyan)
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }

    .hero-visual {
        height: 380px
    }

    .ring3 {
        width: 360px;
        height: 360px
    }

    .ring2 {
        width: 300px;
        height: 300px
    }

    .ring1 {
        width: 240px;
        height: 240px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-strip {
        grid-template-columns: 1fr
    }

    .why-inner {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps::before {
        display: none
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .why-cards {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    h2 {
        font-size: 1.6rem
    }
}

@media(max-width:480px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr
    }

    .hero-visual {
        height: 280px
    }

    .ring3 {
        width: 260px;
        height: 260px
    }

    .ring2 {
        width: 220px;
        height: 220px
    }

    .ring1 {
        width: 180px;
        height: 180px
    }

    .sf1,
    .sf2,
    .sf3,
    .sf4 {
        display: none
    }
}

.testimonialSwiper {
    margin-top: 60px;
    padding: 10px 5px 70px;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testi-card {
    height: 100%;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--accent);
    transition: .35s;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
    background: var(--accent);
    color: #000;
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #666;
    opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--accent);
}

.testimonialSwiper .swiper-slide {
    transition: .35s;
}

.testimonialSwiper .swiper-slide:hover {
    transform: translateY(-8px);
}

@media(max-width:768px) {

    .testimonialSwiper {
        padding-bottom: 60px;
    }

    .testimonialSwiper .swiper-button-next,
    .testimonialSwiper .swiper-button-prev {
        display: none;
    }

}

/* ===========================
   CONTACT PAGE HERO
=========================== */
[data-bgimg]{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    overflow: hidden;
    padding: 120px 0 120px;
    margin-top: 100px;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.6;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .25;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.banner-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    margin: 18px 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.banner-content p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.banner-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    font-size: .9rem;
    color: var(--muted);
}

.banner-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    transition: .3s;
}

.banner-breadcrumb a:hover {
    color: #fff;
}

.banner-breadcrumb span {
    opacity: .8;
}

@media(max-width:768px) {

    .page-banner {
        min-height: 340px;
        padding: 150px 20px 90px;
    }

    .banner-content h1 {
        font-size: 2.6rem;
    }

    .banner-content p {
        font-size: .95rem;
    }

}

/*==============================
CONTACT
==============================*/

.contact-section {
    padding: 5rem 5%;
}

.contact-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    color: var(--muted);
    line-height: 1.9;
    margin: 25px 0 40px;
}

.info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    transition: .35s;
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, .08);
    font-size: 24px;
}

.info-card h4 {
    margin-bottom: 6px;
}

.info-card p {
    color: var(--muted);
}

.contact-form-wrap {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 17px 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    transition: .3s;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 245, 255, .15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa4b2;
}

.contact-form select option {
    color: #111;
}

.check-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

.check-box input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.contact-form .btn {
    width: max-content;
    margin-top: 10px;
}

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px;
    }

}

@media(max-width:576px) {

    .contact-section {
        padding: 80px 20px;
    }

    .contact-form-wrap {
        padding: 25px;
    }

    .contact-form .btn {
        width: 100%;
    }

}

/*==============================
GOOGLE MAP
==============================*/

.map-section {
    padding: 0 0 50px 0;
    text-align: center;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    padding: 10px;
    box-shadow: 0 0 50px rgba(0, 245, 255, .08);
    transition: .4s;
    margin-top: 20px;
}

.map-wrapper:hover {
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(0, 245, 255, .18);
}

.map-wrapper iframe {
    width: 100%;
    height: 550px;
    border: 0;
    border-radius: 18px;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

@media(max-width:991px) {

    .map-section {
        padding: 90px 0;
    }

    .map-wrapper iframe {
        height: 450px;
    }

}

@media(max-width:576px) {

    .map-wrapper iframe {
        height: 350px;
    }

}

/*=====================================================
ABOUT PAGE
=====================================================*/

.about-company {
    padding: 5rem 5%;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-company-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 0 60px rgba(0, 245, 255, .08);
}

.about-company-image img {
    width: 100%;
    display: block;
    transition: 1s;
}

.about-company-image:hover img {
    transform: scale(1.08);
}

.about-company-content h2 {
    margin: 18px 0 30px;
}

.about-company-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.about-feature:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(0, 245, 255, .15);
}

.about-feature i {
    color: var(--accent);
    font-size: 22px;
    min-width: 22px;
}

.about-feature span {
    font-weight: 600;
}


/*=====================================================
MISSION
=====================================================*/

.mission-section {
    padding: 5rem 5%;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.mission-card {
    position: relative;
    padding: 45px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 245, 255, .15);
}

.mission-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(0, 245, 255, .08),
            transparent 45%);
    pointer-events: none;
}

.mission-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(0, 245, 255, .05);
    border: 1px solid rgba(0, 245, 255, .15);
    color: var(--accent);
    margin-bottom: 28px;
    transition: .4s;
}

.mission-icon svg {
    width: 42px;
    height: 42px;
    transition: .4s;
}

.mission-card:hover .mission-icon {
    background: var(--accent);
    box-shadow: 0 0 30px rgba(0, 245, 255, .35);
}

.mission-card:hover .mission-icon svg {
    transform: rotate(8deg) scale(1.08);
}

.mission-card h3 {
    margin-bottom: 18px;
}

.mission-card p {
    color: var(--muted);
    line-height: 1.9;
}


/*=====================================================
FOUNDER
=====================================================*/

.founder-section {
    padding: 5rem 5%;
}

.founder-grid {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 70px;
    align-items: center;
}

.founder-image {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 0 50px rgba(0, 245, 255, .08);
}

.founder-image img {
    width: 100%;
    display: block;
    transition: 1s;
}

.founder-image:hover img {
    transform: scale(1.08);
}

.founder-content h2 {
    margin: 15px 0 10px;
}

.founder-content h4 {
    color: var(--accent);
    margin-bottom: 25px;
    font-weight: 600;
}

.founder-content p {
    color: var(--muted);
    line-height: 1.9;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.founder-skills span {
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.founder-skills span:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
}


/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px) {

    .about-company-grid,
    .founder-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-company-image {
        order: -1;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .mission-card {
        padding: 30px;
    }

    .founder-grid {
        gap: 45px;
    }

    .about-company-grid {
        gap: 45px;
    }

}

/*=====================================================
TIMELINE
=====================================================*/

.timeline-section {
    padding: 5rem 5%;
    overflow: hidden;
}

.timeline-section h2 {
    margin: 18px 0 70px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to left, #000000, rgb(89 103 255));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: calc(50% - 60px);
    margin-bottom: 70px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.timeline-item:hover {
    border-color: #000;
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 42px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 245, 255, .8);
}

.timeline-item:nth-child(odd)::before {
    right: -69px;
}

.timeline-item:nth-child(even)::before {
    left: -69px;
}

.timeline-year {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    font-family: var(--font-mono);
    font-weight: 700;
}

.timeline-item h4 {
    margin-bottom: 15px;
}

.timeline-item p {
    color: var(--muted);
    line-height: 1.8;
}

/*=====================================================
ABOUT CTA
=====================================================*/

.about-cta {
    padding: 5rem 5%;
}

.about-cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.about-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(0, 245, 255, .15),
            transparent 45%),
        radial-gradient(circle at bottom left,
            rgba(123, 47, 255, .10),
            transparent 45%);
}

.about-cta-box>* {
    position: relative;
    z-index: 2;
}

.about-cta-box h2 {
    margin: 20px 0;
}

.about-cta-box p {
    max-width: 750px;
    margin: 0 auto 40px;
    color: var(--muted);
    line-height: 1.9;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*=====================================================
RESPONSIVE
=====================================================*/

@media(max-width:991px) {

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 60px !important;
        text-align: left !important;
    }

    .timeline-item::before {
        left: -45px !important;
    }

}

@media(max-width:768px) {

    .about-cta-box {
        padding: 50px 25px;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn {
        width: 100%;
    }

}

@media(max-width:576px) {

    .timeline-item {
        margin-left: 40px !important;
        padding: 25px;
    }

    .timeline-item::before {
        left: -30px !important;
    }

}

/*==================================
SERVICES INTRO
===================================*/

.service-intro {
    padding: 5rem 5%;
}

.intro-text {
    max-width: 850px;
    margin: 30px auto 30px 0;
    line-height: 1.9;
    color: var(--muted);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.intro-box {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.intro-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.intro-box .svc-icon-wrap {
    margin: 0 auto 25px;
}

.intro-box h3 {
    margin-bottom: 20px;
}

.intro-box p {
    line-height: 1.8;
    color: var(--muted);
}

@media(max-width:991px) {

    .intro-grid {
        grid-template-columns: 1fr;
    }

}

/*==================================
SERVICE CATEGORY
===================================*/

.service-category {
    padding: 5rem 5%;
}

.category-heading {
    max-width: 900px;
    margin: 0 auto 80px;
}

.category-heading h2 {
    margin: 18px 0;
}

.category-heading p {
    color: var(--muted);
    line-height: 1.9;
}

.service-block {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 45px;
    padding: 50px;
    margin-bottom: 35px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
}

.service-block:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 245, 255, .12);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.service-icon .svc-icon-wrap {
    width: 100px;
    height: 100px;
    font-size: 40px;
}

.service-number {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    border-radius: 40px;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 700;
}

.service-content h3 {
    margin-bottom: 20px;
}

.service-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 30px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}

.reverse .service-icon {
    order: 2;
}

.reverse .service-content {
    order: 1;
}

@media(max-width:991px) {

    .service-block {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .reverse .service-icon,
    .reverse .service-content {
        order: unset;
    }

    .service-icon {
        justify-content: flex-start;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .service-block {
        padding: 30px 25px;
    }

    .service-icon .svc-icon-wrap {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

}

/*==================================
ALTERNATE SECTION BACKGROUND
===================================*/

.alt-bg {
    position: relative;
    background: linear-gradient(180deg,
            rgba(0, 245, 255, .015),
            transparent 20%,
            transparent 80%,
            rgba(123, 47, 255, .02));
}

.alt-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left,
            rgba(0, 245, 255, .05),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(123, 47, 255, .05),
            transparent 35%);
}

/*==================================
LEGAL SERVICES
===================================*/

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.legal-card {
    padding: 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.legal-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.legal-card .svc-icon-wrap {
    margin-bottom: 25px;
}

.legal-card h3 {
    margin-bottom: 20px;
    font-size: 1.35rem;
}

.legal-card p {
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 30px;
    flex: 1;
}

.legal-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.legal-card a:hover {
    gap: 14px;
}

@media(max-width:1100px) {

    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-card {
        padding: 28px;
    }

}

/*==================================
ENGAGEMENT PROCESS
===================================*/

.engagement-process {
    padding: 5rem 5%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.process-card {
    padding: 35px 25px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 245, 255, .12);
}

.process-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--accent);
}

.process-card h3 {
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.process-card p {
    color: var(--muted);
    line-height: 1.8;
}

/*==================================
SERVICES CTA
===================================*/

.services-cta {
    padding: 5rem 5%;
}

.services-cta-box {
    padding: 80px 60px;
    border-radius: 32px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.services-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 245, 255, .12), transparent 40%),
        radial-gradient(circle at bottom left, rgba(123, 47, 255, .10), transparent 45%);
    pointer-events: none;
}

.services-cta-box>* {
    position: relative;
    z-index: 2;
}

.services-cta-box h2 {
    margin: 20px 0;
}

.services-cta-box p {
    max-width: 850px;
    margin: 0 auto 40px;
    color: var(--muted);
    line-height: 1.9;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.cta-stat h4 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.cta-stat span {
    color: var(--muted);
}

/*==================================
RESPONSIVE
===================================*/

@media(max-width:1200px) {

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:991px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-bottom {
        grid-template-columns: 1fr;
    }

    .services-cta-box {
        padding: 60px 35px;
    }

}

@media(max-width:768px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-buttons {
        flex-direction: column;
    }

    .services-cta-buttons .btn {
        width: 100%;
    }

    .services-cta-box {
        padding: 45px 25px;
    }

}

/*==================================
FOUNDER INTRO
===================================*/

.founder-intro {
    padding: 5rem 5%;
}

.founder-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
}

.founder-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 45px rgba(0, 245, 255, .08);
}

.founder-img-box img {
    width: 100%;
    display: block;
    transition: 1s;
}

.founder-img-box:hover img {
    transform: scale(1.06);
}

.founder-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0, 245, 255, .12);
    border: 1px solid rgba(0, 245, 255, .25);
    backdrop-filter: blur(12px);
    color: var(--accent);
    font-weight: 600;
}

.founder-content h2 {
    margin: 18px 0 10px;
}

.founder-content h4 {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 30px;
}

.founder-content p {
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px;
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 45px 0;
}

.highlight-box {
    padding: 28px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.highlight-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .15);
}

.highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.highlight-box span {
    color: var(--muted);
    line-height: 1.6;
    font-size: .95rem;
}

.founder-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media(max-width:991px) {

    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-image {
        max-width: 500px;
        margin: auto;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .founder-buttons {
        flex-direction: column;
    }

    .founder-buttons .btn {
        width: 100%;
    }

}

/*==================================
EXECUTIVE PROFILE
===================================*/

.executive-profile {
    padding: 5rem 5%;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.executive-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.executive-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.executive-card .svc-icon-wrap {
    margin-bottom: 25px;
}

.executive-card h3 {
    margin-bottom: 18px;
}

.executive-card p {
    line-height: 1.9;
    color: var(--muted);
}

/*==================================
COMPETENCIES
===================================*/

.competency-section {
    padding: 5rem 5%;
}

.competency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.competency-card {
    padding: 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.competency-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .15);
}

.competency-card h3 {
    margin-bottom: 18px;
    color: var(--accent);
}

.competency-card p {
    line-height: 1.8;
    color: var(--muted);
}

@media(max-width:991px) {

    .executive-grid {
        grid-template-columns: 1fr;
    }

    .competency-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .competency-grid {
        grid-template-columns: 1fr;
    }

}

/*==================================
PROFESSIONAL JOURNEY
===================================*/

.journey-section {
    padding: 5rem 5%;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 70px auto 0;
    padding-left: 40px;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--accent), rgba(123, 47, 255, .35));
}

.journey-item {
    position: relative;
    padding-bottom: 55px;
}

.journey-dot {
    position: absolute;
    left: -33px;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(0, 245, 255, .6);
}

.journey-content {
    padding: 35px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.journey-content:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.journey-year {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 40px;
    background: rgba(0, 245, 255, .08);
    color: var(--accent);
    font-weight: 600;
}

.journey-content h3 {
    margin-bottom: 18px;
}

.journey-content p {
    line-height: 1.9;
    color: var(--muted);
}

/*==================================
EXPERTISE DOMAINS
===================================*/

.expertise-domain {
    padding: 5rem 5%;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.domain-card {
    padding: 35px 25px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.domain-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.domain-card .svc-icon-wrap {
    margin: 0 auto 25px;
}

.domain-card h3 {
    font-size: 1.05rem;
    line-height: 1.6;
}

@media(max-width:1100px) {

    .domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .domain-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        padding-left: 25px;
    }

    .journey-timeline::before {
        left: 8px;
    }

    .journey-dot {
        left: -15px;
    }

}

/*==================================
MESSAGE
===================================*/

.founder-message {
    padding: 5rem 5%;
}

.message-box {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
    align-items: center;
    padding: 50px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.message-left {
    overflow: hidden;
    border-radius: 24px;
}

.message-left img {
    width: 100%;
    display: block;
    transition: 1s;
}

.message-left:hover img {
    transform: scale(1.08);
}

.message-right h2 {
    margin: 18px 0 30px;
}

.message-right p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--muted);
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.founder-signature img {
    width: 160px;
}

.founder-signature h4 {
    margin-bottom: 6px;
}

.founder-signature span {
    color: var(--muted);
    line-height: 1.7;
}

/*==================================
CTA
===================================*/

.founder-cta {
    padding: 5rem 5%;
}

.founder-cta-box {
    text-align: center;
    padding: 80px 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.founder-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 245, 255, .12), transparent 40%),
        radial-gradient(circle at bottom left, rgba(123, 47, 255, .08), transparent 45%);
    pointer-events: none;
}

.founder-cta-box>* {
    position: relative;
    z-index: 2;
}

.founder-cta-box h2 {
    margin: 20px 0;
}

.founder-cta-box p {
    max-width: 820px;
    margin: 0 auto 40px;
    line-height: 1.9;
    color: var(--muted);
}

.founder-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media(max-width:991px) {

    .message-box {
        grid-template-columns: 1fr;
    }

    .message-left {
        max-width: 450px;
        margin: auto;
    }

}

@media(max-width:768px) {

    .message-box {
        padding: 30px;
        gap: 40px;
    }

    .founder-signature {
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-cta-box {
        padding: 50px 25px;
    }

    .founder-cta-buttons {
        flex-direction: column;
    }

    .founder-cta-buttons .btn {
        width: 100%;
    }

}

/*==================================
TESTIMONIAL INTRO
===================================*/

.testimonial-intro {
    padding: 5rem 5%;
    text-align: center;
}

.testimonial-intro h2 {
    margin: 20px auto;
    max-width: 850px;
}

.testimonial-intro-text {
    max-width: 900px;
    margin: 30px auto 70px;
    line-height: 1.9;
    color: var(--muted);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.trust-card .svc-icon-wrap {
    margin: 0 auto 25px;
}

.trust-card h3 {
    margin-bottom: 18px;
}

.trust-card p {
    line-height: 1.8;
    color: var(--muted);
}

@media(max-width:991px) {

    .trust-grid {
        grid-template-columns: 1fr;
    }

}

/*==================================
SUCCESS STORIES
===================================*/

.success-stories {
    padding: 5rem 5%;
}

.story-card {
    padding: 45px;
    margin-top: 45px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 245, 255, .12);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 35px;
}

.story-category {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 40px;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story-rating {
    font-size: 1.35rem;
    color: #FFD700;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 35px;
}

.story-grid h4 {
    margin-bottom: 15px;
    color: var(--accent);
}

.story-grid p {
    color: var(--muted);
    line-height: 1.9;
}

.story-footer {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-client strong {
    display: block;
    margin-bottom: 6px;
}

.story-client span {
    color: var(--muted);
    font-size: .9rem;
}

@media(max-width:991px) {

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-header {
        flex-direction: column;
    }

}

@media(max-width:768px) {

    .story-card {
        padding: 30px;
    }

}

/*==================================
INDUSTRY TESTIMONIALS
===================================*/

.industry-testimonials {
    padding: 5rem 5%;
}

.testimonialSwiper {
    margin-top: 70px;
    padding-bottom: 70px;
}

.industry-card {
    height: 100%;
    padding: 45px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.review-stars {
    font-size: 1.35rem;
    color: #FFD700;
    margin-bottom: 25px;
}

.review-text {
    line-height: 2;
    color: var(--muted);
    margin-bottom: 40px;
    font-style: italic;
}

.industry-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.industry-info h4 {
    margin-bottom: 6px;
}

.industry-info span {
    color: var(--muted);
    font-size: .92rem;
}

.testimonialSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .3;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

@media(max-width:768px) {

    .industry-card {
        padding: 30px;
    }

}

/*==================================
WHY INTRO
===================================*/

.why-intro {
    padding: 5rem 5%;
}

.why-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 70px;
}

.why-intro-image {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
}

.why-intro-image img {
    width: 100%;
    display: block;
    transition: 1s;
}

.why-intro-image:hover img {
    transform: scale(1.06);
}

.why-intro-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 25px;
}

.why-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.why-check {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    transition: .35s;
}

.why-check:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.check-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 245, 255, .08);
    color: var(--accent);
    font-weight: 700;
}

/*==================================
TRUST
===================================*/

.trust-section {
    padding: 5rem 5%;
}

.trust-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.trust-box {
    padding: 40px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    transition: .35s;
}

.trust-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.trust-box .svc-icon-wrap {
    margin-bottom: 25px;
}

.trust-box h3 {
    margin-bottom: 18px;
}

.trust-box p {
    color: var(--muted);
    line-height: 1.9;
}

@media(max-width:991px) {

    .why-intro-grid {
        grid-template-columns: 1fr;
    }

    .trust-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-checks {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .trust-box-grid {
        grid-template-columns: 1fr;
    }

}

/*==================================
ADVANTAGES
===================================*/

.advantages-section {
    padding: 5rem 5%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.advantage-card {
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.advantage-card .svc-icon-wrap {
    margin-bottom: 25px;
}

.advantage-card h3 {
    margin-bottom: 18px;
}

.advantage-card p {
    color: var(--muted);
    line-height: 1.9;
}

/*==================================
CORE VALUES
===================================*/

.core-values {
    padding: 5rem 5%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.value-card {
    position: relative;
    padding: 40px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.value-number {
    display: inline-flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.value-card h3 {
    margin-bottom: 18px;
}

.value-card p {
    line-height: 1.9;
    color: var(--muted);
}

@media(max-width:1100px) {

    .advantages-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .advantages-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

}

/*==================================
TECHNOLOGY
===================================*/

.technology-section,
.industries-section,
.methodology-section,
.why-cta {
    padding: 5rem 5%;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.technology-card {
    padding: 40px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    transition: .35s;
    text-align: center;
}

.technology-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 0 35px rgba(0, 245, 255, .12);
}

.technology-card .svc-icon-wrap {
    margin: 0 auto 25px;
}

.technology-card h3 {
    margin-bottom: 15px;
}

.technology-card p {
    color: var(--muted);
    line-height: 1.8;
}

/*==================================
INDUSTRIES
===================================*/

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.industry-item {
    padding: 35px;
    text-align: center;
    font-size: 2rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    transition: .35s;
}

.industry-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.industry-item h3 {
    font-size: 1.05rem;
    margin-top: 18px;
}

/*==================================
METHODOLOGY
===================================*/

.methodology-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.method-card {
    padding: 35px 25px;
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    transition: .35s;
}

.method-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.method-number {
    width: 65px;
    height: 65px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 245, 255, .08);
    border: 1px solid rgba(0, 245, 255, .2);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent);
}

.method-card h3 {
    margin-bottom: 15px;
}

.method-card p {
    color: var(--muted);
    line-height: 1.8;
}

/*==================================
CTA
===================================*/

.why-cta-box {
    padding: 80px 60px;
    text-align: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.why-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 245, 255, .10), transparent 40%),
        radial-gradient(circle at bottom left, rgba(123, 47, 255, .08), transparent 45%);
    pointer-events: none;
}

.why-cta-box>* {
    position: relative;
    z-index: 2;
}

.why-cta-box h2 {
    margin: 20px 0;
}

.why-cta-box p {
    max-width: 850px;
    margin: 0 auto 40px;
    color: var(--muted);
    line-height: 1.9;
}

/*==================================
RESPONSIVE
===================================*/

@media(max-width:1100px) {

    .technology-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .methodology-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:768px) {

    .technology-grid,
    .industry-grid,
    .methodology-wrapper {
        grid-template-columns: 1fr;
    }

    .why-cta-box {
        padding: 50px 25px;
    }

}

/*==============================
MOBILE NAVIGATION
==============================*/

.menu-toggle{
display:none;
width:50px;
height:50px;
padding:0;
border:none;
background:none;
cursor:pointer;
position:relative;
z-index:1002;
}

.menu-toggle span{
display:block;
width:28px;
height:2px;
margin:6px auto;
background:#fff;
transition:.35s;
}

.menu-toggle.active span:nth-child(1){
transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:translateY(-8px) rotate(-45deg);
}

@media(max-width:991px){

.menu-toggle{
display:block;
}

.nav-cta{
display:none;
}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:320px;

height:100vh;

padding:120px 40px;

display:flex;

flex-direction:column;

gap:30px;

background:rgba(10,15,25,.96);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

transition:.4s;

z-index:1001;

border-left:1px solid rgba(255,255,255,.08);

}

.nav-links.active{

right:0;

}

.nav-links li{

width:100%;

}

.nav-links a{

display:block;

font-size:18px;

padding:12px 0;

}

body.menu-open{

overflow:hidden;

}

}

#formMessage {

    margin-top: 25px;

    padding: 15px 20px;

    border-radius: 10px;

    display: none;

    font-weight: 500;

}

#formMessage.success {

    display: block;

    background: #103b22;

    color: #54ff98;

    border: 1px solid #28d86a;

}

#formMessage.error {

    display: block;

    background: #3b1010;

    color: #ff8888;

    border: 1px solid #ff4747;

}

.btn.loading {

    pointer-events: none;

    opacity: .7;

}