/* =====================================================================
   GENERAL ELEVATOR — In-house corporate theme
   Cream + deep navy + brand-green accent. Manrope display, Inter body.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ============== Tokens — wesa-style palette, structural diffs in components ============== */
:root {
    --c-bg:           #edf2fb;
    --c-bg-2:         #f5f7fb;
    --c-bg-cream:     #faf9f5;
    --c-bg-card:      #ffffff;
    --c-bg-soft:      rgba(225, 225, 235, 0.5);

    --c-ink:          #112543;
    --c-ink-2:        rgba(17, 37, 67, 0.8);
    --c-ink-3:        rgba(17, 37, 67, 0.6);
    --c-ink-4:        rgba(17, 37, 67, 0.4);

    --c-accent:       #ef6f3a;
    --c-accent-2:     #e0612d;
    --c-accent-3:     #f4a87f;
    --c-accent-soft:  rgba(239, 111, 58, 0.10);

    --c-warm:         #ffd259;
    --c-warm-2:       #f0c44a;
    --c-warm-soft:    rgba(255, 210, 89, 0.18);

    --c-line:         rgba(17, 37, 67, 0.10);
    --c-line-2:       rgba(17, 37, 67, 0.18);

    --c-dark:         #0a1428;
    --c-dark-2:       #11203c;
    --c-dark-3:       #15294a;
    --c-green:        #16a34a;
    --c-green-2:      #22c55e;
    --c-green-3:      #4ade80;
    --c-green-soft:   rgba(34,197,94,0.10);

    --shadow-sm:      0 1px 3px rgba(17, 37, 67, 0.06);
    --shadow-md:      0 8px 24px -8px rgba(17, 37, 67, 0.12);
    --shadow-lg:      0 24px 48px -12px rgba(17, 37, 67, 0.18);

    --r-sm:           4px;
    --r-md:           8px;
    --r-lg:           12px;
    --r-pill:         999px;

    --f-sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --f-display:      'Manrope', 'Inter', -apple-system, sans-serif;

    --e:              cubic-bezier(.16,1,.3,1);
    --header-h:       82px;
    --topbar-h:       42px;
    --container:      1320px;
}

/* ============== Reset / base ============== */
*, *::before, *::after { box-sizing: border-box; }
html, body {
    margin: 0; padding: 0;
    font-family: var(--f-sans);
    background: var(--c-bg);
    color: var(--c-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    font-weight: 400;
    font-size: 16px;
}
body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-ink); text-decoration: none; transition: color .25s var(--e); }
a:hover { color: var(--c-accent); }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--f-display);
    color: var(--c-ink);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.018em;
}
p { margin: 0; color: var(--c-ink-2); }
::selection { background: var(--c-accent); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-line-2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }

.ge-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 700px) { .ge-container { padding: 0 20px; } }

/* ============== Top utility bar (light) ============== */
.ge-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    height: var(--topbar-h);
    background: var(--c-bg-soft);
    border-bottom: 1px solid var(--c-line);
}
.ge-topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    color: var(--c-ink-2);
    font-size: 13.5px;
    font-weight: 400;
}
.ge-topbar a {
    color: var(--c-ink-2);
    transition: color .2s var(--e);
}
.ge-topbar a:hover { color: var(--c-accent); }
.ge-topbar-divider {
    width: 1px;
    height: 18px;
    background: var(--c-line-2);
}
.ge-topbar-lang {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
}
.ge-topbar-lang svg { width: 12px; height: 12px; transition: transform .2s var(--e); }
.ge-topbar-lang.is-open svg { transform: rotate(180deg); }
.ge-topbar-lang-current {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.ge-topbar-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s var(--e), transform .2s var(--e), visibility .2s var(--e);
    z-index: 200;
}
.ge-topbar-lang.is-open .ge-topbar-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ge-topbar-lang-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    color: var(--c-ink);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background .15s var(--e), color .15s var(--e);
}
.ge-topbar-lang-menu a:hover {
    background: var(--c-bg);
    color: var(--c-accent);
}
.ge-topbar-lang-menu a.is-active {
    color: var(--c-accent);
    background: var(--c-bg);
}
.ge-topbar-lang-menu a small {
    color: var(--c-ink-3);
    font-size: 11px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
}

