        :root {
            --bg: #07111f;
            --bg-soft: #0b1728;
            --card: rgba(14, 27, 46, 0.72);
            --stroke: rgba(255, 255, 255, 0.08);
            --text: #ecf4ff;
            --muted: #b3c2d9;
            --blue-1: #21c1ff;
            --blue-2: #345dff;
            --blue-3: #0a2540;
            --accent: #7fe7ff;
            --shadow: 0 20px 60px rgba(0, 0, 0, .35);
            --radius: 22px;
            --max: 1180px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Inter, Arial, Helvetica, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 15% 20%, rgba(33, 193, 255, .18), transparent 0 28%),
                radial-gradient(circle at 85% 15%, rgba(52, 93, 255, .16), transparent 0 24%),
                linear-gradient(180deg, #07111f 0%, #08131f 50%, #07101a 100%);
            line-height: 1.5;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
            background-size: 36px 36px;
            mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
            pointer-events: none;
            z-index: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(calc(100% - 32px), var(--max));
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .lang-switch-wrap {
            position: sticky;
            top: 0;
            z-index: 25;
            backdrop-filter: blur(10px);
            background: rgba(7, 17, 31, 0.72);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
        }

        .lang-btn {
            width: 42px;
            height: 42px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
        }

        .lang-btn:hover {
            transform: translateY(-2px) scale(1.04);
            border-color: rgba(127, 231, 255, .35);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 4px rgba(33, 193, 255, .08);
        }

        .lang-btn.active {
            border-color: rgba(33, 193, 255, .8);
            background: rgba(33, 193, 255, .10);
            box-shadow: 0 0 0 4px rgba(33, 193, 255, .12), 0 8px 20px rgba(0, 0, 0, .20);
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(14px);
            background: rgba(7, 17, 31, 0.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background .3s ease, box-shadow .3s ease;
        }

        .topbar.scrolled {
            background: rgba(7, 17, 31, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 82px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }

        .brand-mark {
            width: 52px;
            height: 52px;
            padding: 8px;
            border-radius: 16px;
            background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
            border: 1px solid rgba(255, 255, 255, .08);
            box-shadow: var(--shadow);
            flex: 0 0 auto;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.2px;
        }

        .brand-tag {
            color: var(--muted);
            font-size: .88rem;
            margin-top: 2px;
        }

        .menu {
            display: flex;
            align-items: center;
            gap: 22px;
            color: var(--muted);
            font-size: .96rem;
        }

        .menu a:hover {
            color: #fff;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 999px;
            font-weight: 700;
            border: 1px solid transparent;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
            color: white;
            box-shadow: 0 16px 36px rgba(32, 137, 255, .3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, .03);
            border-color: rgba(255, 255, 255, .12);
            color: var(--text);
        }

        .hero {
            padding: 74px 0 34px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 36px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(127, 231, 255, 0.16);
            background: rgba(20, 39, 63, 0.55);
            color: #dff8ff;
            font-size: .92rem;
            margin-bottom: 18px;
        }

        .eyebrow::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--accent), var(--blue-1));
            box-shadow: 0 0 18px rgba(127, 231, 255, .85);
        }

        h1 {
            margin: 0;
            font-size: clamp(1.2rem, 5vw, 3.0rem);
            line-height: .98;
            letter-spacing: -1.6px;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #ffffff 10%, #86dbff 45%, #7f8dff 90%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.12rem;
            color: var(--muted);
            max-width: 640px;
            margin: 20px 0 30px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            max-width: 700px;
        }

        .metric {
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 20px;
            padding: 18px;
            box-shadow: var(--shadow);
        }

        .metric strong {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 6px;
            color: white;
        }

        .metric span {
            font-size: .92rem;
            color: var(--muted);
        }

        .hero-visual {
            position: relative;
        }

        .halo {
            position: absolute;
            inset: 8% 12% auto;
            height: 320px;
            background: radial-gradient(circle, rgba(33, 193, 255, .34), rgba(52, 93, 255, .12), transparent 68%);
            filter: blur(10px);
            z-index: 0;
        }

        .glass-card {
            position: relative;
            z-index: 1;
            background: linear-gradient(180deg, rgba(22, 37, 60, .76), rgba(12, 24, 42, .82));
            border: 1px solid rgba(255, 255, 255, .09);
            border-radius: 28px;
            padding: 28px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .glass-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, .06) 38%, transparent 58%);
            transform: translateX(-100%);
            animation: shine 7s infinite linear;
        }

        @keyframes shine {
            to {
                transform: translateX(100%);
            }
        }

        .dashboard-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .dashboard-title {
            font-size: 1.02rem;
            font-weight: 700;
        }

        .dashboard-sub {
            color: var(--muted);
            font-size: .9rem;
            margin-top: 4px;
        }

        .status-pill {
            font-size: .84rem;
            color: #d9fbff;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(33, 193, 255, .14);
            border: 1px solid rgba(33, 193, 255, .18);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 8px;
        }

        .mini-card {
            padding: 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .03);
            border: 1px solid rgba(255, 255, 255, .07);
        }

        .mini-card h4 {
            margin: 0 0 8px;
            font-size: .98rem;
        }

        .mini-card p {
            margin: 0;
            font-size: .92rem;
            color: var(--muted);
        }

        .bars {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            height: 150px;
            margin-top: 20px;
            padding-top: 8px;
        }

        .bar {
            flex: 1;
            border-radius: 18px 18px 8px 8px;
            background: linear-gradient(180deg, rgba(127, 231, 255, .95), rgba(52, 93, 255, .55));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
            position: relative;
        }

        .bar::after {
            content: attr(data-label);
            position: absolute;
            bottom: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: .76rem;
            color: var(--muted);
        }

        section {
            padding: 34px 0;
        }

        .section-title {
            max-width: 700px;
            margin-bottom: 22px;
        }

        .section-title .tag {
            display: inline-block;
            color: #9fdcff;
            letter-spacing: .12em;
            text-transform: uppercase;
            font-size: .78rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-title h2 {
            margin: 0;
            font-size: clamp(1.0rem, 3vw, 2rem);
            letter-spacing: -.8px;
        }

        .section-title p {
            color: var(--muted);
            margin: 10px 0 0;
            font-size: 1rem;
        }

        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .service-card {
            padding: 26px;
            border-radius: var(--radius);
            background: var(--card);
            border: 1px solid var(--stroke);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            transition: transform .25s ease, border-color .25s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: rgba(127, 231, 255, 0.25);
        }

        .service-card::before {
            content: "";
            position: absolute;
            inset: auto -40px -40px auto;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, rgba(33, 193, 255, .16), transparent 70%);
            pointer-events: none;
        }

        .icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: inline-grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(33, 193, 255, .18), rgba(52, 93, 255, .22));
            border: 1px solid rgba(255, 255, 255, .08);
            margin-bottom: 16px;
            font-size: 1.4rem;
        }

        .service-card h3 {
            margin: 0 0 10px;
            font-size: 1.15rem;
        }

        .service-card p {
            margin: 0;
            color: var(--muted);
            font-size: .98rem;
        }

        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: start;
        }

        .panel {
            background: var(--card);
            border: 1px solid var(--stroke);
            border-radius: 26px;
            padding: 28px;
            box-shadow: var(--shadow);
        }

        .feature-list {
            display: grid;
            gap: 14px;
            margin-top: 10px;
        }

        .feature {
            display: grid;
            grid-template-columns: 40px 1fr;
            gap: 14px;
            align-items: start;
        }

        .feature-bullet {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            font-weight: 800;
            background: linear-gradient(135deg, rgba(33, 193, 255, .18), rgba(52, 93, 255, .22));
            border: 1px solid rgba(255, 255, 255, .08);
            color: #d6f8ff;
        }

        .feature h4 {
            margin: 0 0 4px;
            font-size: 1rem;
        }

        .feature p {
            margin: 0;
            color: var(--muted);
            font-size: .95rem;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .product {
            padding: 24px;
            background: linear-gradient(180deg, rgba(15, 29, 49, .84), rgba(9, 19, 34, .9));
            border: 1px solid var(--stroke);
            border-radius: 24px;
            box-shadow: var(--shadow);
        }

        .product .label {
            font-size: .78rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #98dcff;
            font-weight: 800;
            margin-bottom: 10px;
            display: inline-block;
        }

        .product h3 {
            margin: 0 0 10px;
            font-size: 1.25rem;
        }

        .product p {
            margin: 0 0 16px;
            color: var(--muted);
        }

        .product ul {
            margin: 0;
            padding-left: 18px;
            color: #dbe8f8;
        }

        .product li {
            margin: 8px 0;
        }

        .cta {
            padding: 34px 0 70px;
        }

        .cta-box {
            padding: 34px;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(19, 39, 66, .92), rgba(10, 20, 36, .98));
            border: 1px solid rgba(127, 231, 255, .12);
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .cta-box h2 {
            margin: 0 0 10px;
            font-size: clamp(1.9rem, 3vw, 3rem);
            line-height: 1.05;
        }

        .cta-box p {
            margin: 0;
            color: var(--muted);
            max-width: 680px;
        }

        footer {
            padding: 26px 0 42px;
            color: #9db0ca;
            border-top: 1px solid rgba(255, 255, 255, .05);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: 0;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }

        .contact-form {
            margin-top: 8px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

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

        .field label {
            font-size: .92rem;
            font-weight: 700;
            color: #e7f1ff;
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            color: var(--text);
            outline: none;
            font: inherit;
            transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .field input::placeholder,
        .field textarea::placeholder {
            color: #8fa3bf;
        }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            border-color: rgba(127, 231, 255, .35);
            box-shadow: 0 0 0 4px rgba(33, 193, 255, .10);
            background: rgba(255, 255, 255, .06);
        }

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

        .form-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .form-note {
            color: var(--muted);
            font-size: .92rem;
        }

        @media (max-width: 1024px) {

            .hero-grid,
            .split,
            .services,
            .products {
                grid-template-columns: 1fr;
            }

            .hero-metrics {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 760px) {
            .nav {
                min-height: 74px;
            }

            .mobile-toggle {
                display: block;
            }

            .menu {
                display: none;
                position: absolute;
                top: 74px;
                left: 16px;
                right: 16px;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 18px;
                background: rgba(9, 18, 32, .96);
                border: 1px solid rgba(255, 255, 255, .08);
                border-radius: 20px;
                box-shadow: var(--shadow);
            }

            .menu.show {
                display: flex;
            }

            .menu .btn {
                width: 100%;
            }

            .brand-tag {
                display: none;
            }

            .hero {
                padding-top: 42px;
            }

            .glass-card,
            .panel,
            .service-card,
            .product {
                padding: 22px;
            }

            .cta-box {
                padding: 28px;
            }

            .lang-switch-wrap .container {
                justify-content: center !important;
            }

            .lang-switch {
                padding: 6px 8px;
                gap: 6px;
            }

            .lang-btn {
                width: 38px;
                height: 38px;
            }

            .flag {
                width: 18px;
                height: 18px;
            }
        }

        .logo-full {
            height: 68px;
            width: auto;
            display: block;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4));
        }

        .flag {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
        }
 
        .section-center {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.sales-card {
    background: linear-gradient(180deg, rgba(15, 29, 49, .84), rgba(9, 19, 34, .9));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sales-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 231, 255, 0.25);
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.sales-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(33,193,255,.18), rgba(52,93,255,.22));
    border: 1px solid rgba(255,255,255,.08);
}

