﻿:root {
    --bg: #070b18;
    --bg2: #0b1230;
    --card: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.10);
    --text: #eef3ff;
    --muted: rgba(238,243,255,.72);
    --blue: #2f7bff;
    --cyan: #00d4ff;
    --accent: linear-gradient(135deg,var(--blue),var(--cyan));
    --shadow: 0 20px 70px rgba(0,0,0,.55);
    --radius: 18px;
}
.ge-logo-img {
    height: 44px;
    width: 44px; /* keep it square for best clarity */
    object-fit: cover; /* or contain */
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    padding: 0; /* remove padding (it makes logo smaller) */
    image-rendering: auto;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}
.ge-logo-full {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}



* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: radial-gradient(1200px 650px at 10% 10%, rgba(47,123,255,.24), transparent 60%), radial-gradient(900px 520px at 90% 15%, rgba(0,212,255,.16), transparent 58%), linear-gradient(180deg,var(--bg),var(--bg2));
    color: var(--text);
    font-family: ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
}

a {
    color: inherit;
}

.container-xxl {
    max-width: 1240px;
}

.ge-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(7,11,24,.55);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ge-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #061022;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(47,123,255,.22);
}

.ge-brand {
    font-weight: 900;
    letter-spacing: .2px;
    line-height: 1;
}

.ge-tag {
    font-size: .78rem;
    color: var(--muted);
}

.ge-btn {
    border: 0;
    background: var(--accent);
    color: #061022;
    font-weight: 900;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 18px 44px rgba(47,123,255,.22);
}

.ge-btn-soft {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: var(--text);
    padding: 10px 16px;
}

.ge-hero {
    padding: 40px 0 20px;
}

.ge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-weight: 700;
}

.ge-h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 950;
    line-height: 1.05;
    margin: 14px 0;
}

.ge-lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 60ch;
}

.ge-glass {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.ge-kpi {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

    .ge-kpi .item {
        padding: 12px 14px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.04);
        min-width: 140px;
    }

    .ge-kpi .num {
        font-weight: 950;
        font-size: 1.05rem;
    }

    .ge-kpi .lbl {
        color: var(--muted);
        font-size: .85rem;
    }

.ge-section {
    padding: 55px 0;
}

    .ge-section.alt {
        background: rgba(255,255,255,.03);
        border-top: 1px solid rgba(255,255,255,.06);
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

.ge-title {
    font-weight: 950;
    margin: 0;
}

.ge-sub {
    color: var(--muted);
    margin-top: 8px;
}

.ge-card {
    height: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 18px;
    transition: transform .15s ease, border-color .15s ease;
}

    .ge-card:hover {
        transform: translateY(-3px);
        border-color: rgba(0,212,255,.25);
    }

.ge-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    margin-bottom: 12px;
}

    .ge-ic i {
        background: var(--accent);
        -webkit-background-clip: text;
        color: transparent;
        font-size: 1.15rem;
    }

.ge-card h5 {
    margin: 0;
    font-weight: 900;
}

.ge-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.ge-pagehead {
    padding: 34px 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.ge-breadcrumb {
    color: var(--muted);
    font-size: .9rem;
}

.ge-form {
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding: 18px;
}

.ge-input {
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(10,14,34,.55) !important;
    color: var(--text) !important;
}

    .ge-input::placeholder {
        color: rgba(238,243,255,.55) !important;
    }

.ge-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.25);
}

    .ge-footer a {
        text-decoration: none;
        color: rgba(238,243,255,.75);
    }

        .ge-footer a:hover {
            color: #fff;
        }

.ge-line {
    height: 1px;
    background: rgba(255,255,255,.08);
}