/* ============== Header (main, light) ============== */
.ge-header {
    position: fixed;
    top: var(--topbar-h); left: 0; right: 0;
    z-index: 100;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    transition: top .3s var(--e), box-shadow .3s var(--e);
}
.ge-header.is-scrolled {
    top: 0;
    box-shadow: var(--shadow-sm);
}
.ge-topbar {
    transition: transform .3s var(--e), opacity .3s var(--e);
}
.ge-topbar.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.ge-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 32px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 32px;
}
.ge-logo-group {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}
.ge-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.ge-logo img {
    height: 42px;
    width: auto;
    display: block;
}
.ge-logo-divider {
    display: inline-block;
    width: 1px;
    height: 28px;
    background: var(--c-line-2);
    margin: 0 4px;
    flex-shrink: 0;
}
.ge-logo-partner {
    height: 42px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}
@media (max-width: 1023px) {
    .ge-header-inner { padding: 14px 16px; gap: 16px; }
    .ge-logo-group { gap: 8px; }
    .ge-logo img { height: 32px; }
    .ge-logo-partner { height: 32px; }
    .ge-logo-divider { height: 20px; margin: 0; }
}
@media (max-width: 480px) {
    .ge-header-inner { padding: 12px 12px; }
    .ge-logo-group { gap: 6px; }
    .ge-logo img { height: 26px; }
    .ge-logo-partner { height: 26px; }
    .ge-logo-divider { height: 16px; margin: 0; }
}
.ge-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 0;
}
.ge-nav-link {
    position: relative;
    padding: 12px 18px;
    color: var(--c-ink);
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    transition: color .2s var(--e);
}
.ge-nav-link:hover { color: var(--c-accent); }
.ge-nav-link.is-active { color: var(--c-accent); }
.ge-nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px;
    bottom: 4px;
    height: 1.5px;
    background: var(--c-accent);
}
/* hide header phone in light header (kept in markup but unused) */
.ge-header-phone { display: none; }

.ge-header-burger {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--c-line-2);
    border-radius: 8px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.ge-header-burger span {
    width: 18px; height: 1.5px;
    background: var(--c-ink);
    border-radius: 2px;
    transition: transform .25s var(--e), opacity .25s var(--e);
}
body.ge-menu-open .ge-header-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.ge-menu-open .ge-header-burger span:nth-child(2) { opacity: 0; }
body.ge-menu-open .ge-header-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1023px) {
    .ge-topbar { display: none; }
    .ge-header { top: 0; }
    .ge-main { padding-top: var(--header-h); }
    .ge-header-burger { display: flex; margin-left: auto; }
    .ge-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--c-bg);
        flex-direction: column;
        gap: 0;
        padding: 24px 32px;
        margin: 0;
        border-top: 1px solid var(--c-line);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s var(--e), opacity .25s var(--e);
        align-items: stretch;
    }
    body.ge-menu-open .ge-nav {
        transform: translateY(0); opacity: 1; pointer-events: auto;
    }
    .ge-nav-link {
        padding: 18px 0;
        font-size: 14px;
        border-bottom: 1px solid var(--c-line);
    }
    .ge-nav-link.is-active::after { left: 0; right: auto; width: 24px; }

    .ge-nav-lang { display: block !important; margin-top: 24px; }
    .ge-nav-lang-label {
        display: block;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.10em;
        text-transform: uppercase;
        color: var(--c-ink-2);
        margin-bottom: 12px;
    }
    .ge-nav-lang-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .ge-nav-lang-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 48px;
        padding: 10px 14px;
        border: 1px solid var(--c-line-2);
        border-radius: 999px;
        font-family: var(--f-sans);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: var(--c-ink);
        text-transform: uppercase;
        transition: all .2s var(--e);
    }
    .ge-nav-lang-item:hover {
        border-color: var(--c-accent);
        color: var(--c-accent);
    }
    .ge-nav-lang-item.is-active {
        background: var(--c-accent);
        border-color: var(--c-accent);
        color: #fff;
    }
}
@media (min-width: 1024px) {
    .ge-nav-lang { display: none; }
}

.ge-main {
    padding-top: calc(var(--header-h) + var(--topbar-h));
    position: relative;
}