.sales-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.sales-card p {
    margin: 0;
    color: var(--muted);
    font-size: .96rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.result-card {
    background: linear-gradient(180deg, rgba(15, 29, 49, .84), rgba(9, 19, 34, .9));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 231, 255, 0.25);
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.result-number {
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #98dcff;
    font-weight: 800;
    margin-bottom: 14px;
}

.result-card h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .sales-grid,
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .sales-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 9, 18, 0.72);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 120;
}

.modal-overlay.active {
    display: flex;
}

.contact-modal {
    width: min(100%, 820px);
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(17, 31, 52, 0.98), rgba(9, 19, 34, 0.98));
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.modal-header {
    margin-bottom: 18px;
}

.modal-header h2 {
    margin: 10px 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.modal-header p {
    margin: 0;
    color: var(--muted);
    max-width: 640px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.modal-close:hover {
    transform: scale(1.06);
    background: rgba(255,255,255,.08);
    border-color: rgba(127,231,255,.25);
}

.modal-form {
    margin-top: 10px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .contact-modal {
        padding: 22px;
        border-radius: 22px;
    }
}

.field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.10);
    background: #1a2a42;
    color: #ecf4ff;
    outline: none;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.field select:focus {
    border-color: rgba(127,231,255,.35);
    box-shadow: 0 0 0 4px rgba(33,193,255,.10);
    background: #1a2a42;
}

.field select option {
    background: #14233a;
    color: #ecf4ff;
}

.field select option[value=""] {
    color: #b3c2d9;
}

.trust {
    padding: 60px 0 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.trust_1_value {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #21c1ff, #7fe7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.trust_2_value {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #21c1ff, #7fe7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.trust_3_value {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(90deg, #21c1ff, #7fe7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.trust_1 {
    font-size: 14px;
    color: #9fb3c8;
}

.trust_2 {
    font-size: 14px;
    color: #9fb3c8;
}

.trust_3 {
    font-size: 14px;
    color: #9fb3c8;
}

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

.how-it-works {
    padding: 70px 0 30px;
}

.section-center {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.how-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127,231,255,0.25);
    box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}

.how-step {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ecf4ff;
    background: linear-gradient(135deg, rgba(33,193,255,.18), rgba(52,93,255,.22));
    border: 1px solid rgba(255,255,255,.08);
}

.how-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #ecf4ff;
}

