    :root {
        --bg-deep: #0B0A10;
        --bg-surface: #12111A;
        --bg-glass: rgba(18, 17, 26, 0.55);
        --brand-primary: #70E6DE;
        --brand-secondary: #C261F5;
        --brand-tertiary: #167C75;
        --text-primary: #FFFFFF;
        --text-secondary: #A09FA8;
        --text-accent: #70E6DE;
        --glass-border: rgba(112, 230, 222, 0.15);
        --glass-shadow: 0 8px 32px rgba(112, 230, 222, 0.08);
        --glow-cyan: 0 0 40px rgba(112, 230, 222, 0.3);
        --font-display: 'Outfit', sans-serif;
        --font-body: 'Outfit', sans-serif;
        --font-serif: 'Lora', serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    html {
        scroll-behavior: smooth
    }

    body {
        background: var(--bg-deep);
        color: var(--text-primary);
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.7;
        overflow-x: hidden;
    }

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        opacity: 0.03;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        background-size: 256px 256px;
    }

    /* ===== PAGE LOADER ===== */
    #page-loader {
        position: fixed;
        inset: 0;
        background: #0B0A10;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #page-loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loader-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        animation: loader-pulse 1.5s ease-in-out infinite;
    }

    .loader-logo-mark {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #12111A, #2C1A40);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(112, 230, 222, 0.3);
        box-shadow: 0 0 24px rgba(112, 230, 222, 0.3);
    }

    .loader-logo-mark span {
        font-family: var(--font-display);
        font-weight: 900;
        font-size: 16px;
        background: linear-gradient(180deg, #fff 0%, #F0C4FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .loader-logo-text {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--text-primary);
        letter-spacing: -0.01em;
    }

    .loader-logo-text span {
        color: var(--brand-primary);
    }

    .loader-bar-wrap {
        width: 240px;
        height: 3px;
        background: rgba(112, 230, 222, 0.1);
        border-radius: 100px;
        overflow: hidden;
    }

    .loader-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
        border-radius: 100px;
        animation: loader-fill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        box-shadow: 0 0 12px rgba(112, 230, 222, 0.5);
    }

    .loader-text {
        font-family: var(--font-display);
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-secondary);
        animation: loader-blink 1.2s ease-in-out infinite;
    }

    @keyframes loader-fill {
        0% {
            width: 0%
        }

        60% {
            width: 80%
        }

        100% {
            width: 100%
        }
    }

    @keyframes loader-pulse {

        0%,
        100% {
            filter: drop-shadow(0 0 8px rgba(112, 230, 222, 0.3))
        }

        50% {
            filter: drop-shadow(0 0 20px rgba(112, 230, 222, 0.6))
        }
    }

    @keyframes loader-blink {

        0%,
        100% {
            opacity: 0.5
        }

        50% {
            opacity: 1
        }
    }

    /* TYPOGRAPHY */
    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: var(--font-display);
        color: var(--text-primary);
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -0.02em
    }

    p {
        color: var(--text-secondary);
        font-family: var(--font-body);
        font-weight: 400
    }

    .section-tag {
        font-family: var(--font-display);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brand-primary);
        margin-bottom: 1rem;
        display: inline-block;
    }

    .section-headline {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 1rem;
        letter-spacing: -0.03em;
    }

    .section-sub {
        font-size: 1.05rem;
        color: var(--text-secondary);
        max-width: 560px;
        font-weight: 400;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem
    }

    section {
        padding: 8rem 0
    }

    .glass-card {
        background: var(--bg-glass);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    /* BUTTONS */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--brand-primary);
        color: var(--bg-deep);
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.9rem;
        padding: 14px 28px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 0.01em;
        animation: glow-pulse 3s ease-in-out infinite;
    }

    .btn-primary:hover {
        transform: scale(1.04);
        box-shadow: 0 0 32px rgba(112, 230, 222, 0.45);
        animation: none;
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--text-primary);
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 0.9rem;
        padding: 13px 28px;
        border-radius: 6px;
        border: 1px solid rgba(112, 230, 222, 0.3);
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        border-color: var(--brand-primary);
        color: var(--brand-primary);
        background: rgba(112, 230, 222, 0.05);
    }

    @keyframes glow-pulse {

        0%,
        100% {
            box-shadow: 0 0 16px rgba(112, 230, 222, 0.25)
        }

        50% {
            box-shadow: 0 0 32px rgba(112, 230, 222, 0.5)
        }
    }

    /* ===== NAV ===== */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        transition: all 0.3s ease;
    }

    nav.scrolled {
        background: rgba(11, 10, 16, 0.45);
        backdrop-filter: blur(32px) saturate(180%);
        -webkit-backdrop-filter: blur(32px) saturate(180%);
        border-bottom: 1px solid rgba(112, 230, 222, 0.12);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 2rem;
        max-width: 1280px;
        margin: 0 auto;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .logo-mark {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #12111A, #2C1A40);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(112, 230, 222, 0.2);
        box-shadow: 0 0 18px rgba(112, 230, 222, 0.2);
    }

    .logo-mark span {
        font-family: var(--font-display);
        font-weight: 900;
        font-size: 14px;
        background: linear-gradient(180deg, #fff 0%, #F0C4FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo-text {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.05rem;
        color: var(--text-primary);
        text-shadow: 0 0 12px rgba(112, 230, 222, 0.4);
        letter-spacing: -0.01em;
    }

    .logo-text span {
        color: var(--brand-primary)
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color 0.25s;
        letter-spacing: 0.01em;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--brand-primary);
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--text-primary)
    }

    .nav-links a:hover::after {
        width: 100%
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--text-primary);
        transition: all 0.3s;
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
        padding-top: 6rem;
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 10, 16, 0.98);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        backdrop-filter: blur(20px);
        animation: mobile-nav-in 0.3s ease forwards;
    }

    @keyframes mobile-nav-in {
        from {
            opacity: 0;
            transform: translateY(-10px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .mobile-nav.open {
        display: flex
    }

    .mobile-nav-logo {
        position: absolute;
        top: 1.5rem;
        left: 1.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        max-width: calc(100% - 80px);
        overflow: hidden;
        z-index: 9;
    }

    .mobile-nav a {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.25s;
        letter-spacing: -0.02em;
    }

    .mobile-nav a:hover {
        color: var(--brand-primary)
    }

    .mobile-nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: 1px solid rgba(112, 230, 222, 0.15);
        color: var(--text-secondary);
        font-size: 1rem;
        cursor: pointer;
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 10;
        flex-shrink: 0;
    }

    .mobile-nav-close:hover {
        border-color: rgba(112, 230, 222, 0.4);
        color: var(--brand-primary);
    }

    /* ===== HERO ===== */
    #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 0;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(112, 230, 222, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(112, 230, 222, 0.025) 1px, transparent 1px);
        background-size: 48px 48px;
    }

    .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
    }

    .blob-1 {
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(112, 230, 222, 0.1) 0%, transparent 70%);
        bottom: -100px;
        right: -100px;
        animation: blob-drift 8s ease-in-out infinite;
    }

    .blob-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(194, 97, 245, 0.06) 0%, transparent 70%);
        top: 10%;
        left: -80px;
        animation: blob-drift 10s ease-in-out 2s infinite reverse;
    }

    @keyframes blob-drift {

        0%,
        100% {
            transform: translate(0, 0)
        }

        33% {
            transform: translate(20px, -15px)
        }

        66% {
            transform: translate(-15px, 20px)
        }
    }

    .hero-inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
        padding: 8rem 2rem 5rem;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-left {
        max-width: 580px
    }

    .hero-tag {
        font-family: var(--font-display);
        font-size: 11px;
        letter-spacing: 0.2em;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--brand-primary);
        margin-bottom: 1.5rem;
        opacity: 0;
        animation: fade-up 0.7s ease forwards;
    }

    .hero-h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.6rem);
        font-weight: 900;
        line-height: 1.06;
        margin-bottom: 1.5rem;
        letter-spacing: -0.04em;
        opacity: 0;
        animation: fade-up 0.7s ease 0.15s forwards;
    }

    .hero-h1 span {
        color: var(--brand-primary);
        text-shadow: 0 0 32px rgba(112, 230, 222, 0.4);
    }

    .hero-sub {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        max-width: 460px;
        line-height: 1.7;
        font-weight: 400;
        opacity: 0;
        animation: fade-up 0.7s ease 0.3s forwards;
    }

    .hero-btns {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        opacity: 0;
        animation: fade-up 0.7s ease 0.45s forwards;
    }

    .scroll-hint {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        opacity: 0.45;
    }

    .scroll-hint span {
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-secondary);
        font-weight: 500;
    }

    .chevron-bounce {
        animation: bounce 2s ease-in-out infinite;
        font-size: 18px;
        color: var(--brand-primary);
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(6px)
        }
    }

    /* Hero right */
    .hero-right {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        animation: fade-up 0.8s ease 0.4s forwards;
    }

    .hero-visual-wrap {
        position: relative;
        width: 100%;
        max-width: 440px;
    }

    .metrics-card {
        background: rgba(18, 17, 26, 0.85);
        border: 1px solid rgba(112, 230, 222, 0.2);
        border-radius: 18px;
        backdrop-filter: blur(24px);
        padding: 1.5rem;
        box-shadow: 0 0 48px rgba(112, 230, 222, 0.08);
    }

    .metrics-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(112, 230, 222, 0.1);
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%
    }

    .dot-green {
        background: var(--brand-primary)
    }

    .dot-yellow {
        background: #FFD700
    }

    .dot-red {
        background: #FF5F57
    }

    .metrics-title {
        font-family: var(--font-display);
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-left: 4px;
        flex: 1;
        letter-spacing: 0.03em;
    }

    .metrics-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .metrics-row:last-child {
        border-bottom: none
    }

    .metric-label {
        font-size: 0.82rem;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 500;
    }

    .metric-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--brand-primary);
    }

    .metric-val {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--brand-primary);
        letter-spacing: -0.01em;
    }

    .metric-val.green {
        color: var(--brand-secondary)
    }

    .tech-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 1rem;
    }

    .chip {
        font-size: 11px;
        font-family: var(--font-display);
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 100px;
        background: rgba(112, 230, 222, 0.08);
        border: 1px solid rgba(112, 230, 222, 0.2);
        color: var(--brand-primary);
        letter-spacing: 0.04em;
    }

    .float-card {
        position: absolute;
        background: rgba(18, 17, 26, 0.9);
        border: 1px solid rgba(194, 97, 245, 0.2);
        border-radius: 10px;
        padding: 10px 14px;
        font-size: 12px;
        backdrop-filter: blur(16px);
        color: var(--text-primary);
        font-family: var(--font-display);
        font-weight: 600;
        white-space: nowrap;
        letter-spacing: 0.01em;
    }

    .float-card.top {
        top: -16px;
        right: -20px;
        animation: float-y 3s ease-in-out infinite;
        color: var(--brand-secondary);
        border-color: rgba(194, 97, 245, 0.3);
    }

    .float-card.bot {
        bottom: -16px;
        left: -20px;
        animation: float-y 3s ease-in-out 1.5s infinite;
        color: var(--brand-primary);
    }

    @keyframes float-y {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-8px)
        }
    }

    @keyframes fade-up {
        from {
            opacity: 0;
            transform: translateY(24px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    /* ===== CLOUD LOGOS STRIP ===== */

    .tech-header {
        text-align: center;
        margin-bottom: 3rem;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tech-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(112, 230, 222, 0.06);
        border: 1px solid rgba(112, 230, 222, 0.2);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 11px;
        font-family: var(--font-display);
        font-weight: 700;
        letter-spacing: 0.15em;
        color: var(--text-secondary);
    }

    .tech-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--brand-primary);
    }

    .tech-heading {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        color: var(--text-primary);
    }

    .tech-pills-wrap {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        max-width: 900px;
        margin: 0 auto;
        overflow: hidden;
        mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .pills-row {
        overflow: hidden;
        width: 100%;
    }

    .pills-track {
        display: flex;
        gap: 0.75rem;
        width: max-content;
        animation: pills-left 25s linear infinite;
    }

    .pills-track.reverse {
        animation: pills-right 25s linear infinite;
    }

    .pills-track:hover,
    .pills-track.reverse:hover {
        animation-play-state: paused;
    }

    .pill-item {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 28px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 100px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
        transition: all 0.3s ease;
        cursor: default;
    }

    .pill-item:hover {
        border-color: rgba(112, 230, 222, 0.4);
        background: rgba(112, 230, 222, 0.07);
        box-shadow: 0 0 20px rgba(112, 230, 222, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    }

    .pill-item img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .pill-item span {
        font-size: 1rem;
        font-weight: 600;
        font-family: var(--font-display);
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 0.02em;
    }

    @keyframes pills-left {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    @keyframes pills-right {
        from {
            transform: translateX(-50%)
        }

        to {
            transform: translateX(0)
        }
    }

    /* ===== MARQUEE ===== */
    .marquee-section {
        background: rgba(112, 230, 222, 0.04);
        border-top: 1px solid rgba(112, 230, 222, 0.12);
        border-bottom: 1px solid rgba(112, 230, 222, 0.12);
        padding: 1rem 0;
        overflow: hidden;
    }

    .marquee-track {
        display: flex;
        gap: 0;
        white-space: nowrap;
        animation: marquee 30s linear infinite;
    }

    .marquee-track:hover {
        animation-play-state: paused
    }

    .marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
        padding: 0 2rem;
        font-size: 0.85rem;
        font-family: var(--font-display);
        font-weight: 600;
        color: var(--text-secondary);
        letter-spacing: 0.04em;
    }

    .marquee-item .dot-sep {
        color: var(--brand-primary);
        font-size: 1.2rem
    }

    @keyframes marquee {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    /* ===== SERVICES ===== */
    #services {
        background: linear-gradient(180deg, var(--bg-deep) 0%, #0E0D16 100%)
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .service-card {
        background: rgba(18, 17, 26, 0.55);
        border: 1px solid rgba(112, 230, 222, 0.1);
        border-radius: 18px;
        backdrop-filter: blur(20px);
        padding: 36px 32px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .service-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, rgba(112, 230, 222, 0.04) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .service-card:hover {
        border-color: rgba(112, 230, 222, 0.4);
        box-shadow: 0 0 48px rgba(112, 230, 222, 0.1), 0 24px 48px rgba(0, 0, 0, 0.3);
        transform: translateY(-8px);
    }

    .service-card:hover::before {
        opacity: 1
    }

    .service-card:hover::after {
        opacity: 1
    }

    .card-num {
        position: absolute;
        top: 20px;
        right: 24px;
        font-family: var(--font-display);
        font-size: 11px;
        color: rgba(112, 230, 222, 0.2);
        font-weight: 600;
        letter-spacing: 0.08em;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        background: rgba(112, 230, 222, 0.08);
        border: 1px solid rgba(112, 230, 222, 0.15);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 1.2rem;
        transition: all 0.3s;
    }

    .service-card:hover .card-icon {
        background: rgba(112, 230, 222, 0.12);
        border-color: rgba(112, 230, 222, 0.3);
        transform: scale(1.1);
    }

    .service-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
        letter-spacing: -0.02em;
    }

    .service-card p {
        font-size: 0.88rem;
        line-height: 1.65;
        font-weight: 400;
    }

    /* ===== PROCESS TIMELINE ===== */
    .process-timeline {
        margin-top: 4rem;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    .process-item {
        display: grid;
        grid-template-columns: 120px 48px 1fr;
        align-items: flex-start;
        gap: 0;
        min-height: 140px;
    }

    .process-left {
        display: flex;
        justify-content: flex-end;
        padding-right: 1.5rem;
        padding-top: 1.2rem;
    }

    .process-num-wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .process-num {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(18, 17, 26, 0.9);
        border: 1.5px solid rgba(112, 230, 222, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 14px;
        font-weight: 800;
        color: var(--brand-primary);
        position: relative;
        z-index: 2;
        transition: all 0.4s ease;
        box-shadow: 0 0 0 rgba(112, 230, 222, 0);
    }

    .process-item:hover .process-num {
        border-color: var(--brand-primary);
        box-shadow: 0 0 28px rgba(112, 230, 222, 0.4);
        background: rgba(112, 230, 222, 0.08);
    }

    .process-num-glow {
        position: absolute;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(112, 230, 222, 0.2) 0%, transparent 70%);
        filter: blur(8px);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .process-item:hover .process-num-glow {
        opacity: 1;
    }

    .process-line-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 1.4rem;
    }

    .process-line-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--brand-primary);
        flex-shrink: 0;
        box-shadow: 0 0 12px rgba(112, 230, 222, 0.5);
        position: relative;
        z-index: 2;
        transition: transform 0.3s;
    }

    .process-item:hover .process-line-dot {
        transform: scale(1.4);
    }

    .process-line-track {
        width: 1.5px;
        flex: 1;
        min-height: 80px;
        background: linear-gradient(180deg, rgba(112, 230, 222, 0.4) 0%, rgba(112, 230, 222, 0.08) 100%);
        margin-top: 6px;
    }

    .process-line-track.last {
        background: linear-gradient(180deg, rgba(112, 230, 222, 0.4) 0%, transparent 100%);
        min-height: 40px;
        flex: 0;
    }

    .process-right {
        padding: 0 0 2.5rem 1.5rem;
    }

    .process-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(112, 230, 222, 0.1);
        border-radius: 18px;
        padding: 1.8rem 2rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .process-item:hover .process-card {
        border-color: rgba(112, 230, 222, 0.3);
        background: rgba(112, 230, 222, 0.04);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(112, 230, 222, 0.05);
        transform: translateX(8px);
    }

    .process-item:hover .process-card::before {
        opacity: 1;
    }

    .process-card-tag {
        font-size: 10px;
        font-family: var(--font-display);
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--brand-primary);
        margin-bottom: 0.6rem;
        display: block;
        opacity: 0.7;
    }

    .process-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin-bottom: 0.5rem;
    }

    .process-card p {
        font-size: 0.92rem;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-bottom: 1.2rem;
    }

    .process-card-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .process-pill {
        font-size: 11px;
        font-family: var(--font-display);
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 100px;
        background: rgba(112, 230, 222, 0.07);
        border: 1px solid rgba(112, 230, 222, 0.18);
        color: var(--brand-primary);
        letter-spacing: 0.04em;
    }

    /* Responsive */
    @media(max-width: 767px) {
        .process-item {
            grid-template-columns: 0 32px 1fr;
        }

        .process-left {
            display: none;
        }

        .process-card {
            padding: 1.4rem;
        }

        .process-item:hover .process-card {
            transform: translateX(4px);
        }
    }

    /* ===== WHY US ===== */
    #why {
        background: linear-gradient(180deg, var(--bg-deep) 0%, #0E0D16 100%)
    }

    .why-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .stats-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        background: rgba(18, 17, 26, 0.55);
        border: 1px solid rgba(112, 230, 222, 0.1);
        border-radius: 18px;
        padding: 1.8rem;
        transition: all 0.3s;
    }

    .stat-item:hover {
        border-color: rgba(112, 230, 222, 0.3);
        box-shadow: 0 0 32px rgba(112, 230, 222, 0.08);
        transform: translateY(-4px);
    }

    .stat-num {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--brand-primary);
        text-shadow: 0 0 20px rgba(112, 230, 222, 0.3);
        line-height: 1;
        margin-bottom: 0.4rem;
        letter-spacing: -0.04em;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--text-secondary);
        font-weight: 500;
    }

    .diff-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .diff-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.95rem;
        color: var(--text-secondary);
    }

    .diff-check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(194, 97, 245, 0.1);
        border: 1px solid rgba(194, 97, 245, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 11px;
        color: var(--brand-secondary);
        margin-top: 2px;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials {
        background: #0E0D16
    }

    .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .testi-card {
        background: rgba(18, 17, 26, 0.55);
        border: 1px solid rgba(112, 230, 222, 0.1);
        border-radius: 18px;
        backdrop-filter: blur(20px);
        padding: 2rem;
        position: relative;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testi-card:hover {
        box-shadow: 0 0 40px rgba(112, 230, 222, 0.1);
        transform: translateY(-6px);
        border-color: rgba(112, 230, 222, 0.25);
    }

    .quote-mark {
        font-family: var(--font-serif);
        font-size: 4rem;
        line-height: 0.6;
        color: var(--brand-primary);
        opacity: 0.35;
        margin-bottom: 0.8rem;
        display: block;
        font-style: italic;
    }

    .testi-text {
        font-size: 0.9rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
        font-style: italic;
        font-family: var(--font-serif);
    }

    .stars {
        color: #FFD700;
        font-size: 14px;
        margin-bottom: 1rem;
        letter-spacing: 2px
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 10px
    }

    .avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 13px;
        flex-shrink: 0;
    }

    .author-name {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--text-primary);
        letter-spacing: -0.01em;
    }

    .author-role {
        font-size: 0.78rem;
        color: var(--text-secondary)
    }

    /* ===== PRICING ===== */
    #pricing {
        background: var(--bg-deep)
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        align-items: start;
    }

    .pricing-card {
        background: rgba(18, 17, 26, 0.55);
        border: 1px solid rgba(112, 230, 222, 0.1);
        border-radius: 22px;
        padding: 2.2rem;
        position: relative;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 40px rgba(112, 230, 222, 0.08);
    }

    .pricing-card.popular {
        border-color: var(--brand-primary);
        box-shadow: 0 0 56px rgba(112, 230, 222, 0.12);
        transform: scale(1.02);
    }

    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-6px);
    }

    .popular-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--brand-primary);
        color: var(--bg-deep);
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 11px;
        padding: 5px 16px;
        border-radius: 100px;
        letter-spacing: 0.06em;
        white-space: nowrap;
    }

    .pricing-tier {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 0.95rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }

    .pricing-price {
        font-family: var(--font-display);
        font-size: 2.4rem;
        font-weight: 900;
        color: var(--text-primary);
        margin-bottom: 0.3rem;
        letter-spacing: -0.04em;
    }

    .pricing-price span {
        font-size: 1rem;
        color: var(--text-secondary);
        font-weight: 400;
        letter-spacing: 0
    }

    .pricing-sub {
        font-size: 0.82rem;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(112, 230, 222, 0.1);
    }

    .pricing-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 2rem;
    }

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.88rem;
        color: var(--text-secondary);
    }

    .feature-check {
        color: var(--brand-secondary);
        font-size: 13px;
        flex-shrink: 0;
        margin-top: 2px
    }

    /* ===== FAQ ===== */
    #faq {
        background: #0E0D16
    }

    .faq-list {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-item {
        background: rgba(18, 17, 26, 0.55);
        border: 1px solid rgba(112, 230, 222, 0.1);
        border-radius: 14px;
        overflow: hidden;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

    .faq-item.open {
        border-color: rgba(112, 230, 222, 0.3);
        box-shadow: 0 0 24px rgba(112, 230, 222, 0.06);
    }

    .faq-q {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 1.5rem;
        cursor: pointer;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-primary);
        user-select: none;
        gap: 1rem;
        letter-spacing: -0.01em;
    }

    .faq-arrow {
        font-size: 18px;
        color: var(--brand-primary);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .faq-item.open .faq-arrow {
        transform: rotate(180deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
        font-size: 0.9rem;
        color: var(--text-secondary);
        padding: 0 1.5rem;
        line-height: 1.75;
    }

    .faq-item.open .faq-a {
        max-height: 220px;
        padding: 0 1.5rem 1.2rem
    }

    /* ===== CTA ===== */
    #cta {
        background:
            radial-gradient(ellipse at 50% 100%, rgba(112, 230, 222, 0.08) 0%, transparent 65%),
            radial-gradient(ellipse at 20% 50%, rgba(194, 97, 245, 0.05) 0%, transparent 50%),
            var(--bg-deep);
        position: relative;
        overflow: hidden;
        padding: 6rem 0;
    }

    #cta::before {
        content: '';
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse, rgba(112, 230, 222, 0.07) 0%, transparent 70%);
        pointer-events: none;
        animation: cta-pulse 5s ease-in-out infinite;
    }

    .cta-panel {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(112, 230, 222, 0.15);
        border-radius: 28px;
        backdrop-filter: blur(40px) saturate(160%);
        -webkit-backdrop-filter: blur(40px) saturate(160%);
        box-shadow:
            0 0 80px rgba(112, 230, 222, 0.06),
            0 32px 64px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
        padding: 5rem 4rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        max-width: 780px;
        margin: 0 auto;
    }

    .cta-panel h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        margin-bottom: 1rem;
        letter-spacing: -0.04em;
    }

    .cta-panel p {
        font-size: 1.05rem;
        max-width: 480px;
        margin: 0 auto;
        color: var(--text-secondary);
    }

    .cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2.5rem;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 100px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
        letter-spacing: 0.01em;
        cursor: pointer;
    }

    .cta-btn img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .cta-btn-email {
        background: var(--brand-primary);
        color: var(--bg-deep);
    }

    .cta-btn-email:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(112, 230, 222, 0.4);
    }

    .cta-btn-call {
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-primary);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
    }

    .cta-btn-call:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .cta-btn-whatsapp {
        background: #25D366;
        color: #fff;
    }

    .cta-btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        background: #20bd5a;
    }

    @keyframes cta-pulse {

        0%,
        100% {
            opacity: 0.7;
            transform: translateX(-50%) scale(1)
        }

        50% {
            opacity: 1;
            transform: translateX(-50%) scale(1.05)
        }
    }

    @media(max-width: 767px) {
        .cta-panel {
            padding: 3rem 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: stretch;
            width: 100%;
        }

        .cta-btn {
            justify-content: center;
        }
    }

    /* ===== FOOTER ===== */
    footer {
        background: var(--bg-deep);
        border-top: 1px solid rgba(112, 230, 222, 0.1);
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-logo-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 1rem
    }

    .footer-tagline {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.65;
        margin-bottom: 1.5rem;
        max-width: 240px;
    }

    .social-icons {
        display: flex;
        gap: 0.8rem
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .social-icon:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .footer-col h4 {
        font-family: var(--font-display);
        font-size: 0.82rem;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 1.2rem;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.88rem;
        transition: color 0.25s;
        font-weight: 400;
    }

    .footer-links a:hover {
        color: var(--brand-primary)
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.88rem;
        color: var(--text-secondary);
        margin-bottom: 0.7rem;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.82rem;
        color: var(--text-secondary);
    }

    .footer-bottom-links {
        display: flex;
        gap: 1.5rem
    }

    .footer-bottom-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.25s;
    }

    .footer-bottom-links a:hover {
        color: var(--brand-primary)
    }

    /* HELPERS */
    .gradient-text {
        background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .text-center {
        text-align: center
    }

    .section-center {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .reveal-delay-1 {
        transition-delay: 0.1s
    }

    .reveal-delay-2 {
        transition-delay: 0.2s
    }

    .reveal-delay-3 {
        transition-delay: 0.3s
    }

    .reveal-delay-4 {
        transition-delay: 0.4s
    }

    .mobile-nav.open~nav,
    body.nav-open nav {
        opacity: 0;
        pointer-events: none;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:1023px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .portfolio-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .portfolio-card.large {
            grid-row: span 1
        }

        .testi-grid {
            grid-template-columns: 1fr 1fr
        }

        .pricing-grid {
            grid-template-columns: 1fr
        }

        .pricing-card.popular {
            transform: none
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr
        }

        .why-inner {
            grid-template-columns: 1fr;
            gap: 3rem
        }

        .stats-block {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    @media(max-width:767px) {

        .nav-links,
        .btn-primary.nav-cta {
            display: none
        }

        .hamburger {
            display: flex
        }

        .hero-inner {
            grid-template-columns: 1fr;
            padding: 7rem 1.5rem 4rem
        }

        .hero-right {
            display: none
        }

        .services-grid {
            grid-template-columns: 1fr
        }

        .portfolio-grid {
            grid-template-columns: 1fr
        }

        .process-track {
            flex-direction: column;
            gap: 1rem
        }

        .process-connector {
            display: none
        }

        .testi-grid {
            grid-template-columns: 1fr
        }

        .footer-grid {
            grid-template-columns: 1fr
        }

        .footer-bottom {
            flex-direction: column;
            gap: 1rem;
            text-align: center
        }

        .cta-panel {
            padding: 3rem 1.5rem
        }

        section {
            padding: 4rem 0
        }
    }

    .tech-section {
        padding: 6rem 0 5rem;
        overflow: hidden;
    }

    .tech-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .tech-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(112, 230, 222, 0.06);
        border: 1px solid rgba(112, 230, 222, 0.2);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 11px;
        font-family: var(--font-display);
        font-weight: 700;
        letter-spacing: 0.15em;
        color: var(--text-secondary);
        margin-bottom: 1.2rem;
    }

    .tech-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--brand-primary);
    }

    .tech-heading {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .tech-carousel-wrap {
        overflow: hidden;
        width: 100%;
        mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .tech-carousel-track {
        display: flex;
        gap: 1.5rem;
        width: max-content;
        animation: tech-scroll 30s linear infinite;
    }

    .tech-carousel-track:hover {
        animation-play-state: paused;
    }

    .tech-card {
        width: 220px;
        height: 110px;
        background: #1A1924;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-shrink: 0;
        transition: background 0.3s, transform 0.3s;
        cursor: default;
    }

    .tech-card:hover {
        background: #232130;
        transform: translateY(-4px);
    }

    .tech-card svg {
        width: 40px;
        height: 40px;
        opacity: 0.75;
        transition: opacity 0.3s;
    }

    .tech-card:hover svg {
        opacity: 1;
    }

    .tech-card span {
        font-size: 12px;
        font-family: var(--font-display);
        font-weight: 600;
        color: var(--text-secondary);
        letter-spacing: 0.03em;
    }

    @keyframes tech-scroll {
        from {
            transform: translateX(0)
        }

        to {
            transform: translateX(-50%)
        }
    }

    @media(max-width: 767px) {
        .process-timeline {
            margin-top: 2.5rem;
        }

        .process-item {
            grid-template-columns: 28px 1fr;
            gap: 0;
        }

        .process-left {
            display: none;
        }

        .process-line-wrap {
            padding-top: 1.6rem;
            padding-right: 1rem;
        }

        .process-line-dot {
            width: 8px;
            height: 8px;
        }

        .process-right {
            padding: 0 0 2rem 0;
            min-width: 0;
            width: 100%;
        }

        .process-card {
            padding: 1.2rem 1.2rem;
            border-radius: 14px;
            width: 100%;
            box-sizing: border-box;
        }

        .process-card h3 {
            font-size: 1.1rem;
        }

        .process-card p {
            font-size: 0.88rem;
        }

        .process-card-footer {
            gap: 6px;
        }

        .process-pill {
            font-size: 10px;
            padding: 4px 10px;
        }

        .process-item:hover .process-card {
            transform: none;
        }
    }

    @media(max-width: 767px) {
        #process .container {
            padding: 0 1.2rem;
            overflow: hidden;
        }
    }





    /* ===== ABOUT SECTION ===== */
    #about-epic {
        position: relative;
        padding: 20rem 0;
        background: var(--bg-deep);
        overflow: hidden;
        z-index: 1;
    }

    /* Animated Background Orbs */
    .about-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        z-index: -1;
        animation: float-orb 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
    }

    .orb-cyan {
        width: 400px;
        height: 400px;
        background: rgba(112, 230, 222, 0.15);
        top: 10%;
        left: -10%;
    }

    .orb-purple {
        width: 500px;
        height: 500px;
        background: rgba(194, 97, 245, 0.12);
        bottom: -10%;
        right: -5%;
        animation-delay: -6s;
    }

    @keyframes float-orb {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        33% {
            transform: translate(30px, -50px) scale(1.1);
        }

        66% {
            transform: translate(-30px, 50px) scale(0.9);
        }
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
    }

    /* Left: Glassmorphic Visual Stack */
    .about-visuals {
        position: relative;
        width: 100%;
        height: 600px;
        perspective: 1000px;
    }

    .glass-panel {
        position: absolute;
        border-radius: 24px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        overflow: hidden;
    }

    /* Back Panel */
    .panel-back {
        width: 80%;
        height: 70%;
        top: 5%;
        right: 0;
        background: linear-gradient(135deg, rgba(194, 97, 245, 0.1), rgba(18, 17, 26, 0.8));
        transform: translateZ(-100px) rotateY(10deg);
        border-color: rgba(194, 97, 245, 0.2);
    }

    /* Main Front Panel */
    .panel-front {
        width: 85%;
        height: 80%;
        bottom: 0;
        left: 0;
        background: rgba(18, 17, 26, 0.65);
        border: 1px solid rgba(112, 230, 222, 0.2);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(112, 230, 222, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3rem;
        transform: translateZ(50px) rotateY(5deg);
    }

    .about-visuals:hover .panel-front {
        transform: translateZ(80px) rotateY(0deg) scale(1.02);
        border-color: rgba(112, 230, 222, 0.5);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(112, 230, 222, 0.2);
    }

    .about-visuals:hover .panel-back {
        transform: translateZ(-150px) rotateY(15deg) scale(0.95);
        opacity: 0.6;
    }

    /* Floating Metric Card */
    .panel-float {
        position: absolute;
        width: auto;
        top: 40%;
        right: -10%;
        background: rgba(11, 10, 16, 0.85);
        border: 1px solid var(--brand-secondary);
        padding: 1.5rem 2rem;
        border-radius: 16px;
        transform: translateZ(100px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        animation: float-y 4s ease-in-out infinite;
    }

    .panel-float h4 {
        font-size: 2rem;
        color: var(--brand-secondary);
        margin-bottom: 0.2rem;
        line-height: 1;
    }

    .panel-float p {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin: 0;
    }

    /* Right: Content */
    .about-content h2 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .about-content p.lead {
        font-size: 1.15rem;
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 1.5rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid transparent;
        transition: all 0.4s ease;
    }

    .feature-item:hover {
        background: rgba(112, 230, 222, 0.05);
        border-color: rgba(112, 230, 222, 0.2);
        transform: translateX(10px);
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(112, 230, 222, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .feature-item:nth-child(2) .feature-icon {
        background: rgba(194, 97, 245, 0.1);
        color: var(--brand-secondary);
    }

    .feature-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-text p {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.6;
    }

    @media(max-width: 1023px) {
        .about-grid {
            grid-template-columns: 1fr;
            gap: 4rem;
        }

        .about-visuals {
            height: 500px;
        }

        .panel-float {
            right: 5%;
        }
    }

    @media(max-width: 767px) {
        .about-visuals {
            height: 400px;
            display: none;
            /* Optional: hide complex 3D on very small screens for performance */
        }

        #about-epic {
            padding: 20rem 0;
        }
    }






    /* ===== CALL MODAL ===== */
    .call-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(11, 10, 16, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .call-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .call-modal-content {
        background: rgba(18, 17, 26, 0.95);
        border: 1px solid rgba(112, 230, 222, 0.2);
        border-radius: 24px;
        padding: 2.5rem;
        width: 90%;
        max-width: 400px;
        position: relative;
        transform: translateY(30px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .call-modal-overlay.active .call-modal-content {
        transform: translateY(0) scale(1);
    }

    .call-modal-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-secondary);
        width: 32px;
        height: 32px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .call-modal-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }

    .call-options {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .call-option {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .call-option:hover {
        background: rgba(112, 230, 222, 0.08);
        border-color: rgba(112, 230, 222, 0.3);
        transform: translateX(5px);
    }

    .call-option .flag {
        font-size: 1.5rem;
    }

    .call-text {
        display: flex;
        flex-direction: column;
    }

    .call-text .region {
        font-size: 0.8rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
    }

    .call-text .number {
        font-size: 1.1rem;
        color: var(--brand-primary);
        font-family: var(--font-display);
        font-weight: 600;
    }

    /* ===== TEMPLATES SECTION ===== */
    #templates {
        background: #0E0D16;
        border-top: 1px solid rgba(255, 255, 255, 0.02);
    }

    .template-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-top: 3.5rem;
    }

    .template-card {
        background: rgba(18, 17, 26, 0.6);
        border: 1px solid rgba(112, 230, 222, 0.15);
        border-radius: 18px;
        overflow: hidden;
        display: block;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .template-card:hover {
        transform: translateY(-8px);
        border-color: rgba(112, 230, 222, 0.5);
        box-shadow: 0 20px 40px rgba(112, 230, 222, 0.15);
    }

    .browser-bar {
        background: rgba(255, 255, 255, 0.03);
        padding: 12px 18px;
        display: flex;
        gap: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .browser-bar i {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .browser-bar i:nth-child(1) {
        background: #ff5f56;
    }

    .browser-bar i:nth-child(2) {
        background: #ffbd2e;
    }

    .browser-bar i:nth-child(3) {
        background: #27c93f;
    }

    .video-wrap {
        width: 100%;
        height: 260px;
        overflow: hidden;
        background: #000;
    }

    .video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.85;
        transition: opacity 0.3s;
    }

    .template-card:hover .video-wrap video {
        opacity: 1;
    }

    .template-info {
        padding: 1.5rem;
    }

    .template-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.3rem;
        color: var(--text-primary);
    }

    .template-info p {
        font-size: 0.9rem;
        color: var(--brand-primary);
        font-weight: 600;
        transition: transform 0.3s;
        display: inline-block;
    }

    .template-card:hover .template-info p {
        transform: translateX(5px);
    }

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

        .video-wrap {
            height: 200px;
        }
    }