/* ============== Floating WhatsApp ============== */
.ge-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.45);
    transition: transform .25s var(--e);
}
.ge-whatsapp:hover { transform: scale(1.06); color: #fff !important; }
.ge-whatsapp svg { width: 26px; height: 26px; }

/* ============== HERO — light wesa-style ============== */
.ge-hero {
    background: var(--c-bg);
    padding: 60px 0 40px;
    position: relative;
}
.ge-hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.ge-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--c-line);
}
.ge-hero-headline {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 300;
    color: var(--c-ink);
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 820px;
}
.ge-hero-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink);
    font-family: var(--f-sans);
    font-size: 15px;
    font-weight: 400;
    flex-shrink: 0;
    margin-top: 10px;
}
.ge-hero-discover:hover { color: var(--c-accent); }
.ge-hero-discover svg { width: 18px; height: 18px; }
.ge-hero-sub {
    margin-top: 30px;
    color: var(--c-ink-2);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 1180px;
    font-weight: 400;
}
.ge-hero-sub strong { color: var(--c-accent); font-weight: 500; }

/* ============== Hero banner / slider with portrait ============== */
.ge-hero-banner {
    margin-top: 50px;
    position: relative;
    aspect-ratio: 16 / 7;
    background: linear-gradient(135deg, #c9d6e8 0%, #a8c0db 50%, #d8e0ec 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.ge-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://generalelevator.az/images/anasehife-elevator-2.png');
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    opacity: 0.92;
}
.ge-hero-banner-text {
    position: relative;
    z-index: 1;
    padding: 0 60px;
    max-width: 60%;
    color: #fff;
    text-shadow: 0 2px 14px rgba(17,37,67,0.5);
}
.ge-hero-banner h2 {
    color: #fff;
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 3.4vw, 2.8rem);
    font-weight: 300;
    margin: 0 0 14px;
    -webkit-text-fill-color: #fff;
}
.ge-hero-banner p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    font-weight: 300;
    margin: 0;
}
.ge-hero-banner-prev {
    position: absolute;
    top: 28px; left: 60px;
    z-index: 2;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    letter-spacing: 0.06em;
    display: flex;
    gap: 14px;
    text-transform: lowercase;
}
.ge-hero-banner-prev span:hover { color: #fff; cursor: pointer; }
@media (max-width: 700px) {
    .ge-hero-banner {
        aspect-ratio: auto;
        min-height: 460px;
        align-items: flex-end;
        padding-bottom: 28px;
    }
    .ge-hero-banner::before {
        background-size: cover;
        background-position: 60% 20%;
        opacity: 0.85;
    }
    .ge-hero-banner-text {
        padding: 0 24px;
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    .ge-hero-banner-prev { top: 16px; left: 24px; }
}

/* ============== Light service tiles row (under banner) ============== */
.ge-hero-tiles {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: var(--c-bg-card);
    border: 1px solid var(--c-line);
}
.ge-hero-tile {
    padding: 28px 22px;
    border-right: 1px solid var(--c-line);
    color: var(--c-ink);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    transition: background .25s var(--e);
    position: relative;
}
.ge-hero-tile:last-child { border-right: 0; }
.ge-hero-tile:hover { background: var(--c-bg-2); color: var(--c-ink); }
.ge-hero-tile-num {
    font-family: var(--f-sans);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--c-accent);
    letter-spacing: 0.16em;
    margin-bottom: 22px;
}
.ge-hero-tile h3 {
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-ink);
    line-height: 1.25;
    margin: 0;
    -webkit-text-fill-color: var(--c-ink);
}
.ge-hero-tile-arrow {
    position: absolute;
    top: 22px; right: 22px;
    width: 22px; height: 22px;
    color: var(--c-ink-3);
    transition: color .25s var(--e), transform .25s var(--e);
}
.ge-hero-tile-arrow svg { width: 100%; height: 100%; }
.ge-hero-tile:hover .ge-hero-tile-arrow {
    color: var(--c-accent);
    transform: translate(2px, -2px);
}
/* Mobile: hero tiles stack to 2 columns */
@media (max-width: 1023px) {
    .ge-hero-tiles { grid-template-columns: repeat(3, 1fr); }
    .ge-hero-tile:nth-child(3) { border-right: 0; }
}
@media (max-width: 700px) {
    .ge-hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .ge-hero-tile { border-right: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); min-height: 130px; padding: 20px 16px; }
    .ge-hero-tile:nth-child(2n) { border-right: 0; }
    .ge-hero-tile:nth-last-child(-n+2) { border-bottom: 0; }
    .ge-hero-headline { font-size: clamp(1.9rem, 7vw, 2.4rem); }
    .ge-hero-top { flex-direction: column; gap: 24px; padding-bottom: 32px; }
}