.how-card p {
    margin: 0;
    color: #9fb3c8;
    font-size: .98rem;
    line-height: 1.6;
}

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

.contact-showcase {
    padding: 80px 0 70px;
}

.contact-heading {
    margin-bottom: 34px;
}

.contact-heading h2 {
    margin-bottom: 12px;
}

.contact-heading p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-card {
    position: relative;
    padding: 34px 28px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 29, 49, .84), rgba(9, 19, 34, .92));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127,231,255,.25);
    box-shadow: 0 26px 60px rgba(0,0,0,.30);
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    font-size: 1.5rem;
    color: #dff8ff;
    background: linear-gradient(135deg, rgba(33,193,255,.18), rgba(52,93,255,.22));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #f4f8ff;
    letter-spacing: -0.4px;
}

.contact-card-text {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    flex-grow: 1;
}

.contact-link {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #21c1ff;
    text-decoration: none;
}



.static-text {
    cursor: default;
}

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

    .contact-card {
        min-height: auto;
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
    flex-shrink: 0;
}

.lang-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.lang-btn:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(127,231,255,.35);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(33,193,255,.08);
}

.lang-btn.active {
    border-color: rgba(33,193,255,.8);
    background: rgba(33,193,255,.10);
    box-shadow: 0 0 0 4px rgba(33,193,255,.12), 0 8px 20px rgba(0,0,0,.20);
}