/* ============== Page hero (about, projects, blog, etc.) ============== */
.ge-page-hero {
    background: var(--c-bg);
    padding: 60px 0 50px;
    border-bottom: 1px solid var(--c-line);
}
.ge-page-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.ge-page-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 24px;
}
.ge-page-hero-eyebrow {
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-accent);
}
.ge-page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    font-weight: 300;
    color: var(--c-ink);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
}
.ge-page-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-ink-2);
    font-size: 14px;
    font-weight: 400;
}
.ge-page-hero-back:hover { color: var(--c-accent); }
.ge-page-hero-back svg { width: 14px; height: 14px; }
.ge-page-hero p {
    color: var(--c-ink-2);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 820px;
    margin: 0;
}
.ge-page-hero p strong { color: var(--c-accent); font-weight: 500; }

/* Breadcrumb */
.ge-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--c-ink-3);
    margin-bottom: 18px;
}
.ge-breadcrumb a { color: var(--c-ink-3); }
.ge-breadcrumb a:hover { color: var(--c-accent); }
.ge-breadcrumb span { color: var(--c-ink); }
.ge-breadcrumb svg { width: 11px; height: 11px; }

/* Page content base */
.ge-page-section {
    background: var(--c-bg);
    padding: 80px 0;
}
.ge-page-section--alt {
    background: var(--c-bg-2);
}

/* About page sections */
.ge-about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.ge-about-block--reverse > div:first-child { order: 2; }
.ge-about-block-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.ge-about-block-image-cut {
    clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
.ge-about-block-text h2 {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--c-ink);
    margin-bottom: 18px;
}
.ge-about-block-text p {
    color: var(--c-ink-2);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Values list */
.ge-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.ge-value-item {
    padding: 36px 28px 32px;
    border-right: 1px solid var(--c-line);
    transition: background .25s var(--e);
}
.ge-value-item:last-child { border-right: 0; }
.ge-value-item:hover { background: var(--c-bg-2); }
.ge-value-num {
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-accent);
    letter-spacing: 0.12em;
    margin-bottom: 22px;
}
.ge-value-item h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: 12px;
}
.ge-value-item p {
    color: var(--c-ink-2);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* Project / blog list grids (page-level) */
.ge-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Blog detail */
.ge-blog-detail {
    max-width: 820px;
    margin: 0 auto;
}
.ge-blog-detail-hero {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    margin: 32px 0;
}
.ge-blog-detail h1 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 300;
    color: var(--c-ink);
    line-height: 1.2;
    margin-bottom: 20px;
}
.ge-blog-detail .ge-blog-meta {
    color: var(--c-ink-3);
    font-size: 14px;
    margin-bottom: 8px;
}
.ge-blog-detail-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--c-ink-2);
}
.ge-blog-detail-content p { margin-bottom: 18px; }
.ge-blog-detail-content h2,
.ge-blog-detail-content h3 {
    font-family: var(--f-display);
    color: var(--c-ink);
    margin: 30px 0 14px;
    font-weight: 400;
}

/* Contact page */
.ge-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.ge-contact-info {
    border-top: 1px solid var(--c-line);
    padding-top: 32px;
}
.ge-contact-info-item {
    margin-bottom: 28px;
}
.ge-contact-info-item h4 {
    font-family: var(--f-sans);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--c-ink-3);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.ge-contact-info-item a,
.ge-contact-info-item p {
    color: var(--c-ink);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    margin: 0;
}
.ge-contact-info-item a { padding: 0; }
.ge-contact-info-item a:hover { color: var(--c-accent); }
.ge-contact-form-card {
    background: var(--c-bg-card);
    padding: 40px;
    border: 1px solid var(--c-line);
}
.ge-contact-form-card h2 {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--c-ink);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .ge-about-block { grid-template-columns: 1fr; gap: 32px; }
    .ge-about-block--reverse > div:first-child { order: 0; }
    .ge-values-grid { grid-template-columns: 1fr; }
    .ge-value-item { border-right: 0; border-bottom: 1px solid var(--c-line); }
    .ge-value-item:last-child { border-bottom: 0; }
    .ge-page-grid { grid-template-columns: 1fr 1fr; }
    .ge-contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .ge-page-hero-top { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
    .ge-page-grid { grid-template-columns: 1fr; }
    .ge-contact-form-card { padding: 28px 22px; }
}

/* ============== Section base ============== */
.ge-section {
    padding: 90px 0;
    position: relative;
}
.ge-section-tight { padding: 60px 0; }
.ge-section-title {
    font-family: var(--f-sans);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 300;
    color: var(--c-ink);
    margin: 0 0 40px;
    letter-spacing: -0.02em;
}
.ge-section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink);
    font-size: 15px;
    font-weight: 400;
}
.ge-section-link:hover { color: var(--c-accent); }
.ge-section-link svg { width: 18px; height: 18px; }
.ge-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.ge-section-head .ge-section-title { margin: 0; }

/* ============== "What we do" — services list with image ============== */
.ge-what {
    padding: 80px 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
}
.ge-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ge-what-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ge-what-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 0;
    color: var(--c-ink);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    align-self: flex-start;
    transition: color .2s var(--e);
}
.ge-what-item:hover { color: var(--c-accent); }
.ge-what-item:hover .ge-what-item-icon {
    border-color: var(--c-accent);
    background: var(--c-accent-soft);
}
.ge-what-item-icon {
    width: 28px; height: 28px;
    border: 1px solid var(--c-line-2);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s var(--e), background .25s var(--e);
}
.ge-what-item-icon svg { width: 12px; height: 12px; color: var(--c-ink); }
.ge-what-item:hover .ge-what-item-icon svg { color: var(--c-accent); }

.ge-what-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    /* Asymmetric corner-cut (different from wesa diagonal): bottom-right notch */
    clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
/* Green corner accent block — distinguishes from plain wesa image */
.ge-what-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22%;
    height: 22%;
    background: var(--c-accent);
    z-index: 1;
}
.ge-what-image img,
.ge-what-image .ge-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

/* Learn more link with arrow */
.ge-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--c-ink);
    font-size: 14.5px;
    font-weight: 500;
    margin-top: 24px;
    align-self: flex-start;
}
.ge-learn-more:hover { color: var(--c-accent); }
.ge-learn-more svg { width: 16px; height: 16px; }

/* ============== "Our Services" cards ============== */
.ge-services {
    padding: 80px 0 100px;
    background: var(--c-bg);
}
.ge-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.ge-service-card {
    background: var(--c-bg-card);
    border-radius: 0;
    padding: 32px 28px 36px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    color: var(--c-ink);
    transition: transform .3s var(--e), box-shadow .3s var(--e);
    position: relative;
}
.ge-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--c-ink);
}
.ge-service-card h3 {
    font-family: var(--f-sans);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--c-ink);
    margin: 0 0 14px;
    line-height: 1.2;
}
.ge-service-card p {
    color: var(--c-ink-2);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
/* Card footer: dot indicator + chevron arrow (not wesa progress bar) */
.ge-service-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--c-line);
}
.ge-service-dots {
    display: inline-flex;
    gap: 5px;
}
.ge-service-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-line-2);
    display: inline-block;
}
.ge-service-dots i.is-on { background: var(--c-accent); }
.ge-service-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--c-line-2);
    color: var(--c-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s var(--e);
}
.ge-service-arrow svg { width: 14px; height: 14px; }
.ge-service-card:hover .ge-service-arrow {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    transform: rotate(-8deg);
}

/* ============== Stats — deep navy (NOT yellow) with orange accent + diff deco ============== */
.ge-stats {
    background: var(--c-ink);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.ge-stats-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}