.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 6px 8px;
}

@media (max-width: 760px) {
    .nav {
        min-height: 74px;
        gap: 10px;
    }

    .logo-full {
        height: 48px;
        width: auto;
    }

    .nav-right {
        gap: 8px;
    }

    .lang-switch {
        padding: 5px 7px;
        gap: 6px;
    }

    .lang-btn {
        width: 34px;
        height: 34px;
    }

    .flag {
        width: 20px;
        height: 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        background: rgba(9, 18, 32, .96);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 20px;
        box-shadow: var(--shadow);
        z-index: 60;
    }

    .menu.show {
        display: flex;
    }

    .menu .btn {
        width: 100%;
    }

    #installAppBtn {
        display: none !important;
    }
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(7, 17, 31, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background .3s ease, box-shadow .3s ease;
}

.topbar.scrolled {
    background: rgba(7, 17, 31, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 0;
}

.logo-full {
    height: 68px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: .96rem;
}

.menu a:hover {
    color: #fff;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
    flex-shrink: 0;
}

.lang-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.lang-btn:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(127,231,255,.35);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(33,193,255,.08);
}

.lang-btn.active {
    border-color: rgba(33,193,255,.8);
    background: rgba(33,193,255,.10);
    box-shadow: 0 0 0 4px rgba(33,193,255,.12), 0 8px 20px rgba(0,0,0,.20);
}

.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.install-btn {
    white-space: nowrap;
    padding: 12px 18px;
}

.install-btn-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 6px 8px;
}

@media (max-width: 1100px) {
    .install-btn {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .nav {
        min-height: 74px;
        gap: 10px;
    }

    .logo-full {
        height: 48px;
        width: auto;
    }

    .nav-right {
        gap: 8px;
    }

    .lang-switch {
        padding: 5px 7px;
        gap: 6px;
    }

    .lang-btn {
        width: 34px;
        height: 34px;
    }

    .flag {
        width: 20px;
        height: 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        background: rgba(9, 18, 32, .96);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 20px;
        box-shadow: var(--shadow);
        z-index: 60;
    }

    .menu.show {
        display: flex;
    }

    .menu .btn {
        width: 100%;
    }

    .install-btn {
        display: none !important;
    }

    .install-btn-mobile {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
}