.ge-stats-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
}
.ge-stats-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1.5px;
    background: var(--c-accent);
}
.ge-stats h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: #fff;
    margin: 0 0 60px;
    max-width: 640px;
}
.ge-stats h2 em {
    color: var(--c-accent-3);
    font-style: italic;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: var(--c-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}
/* Single horizontal line with vertical dividers (NOT wesa's block grid with semi-circle deco) */
.ge-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1.5px solid rgba(255,255,255,0.18);
    padding-top: 40px;
    position: relative;
}
.ge-stat-item {
    border-left: 1px solid rgba(255,255,255,0.10);
    padding-left: 22px;
    padding-right: 22px;
}
.ge-stat-item:first-child { border-left: 0; padding-left: 0; }
.ge-stat-num {
    font-family: var(--f-display);
    font-size: clamp(3.2rem, 5.4vw, 4.8rem);
    font-weight: 200;
    color: #fff;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}
.ge-stat-num small {
    font-size: 0.45em;
    font-weight: 300;
    vertical-align: super;
    color: var(--c-accent);
}
.ge-stat-label {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    max-width: 220px;
}
/* Decorative geometric blocks — different from wesa */
.ge-stats-deco {
    position: absolute;
    top: 0; right: 0;
    width: 360px; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
    background:
        repeating-linear-gradient(45deg,
            #fff 0,
            #fff 1px,
            transparent 1px,
            transparent 16px);
}
.ge-stats-deco-2 {
    position: absolute;
    top: 50%; right: 11%;
    width: 92px; height: 92px;
    transform: translateY(-50%) rotate(45deg);
    border: 1.5px solid var(--c-accent);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.ge-stats-deco-3 {
    position: absolute;
    top: 30%; right: 24%;
    width: 12px; height: 12px;
    background: var(--c-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ============== Projects gallery (subtle) ============== */
.ge-projects {
    padding: 90px 0;
    background: var(--c-bg);
}
.ge-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ge-project-card {
    position: relative;
    background: var(--c-bg-card);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    transition: transform .3s var(--e);
}
.ge-project-card:hover { transform: translateY(-4px); }
.ge-project-card .ge-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s var(--e);
}
.ge-project-card:hover .ge-bg { transform: scale(1.05); }
.ge-project-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 37, 67, 0.92) 100%);
    padding: 80px 28px 28px;
    color: #fff;
}
.ge-project-card-body h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}
.ge-project-card-body small {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ============== News (blog) ============== */
.ge-news {
    padding: 90px 0;
    background: var(--c-bg);
}
.ge-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ge-news-card {
    background: transparent;
    color: var(--c-ink);
    display: flex;
    flex-direction: column;
}
.ge-news-card:hover { color: var(--c-ink); }
.ge-news-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 18px;
}
.ge-news-card:hover .ge-news-image { transform: none; }
.ge-news-date {
    color: var(--c-ink-2);
    font-size: 14px;
    margin-bottom: 8px;
}
.ge-news-card h3 {
    font-family: var(--f-sans);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--c-ink);
    line-height: 1.4;
    margin: 0 0 16px;
}
.ge-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-accent);
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
    align-self: flex-start;
}
.ge-read-more:hover { color: var(--c-accent-2); }
.ge-read-more svg { width: 14px; height: 14px; }
.ge-news-progress {
    height: 3px;
    background: var(--c-line);
    margin-top: 14px;
    position: relative;
}
.ge-news-progress::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 30%;
    background: var(--c-accent);
}

/* ============== Footer ============== */
.ge-footer {
    background: var(--c-bg);
    padding: 80px 0 32px;
    border-top: 1px solid var(--c-line);
    color: var(--c-ink);
}
.ge-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.ge-footer-col h4 {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--c-ink-2);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.ge-footer-col a {
    display: block;
    color: var(--c-ink);
    font-size: 14.5px;
    padding: 6px 0;
    transition: color .2s var(--e);
}
.ge-footer-col a:hover { color: var(--c-accent); }

/* Footer social icon row */
.ge-footer-socials-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.ge-footer-social {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    border-radius: 50%;
    border: 1px solid var(--c-line-2);
    color: var(--c-ink) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box;
    transition: all .25s var(--e);
}
.ge-footer-social:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff !important;
    transform: translateY(-2px);
}
.ge-footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

/* Subscribe form (left col) */
.ge-footer-sub h3 {
    font-family: var(--f-sans);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--c-ink);
    margin: 0 0 12px;
}
.ge-footer-sub p {
    color: var(--c-ink-2);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.ge-footer-form {
    position: relative;
    border-bottom: 1px solid var(--c-line-2);
    display: flex;
    align-items: center;
    transition: border-color .25s var(--e);
}
.ge-footer-form:focus-within { border-color: var(--c-accent); }
.ge-footer-form input {
    flex: 1;
    padding: 12px 0;
    background: transparent;
    border: none;
    color: var(--c-ink);
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    outline: none;
}
.ge-footer-form input::placeholder { color: var(--c-ink-3); }
.ge-footer-form button {
    background: transparent;
    border: none;
    color: var(--c-ink);
    padding: 8px;
    transition: transform .25s var(--e);
}
.ge-footer-form:focus-within button { color: var(--c-accent); transform: translateX(3px); }
.ge-footer-form button svg { width: 18px; height: 18px; }

/* Big nav links in footer */
.ge-footer-bignav { display: flex; flex-direction: column; gap: 6px; }
.ge-footer-bignav a {
    font-family: var(--f-sans);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--c-ink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 0;
}

.ge-footer-bottom {
    border-top: 1px solid var(--c-line);
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    color: var(--c-ink-3);
    font-size: 13px;
}
.ge-footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.ge-footer-bottom-left a { color: var(--c-ink-3); padding: 0; }
.ge-footer-bottom-left a:hover { color: var(--c-accent); }
.ge-footer-parent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ge-footer-parent-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
}

/* ============== Buttons ============== */
.ge-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .2s var(--e);
}
.ge-btn--primary {
    background: var(--c-accent);
    color: #fff;
}
.ge-btn--primary:hover {
    background: var(--c-accent-2);
    color: #fff;
    transform: translateY(-1px);
}
.ge-btn--ghost {
    background: transparent;
    color: var(--c-ink);
    border: 1px solid var(--c-ink);
}
.ge-btn--ghost:hover {
    background: var(--c-ink);
    color: #fff;
}

/* ============== Contact CTA section ============== */
.ge-contact {
    padding: 90px 0;
    background: var(--c-bg);
}
.ge-contact-card {
    background: var(--c-bg-card);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.ge-contact-card h2 {
    font-family: var(--f-sans);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 300;
    color: var(--c-ink);
    margin-bottom: 18px;
}
.ge-contact-card p {
    color: var(--c-ink-2);
    font-size: 15px;
    line-height: 1.65;
}
.ge-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ge-contact-input {
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-line-2);
    color: var(--c-ink);
    font-family: var(--f-sans);
    font-size: 15px;
    transition: border-color .25s var(--e);
}
.ge-contact-input::placeholder { color: var(--c-ink-3); }
.ge-contact-input:focus { outline: none; border-bottom-color: var(--c-accent); }
.ge-contact-form-row { display: flex; gap: 16px; }
.ge-contact-form-row .ge-contact-input { flex: 1; }

/* ============== "Niyə General Elevator" ============== */
.ge-why {
    padding: 100px 0;
    background: var(--c-bg-2);
    position: relative;
}
.ge-why-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
    align-items: end;
}
.ge-why-head .ge-section-title { margin: 0; }
.ge-why-head p {
    color: var(--c-ink-2);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
}
.ge-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-line);
}
.ge-why-item {
    padding: 36px 28px 32px;
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    transition: background .25s var(--e);
    position: relative;
}
.ge-why-item:last-child { border-right: 0; }
.ge-why-item:hover { background: var(--c-bg); }
.ge-why-num {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-accent);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ge-why-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--c-accent-soft);
}
.ge-why-item h3 {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: 12px;
    line-height: 1.25;
}
.ge-why-item p {
    color: var(--c-ink-2);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============== "Lift növlərimiz" — types ============== */
.ge-types {
    padding: 100px 0;
    background: var(--c-bg);
}
.ge-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.ge-type-card {
    background: var(--c-bg-2);
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    color: var(--c-ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    transition: transform .35s var(--e);
}
.ge-type-card .ge-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.92;
    transition: transform .6s var(--e), opacity .35s var(--e);
}
.ge-type-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 31, 61, 0.85) 100%);
}
.ge-type-card-body {
    position: relative;
    z-index: 1;
    color: #fff;
}
.ge-type-card-body small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-accent-3);
    margin-bottom: 8px;
}
.ge-type-card-body h3 {
    font-family: var(--f-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}
.ge-type-card:hover { transform: translateY(-4px); }
.ge-type-card:hover .ge-bg { transform: scale(1.06); }

/* ============== "Necə işləyirik" — process ============== */
.ge-process {
    padding: 100px 0;
    background: var(--c-bg-2);
    position: relative;
}
.ge-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 24px;
    counter-reset: stepc;
    position: relative;
}
.ge-process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 0; right: 0;
    height: 1px;
    background: var(--c-line);
    z-index: 0;
}
.ge-process-step {
    padding: 0 22px;
    position: relative;
    counter-increment: stepc;
}
.ge-process-step:first-child { padding-left: 0; }
.ge-process-step:last-child { padding-right: 0; }
.ge-process-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--c-bg-2);
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: all .25s var(--e);
}
.ge-process-num::before {
    content: '0' counter(stepc);
}
.ge-process-step:hover .ge-process-num {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}
.ge-process-step h3 {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--c-ink);
    margin-bottom: 12px;
    line-height: 1.25;
}
.ge-process-step p {
    color: var(--c-ink-2);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ============== "Tərəfdaşlarımız" — partners strip ============== */
.ge-partners {
    padding: 80px 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.ge-partners-head {
    text-align: center;
    margin-bottom: 40px;
}
.ge-partners-head .ge-eyebrow,
.ge-partners-head span {
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-ink-3);
    margin-bottom: 14px;
    display: block;
}
.ge-partners-head h2 {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 300;
    color: var(--c-ink);
}
.ge-partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    align-items: center;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.ge-partner {
    padding: 32px 24px;
    border-right: 1px solid var(--c-line);
    text-align: center;
    color: var(--c-ink-2);
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color .25s var(--e), background .25s var(--e);
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ge-partner:last-child { border-right: 0; }
.ge-partner:hover {
    color: var(--c-accent);
    background: var(--c-bg-2);
}
.ge-partner img { max-height: 36px; width: auto; opacity: 0.7; transition: opacity .25s var(--e); }
.ge-partner:hover img { opacity: 1; }

/* ============== Responsive ============== */
@media (max-width: 1100px) {
    .ge-services-grid { grid-template-columns: repeat(2, 1fr); }
    .ge-projects-grid, .ge-news-grid { grid-template-columns: repeat(2, 1fr); }
    .ge-stats-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .ge-what-grid { grid-template-columns: 1fr; gap: 36px; }
    .ge-footer-grid { grid-template-columns: 1fr 1fr; }
    .ge-contact-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
}
@media (max-width: 1100px) {
    .ge-types-grid { grid-template-columns: repeat(3, 1fr); }
    .ge-why-grid { grid-template-columns: repeat(2, 1fr); }
    .ge-process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .ge-process-grid::before { display: none; }
    .ge-partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .ge-section, .ge-what, .ge-services, .ge-projects, .ge-news, .ge-contact { padding: 60px 0; }
    .ge-services-grid, .ge-projects-grid, .ge-news-grid { grid-template-columns: 1fr; }
    .ge-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .ge-hero-top { flex-direction: column; gap: 24px; padding-bottom: 32px; }
    .ge-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    /* Lift növləri mobile: 2 columns, larger cards */
    .ge-types-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ge-type-card { aspect-ratio: 3 / 4; padding: 18px 16px; }
    .ge-type-card-body h3 { font-size: 0.95rem; }
    .ge-type-card-body small { font-size: 10px; }
    /* Niyə GE — 1 column on small */
    .ge-why-grid { grid-template-columns: 1fr; }
    .ge-why-item { border-right: 0; border-bottom: 1px solid var(--c-line); padding: 28px 20px; }
    .ge-why-item:last-child { border-bottom: 0; }
    /* Process — 1 column */
    .ge-process-grid { grid-template-columns: 1fr; gap: 28px; }
    .ge-process-step { padding: 0 4px; }
    /* Partners — 2 columns */
    .ge-partners-grid { grid-template-columns: repeat(2, 1fr); }
    .ge-partner { padding: 22px 16px; min-height: 80px; font-size: 0.95rem; border-bottom: 1px solid var(--c-line); }
    .ge-partner:nth-child(2n) { border-right: 0; }
    /* Stats deco hide on mobile to prevent overflow */
    .ge-stats-deco, .ge-stats-deco-2, .ge-stats-deco-3 { display: none; }
    .ge-hero-glow, .ge-hero-banner-prev { font-size: 12px; }
    /* About block image smaller */
    .ge-about-block-image { aspect-ratio: 4 / 3; }
    /* Section heads stack */
    .ge-section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    /* Page hero h1 smaller */
    .ge-page-hero h1, .ge-hero-headline { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
    /* Ensure no horizontal overflow */
    html, body { max-width: 100vw; overflow-x: hidden; }
    .ge-container, .ge-hero-container, .ge-stats-inner, .ge-page-hero-inner { max-width: 100vw; }
}
