:root {
    --gitech-green: #1bbd36;
    --gitech-black: #000000;
    --gitech-white: #ffffff;
    --gitech-container: 1460px;
    --gitech-radius: 22px;
    --gitech-radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.overlay-open { overflow: hidden; }
main { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4, h5,
.main-nav-link,
.section-kicker,
.hero-kicker,
.mobile-menu-intro {
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
}

.gitech-container {
    width: 100%;
    max-width: var(--gitech-container);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.site-shell { position: relative; }

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 3000;
    padding: 10px 14px;
    background: var(--gitech-white);
    color: var(--gitech-black);
    border: 2px solid var(--gitech-green);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* =========================================================
   TOP BAR
========================================================= */
.gitech-utility-bar {
    position: relative;
    z-index: 1200;
    min-height: 42px;
    display: flex;
    align-items: center;
    background: var(--gitech-black);
    border-bottom: 1px solid var(--gitech-white);
}
.gitech-utility-bar::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px 0;
    border-bottom: 1px solid var(--gitech-black);
    opacity: .82;
}
.utility-inner,
.utility-left,
.utility-right { display: flex; align-items: center; }
.utility-inner { width: 100%; justify-content: space-between; }
.utility-left { gap: 28px; }
.utility-right { gap: 22px; }
.utility-left a,
.utility-left span,
.utility-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gitech-white);
    font-size: 12px;
    font-weight: 500;
    opacity: .78;
    transition: opacity .2s ease, color .2s ease;
}
.utility-left i,
.utility-right i { color: var(--gitech-green); opacity: 1; }
.utility-left a:hover,
.utility-right a:hover { color: var(--gitech-white); opacity: 1; }

/* =========================================================
   DESKTOP HEADER
========================================================= */
.gitech-main-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--gitech-black);
    border-bottom: 1px solid var(--gitech-white);
    transition: box-shadow .2s ease;
}
.gitech-main-header::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px 0;
    border-bottom: 1px solid var(--gitech-black);
    opacity: .82;
}
.gitech-main-header.scrolled { box-shadow: 0 14px 42px var(--gitech-black); }
.main-nav-inner { min-height: 84px; display: flex; align-items: center; }
.main-logo { flex-shrink: 0; }
.main-logo img { width: 158px; height: auto; }
.main-navigation {
    flex: 1;
    min-height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
}
.main-nav-link {
    position: relative;
    min-height: 84px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gitech-white);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}
.main-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--gitech-green);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}
.main-nav-link:hover,
.main-nav-link.active { color: var(--gitech-green); }
.main-nav-link:hover::after,
.main-nav-link.active::after { transform: scaleX(1); }
.nav-dropdown-button i { font-size: 11px; transition: transform .2s ease; }
.main-nav-dropdown { position: relative; display: flex; align-items: center; }
.main-nav-dropdown:hover .nav-dropdown-button i,
.main-nav-dropdown:focus-within .nav-dropdown-button i { transform: rotate(180deg); }

.solutions-dropdown {
    position: absolute;
    top: calc(100% - 7px);
    left: 50%;
    width: min(760px, 86vw);
    padding: 22px;
    transform: translateX(-50%) translateY(14px);
    visibility: hidden;
    opacity: 0;
    background: var(--gitech-black);
    border: 1px solid var(--gitech-white);
    border-radius: 20px;
    box-shadow: 0 30px 70px var(--gitech-black);
    transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
}
.solutions-dropdown::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    top: -1px;
    border-top: 2px solid var(--gitech-green);
}
.main-nav-dropdown:hover .solutions-dropdown,
.main-nav-dropdown:focus-within .solutions-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.solutions-dropdown-header {
    padding-bottom: 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gitech-white);
}
.solutions-dropdown-header small {
    display: block;
    margin-bottom: 6px;
    color: var(--gitech-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.solutions-dropdown-header strong { display: block; font-size: 20px; line-height: 1.3; }
.solutions-dropdown-header p { margin: 5px 0 0; color: var(--gitech-white); font-size: 12px; opacity: .62; }
.solutions-dropdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 22px; }
.solution-nav-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 76px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gitech-white);
    transition: color .2s ease, transform .2s ease;
}
.solution-nav-card:nth-last-child(-n+2) { border-bottom: 0; }
.solution-nav-card:hover { color: var(--gitech-green); transform: translateX(3px); }
.solution-nav-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
}
.solution-nav-card strong { display: block; font-size: 13px; color: inherit; }
.solution-nav-card small { display: block; margin-top: 2px; color: var(--gitech-white); font-size: 11px; line-height: 1.45; opacity: .6; }

.main-nav-actions { display: flex; align-items: center; gap: 15px; }
.header-search-button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--gitech-white);
    font-size: 18px;
    transition: color .2s ease, border-color .2s ease;
}
.header-search-button:hover { color: var(--gitech-green); }

.my-gitech-button {
    position: relative;
    min-height: 50px;
    padding: 5px 12px 5px 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gitech-white);
    border-radius: 14px;
    background: var(--gitech-black);
    color: var(--gitech-white);
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.my-gitech-button::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    border-bottom: 2px solid var(--gitech-green);
    transform: scaleX(.3);
    transform-origin: left center;
    transition: transform .22s ease;
}
.my-gitech-button:hover,
.my-gitech-button:focus-visible {
    background: var(--gitech-white);
    color: var(--gitech-black);
    border-color: var(--gitech-white);
}
.my-gitech-button:hover::after,
.my-gitech-button:focus-visible::after { transform: scaleX(1); }
.my-gitech-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
}
.my-gitech-copy { display: grid; line-height: 1.05; }
.my-gitech-copy small { color: var(--gitech-green); font-size: 8px; font-weight: 800; letter-spacing: 1.2px; }
.my-gitech-copy strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; white-space: nowrap; }
.my-gitech-arrow { display: inline-flex; color: var(--gitech-green); transition: transform .2s ease; }
.my-gitech-button:hover .my-gitech-arrow { transform: translate(2px, -2px); }

.mobile-nav-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--gitech-white);
    border-radius: 50%;
    background: var(--gitech-black);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.mobile-nav-toggle span { width: 20px; height: 2px; background: var(--gitech-white); transition: transform .2s ease, opacity .2s ease; }
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   MOBILE SIDE DRAWER
========================================================= */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}
.mobile-overlay.open { visibility: visible; opacity: 1; pointer-events: auto; }
.mobile-overlay-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: var(--gitech-black);
    opacity: .74;
}
.mobile-overlay-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: clamp(300px, 88vw, 420px);
    max-width: calc(100vw - 28px);
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-left: 1px solid var(--gitech-white);
    box-shadow: -30px 0 70px var(--gitech-black);
    transform: translate3d(100%, 0, 0);
    transition: transform .28s ease;
    overscroll-behavior: contain;
}
.mobile-overlay-panel::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 80px;
    bottom: 80px;
    border-left: 2px solid var(--gitech-green);
}
.mobile-overlay.open .mobile-overlay-panel { transform: translate3d(0, 0, 0); }
.mobile-overlay-top {
    min-height: 74px;
    padding: calc(16px + env(safe-area-inset-top)) 22px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gitech-white);
}
.mobile-overlay-logo img { width: 132px; }
.mobile-overlay-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-white);
    border-radius: 50%;
    background: var(--gitech-black);
    color: var(--gitech-white);
    transition: color .2s ease, border-color .2s ease;
}
.mobile-overlay-close:hover,
.mobile-overlay-close:focus-visible { color: var(--gitech-green); border-color: var(--gitech-green); }
.mobile-overlay-content {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding: 24px 22px calc(28px + env(safe-area-inset-bottom));
}
.mobile-menu-intro { padding-bottom: 20px; }
.mobile-menu-intro > span {
    display: block;
    margin-bottom: 6px;
    color: var(--gitech-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}
.mobile-menu-intro strong { display: block; max-width: 320px; font-size: 24px; line-height: 1.28; font-weight: 700; }
.mobile-menu-origin {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    color: var(--gitech-white);
    font-size: 12px;
    line-height: 1.45;
    opacity: .72;
}
.mobile-menu-origin i { flex-shrink: 0; color: var(--gitech-green); font-size: 17px; }
.mobile-menu-links { display: flex; flex-direction: column; border-top: 1px solid var(--gitech-white); }
.mobile-top-link,
.mobile-solutions-toggle {
    width: 100%;
    min-height: 58px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--gitech-white);
    background: transparent;
    color: var(--gitech-white);
    font-size: 16px;
    font-weight: 650;
    text-align: left;
    transition: color .2s ease, padding .2s ease;
}
.mobile-top-link:hover,
.mobile-top-link:focus-visible,
.mobile-solutions-toggle:hover,
.mobile-solutions-toggle:focus-visible,
.mobile-solutions-group.open .mobile-solutions-toggle { color: var(--gitech-green); padding-left: 5px; }
.mobile-top-link i,
.mobile-solutions-toggle i { font-size: 13px; }
.mobile-solutions-toggle i { transition: transform .2s ease; }
.mobile-solutions-group.open .mobile-solutions-toggle i { transform: rotate(180deg); }
.mobile-solutions-dropdown {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    padding-left: 14px;
    border-left: 1px solid var(--gitech-green);
    transition: max-height .3s ease, opacity .2s ease, visibility .2s ease, padding .2s ease;
}
.mobile-solutions-group.open .mobile-solutions-dropdown {
    max-height: 640px;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}
.mobile-solution-card {
    min-height: 62px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid var(--gitech-white);
    color: var(--gitech-white);
    transition: color .2s ease, transform .2s ease;
}
.mobile-solution-card > i { color: var(--gitech-green); margin-top: 2px; }
.mobile-solution-card strong { display: block; font-size: 13px; line-height: 1.35; }
.mobile-solution-card small { display: block; margin-top: 2px; color: var(--gitech-white); font-size: 11px; line-height: 1.45; opacity: .58; }
.mobile-solution-card:hover,
.mobile-solution-card:focus-visible { color: var(--gitech-green); transform: translateX(3px); }
.mobile-menu-contact {
    margin-top: 22px;
    padding: 18px 0;
    display: grid;
    gap: 6px;
    border-top: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.mobile-menu-contact > span { color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.mobile-menu-contact a { color: var(--gitech-white); }
.mobile-menu-contact a:first-of-type { display: flex; justify-content: space-between; align-items: center; font-size: 20px; }
.mobile-menu-contact a:first-of-type i { color: var(--gitech-green); }
.mobile-menu-contact small { color: var(--gitech-white); opacity: .56; }
.mobile-overlay-actions { display: grid; gap: 10px; margin-top: 18px; }
.mobile-action-primary,
.mobile-action-secondary {
    min-height: 50px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--gitech-white);
    border-radius: 999px;
    background: var(--gitech-black);
    color: var(--gitech-white);
    font-size: 13px;
    font-weight: 750;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.mobile-action-primary { border-color: var(--gitech-green); }
.mobile-action-primary i,
.mobile-action-secondary i { color: var(--gitech-green); }
.mobile-action-primary:hover,
.mobile-action-secondary:hover { color: var(--gitech-black); background: var(--gitech-white); border-color: var(--gitech-white); }

/* =========================================================
   SEARCH
========================================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1900;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}
.search-overlay.open { visibility: visible; opacity: 1; pointer-events: auto; }
.search-overlay-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: var(--gitech-black); opacity: .8; }
.search-panel {
    position: relative;
    z-index: 2;
    width: min(92vw, 760px);
    margin: 110px auto 0;
    padding: 28px;
    border: 1px solid var(--gitech-white);
    border-radius: 20px;
    background: var(--gitech-black);
    box-shadow: 0 28px 70px var(--gitech-black);
}
.search-panel::after { content: ''; position: absolute; left: 28px; right: 28px; top: -1px; border-top: 2px solid var(--gitech-green); }
.search-panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.search-panel-top small { color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.search-panel-top h2 { margin: 3px 0 0; font-size: 26px; }
.search-panel-top button { width: 40px; height: 40px; border: 1px solid var(--gitech-white); border-radius: 50%; background: var(--gitech-black); color: var(--gitech-white); }
.search-input-shell { min-height: 66px; padding: 0 18px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--gitech-white); border-radius: 14px; }
.search-input-shell i { color: var(--gitech-green); }
.search-input-shell input { width: 100%; border: 0; outline: none; background: transparent; color: var(--gitech-white); font-size: 17px; }
.search-input-shell input::placeholder { color: var(--gitech-white); opacity: .46; }
.search-quick-links { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 16px; }
.search-quick-links span { font-size: 12px; opacity: .6; }
.search-quick-links a { padding: 7px 10px; border-bottom: 1px solid var(--gitech-white); font-size: 12px; }
.search-quick-links a:hover { color: var(--gitech-green); border-color: var(--gitech-green); }

/* =========================================================
   HERO
========================================================= */
.home-hero {
    position: relative;
    padding: 50px 0 34px;
    background: var(--gitech-black);
}
.home-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(94%, var(--gitech-container));
    transform: translateX(-50%);
    border-bottom: 1px solid var(--gitech-white);
    opacity: .12;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 52px; align-items: center; }
.hero-copy { padding: 62px 0; }
.hero-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--gitech-white); font-size: 11px; font-weight: 750; letter-spacing: 1.3px; }
.hero-kicker span { width: 38px; border-top: 2px solid var(--gitech-green); }
.hero-copy h1 {
    max-width: 840px;
    margin: 0 0 24px;
    font-size: clamp(46px, 5vw, 78px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 780;
    text-wrap: balance;
}
.hero-copy h1 span { color: var(--gitech-green); }
.hero-copy p { max-width: 690px; margin: 0 0 30px; color: var(--gitech-white); font-size: 18px; line-height: 1.75; opacity: .76; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.gitech-btn {
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.gitech-btn-primary { background: var(--gitech-white); color: var(--gitech-black); border: 1px solid var(--gitech-white); }
.gitech-btn-primary i { color: var(--gitech-green); }
.gitech-btn-primary:hover { transform: translateY(-2px); border-color: var(--gitech-green); color: var(--gitech-black); }
.gitech-btn-glass { background: var(--gitech-black); color: var(--gitech-white); border: 1px solid var(--gitech-white); }
.gitech-btn-glass:hover { color: var(--gitech-green); border-color: var(--gitech-green); transform: translateY(-2px); }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--gitech-white); }
.hero-proof > div { display: flex; align-items: flex-start; gap: 9px; color: var(--gitech-white); font-size: 12px; line-height: 1.55; opacity: .72; }
.hero-proof i { flex-shrink: 0; margin-top: 2px; color: var(--gitech-green); opacity: 1; }
.hero-visual { position: relative; min-height: 620px; display: flex; align-items: center; }
.hero-image-shell { position: relative; width: 100%; min-height: 610px; overflow: hidden; border-radius: 24px; box-shadow: 0 26px 60px var(--gitech-black); }
.hero-image-shell::before { content: ''; position: absolute; inset: 0; z-index: 2; border: 1px solid var(--gitech-white); border-radius: inherit; opacity: .18; pointer-events: none; }
.hero-image-shell::after { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--gitech-black); opacity: .28; pointer-events: none; }
.hero-image-shell img { width: 100%; height: 100%; min-height: 610px; object-fit: cover; }
.hero-support-card { position: absolute; right: 22px; bottom: 22px; z-index: 4; width: 300px; padding: 20px; border: 1px solid var(--gitech-white); border-radius: 18px; background: var(--gitech-black); }
.support-eyebrow { display: block; margin-bottom: 6px; color: var(--gitech-green); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; }
.hero-support-card h2 { margin: 0 0 5px; font-size: 22px; }
.hero-support-card > p { margin: 0 0 10px; font-size: 12px; line-height: 1.55; opacity: .62; }
.hero-support-card a { display: flex; gap: 11px; align-items: center; padding: 11px 0; border-top: 1px solid var(--gitech-white); transition: color .2s ease; }
.hero-support-card a:hover { color: var(--gitech-green); }
.hero-support-card a > i { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--gitech-green); border-radius: 50%; color: var(--gitech-green); }
.hero-support-card strong { display: block; font-size: 12px; }
.hero-support-card small { display: block; font-size: 10px; opacity: .58; }

/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip { padding: 0 0 30px; background: var(--gitech-black); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--gitech-white); border-bottom: 1px solid var(--gitech-white); }
.trust-item { min-height: 92px; display: flex; align-items: center; gap: 13px; padding: 18px 18px; border-right: 1px solid var(--gitech-white); }
.trust-item:last-child { border-right: 0; }
.trust-item i { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--gitech-green); border-radius: 50%; color: var(--gitech-green); font-size: 17px; }
.trust-item strong { display: block; font-size: 13px; }
.trust-item small { display: block; margin-top: 2px; font-size: 11px; opacity: .58; }

/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */
.home-section { position: relative; padding: 100px 0; }
.home-section > .gitech-container { position: relative; z-index: 1; }
.home-section:not(.section-solutions)::after { content: ''; position: absolute; left: 50%; bottom: 0; width: min(92%, var(--gitech-container)); transform: translateX(-50%); border-bottom: 1px solid var(--gitech-white); opacity: .08; }
.section-heading { max-width: 800px; margin-bottom: 44px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--gitech-green); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.section-kicker::before { content: ''; width: 24px; border-top: 2px solid var(--gitech-green); }
.section-heading h2,
.africa-copy h2,
.innovation-copy h2,
.partner-cta h2,
.human-promise-heading h2,
.faq-intro h2 { margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: 1.08; letter-spacing: -2.1px; text-wrap: balance; }
.section-heading h2 span,
.africa-copy h2 span,
.innovation-copy h2 span,
.human-promise-heading h2 span,
.faq-intro h2 span { color: var(--gitech-green); }
.section-heading p { margin-top: 18px; font-size: 16px; opacity: .66; }

/* =========================================================
   SOLUTIONS
========================================================= */
.section-solutions { background: var(--gitech-black); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { position: relative; min-height: 370px; overflow: hidden; border-radius: 20px; background: var(--gitech-black); transition: transform .25s ease; }
.solution-card::before { content: ''; position: absolute; inset: 0; z-index: 3; border: 1px solid var(--gitech-white); border-radius: inherit; opacity: .2; pointer-events: none; }
.solution-card:hover { transform: translateY(-5px); }
.solution-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.solution-card:hover img { transform: scale(1.035); }
.solution-overlay { position: absolute; inset: 0; z-index: 1; background: var(--gitech-black); opacity: .54; }
.solution-content { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; }
.solution-content small { color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.solution-content h3 { margin: 7px 0 10px; font-size: 31px; line-height: 1.1; }
.solution-content p { max-width: 94%; margin: 0 0 12px; font-size: 14px; line-height: 1.6; opacity: .8; }
.solution-content a { display: inline-flex; align-items: center; gap: 7px; color: var(--gitech-green); font-size: 13px; font-weight: 750; }
.solution-content a i { transition: transform .2s ease; }
.solution-content a:hover i { transform: translateX(3px); }

/* =========================================================
   HUMAN PROMISE
========================================================= */
.human-promise-section { padding: 84px 0; border-top: 1px solid var(--gitech-white); border-bottom: 1px solid var(--gitech-white); }
.human-promise-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.human-promise-heading { position: sticky; top: 120px; }
.human-promise-points { display: grid; }
.human-promise-points article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--gitech-white); }
.human-promise-points article:first-child { border-top: 1px solid var(--gitech-white); }
.human-promise-points article > span { color: var(--gitech-green); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 1px; }
.human-promise-points h3 { margin: 0 0 6px; font-size: 22px; }
.human-promise-points p { margin: 0; max-width: 620px; opacity: .64; }

/* =========================================================
   AFRICAN ROOTS
========================================================= */
.africa-section { background: var(--gitech-black); overflow: hidden; }
.africa-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.africa-copy p { margin-top: 18px; max-width: 680px; font-size: 16px; opacity: .68; }
.africa-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.africa-list li { display: flex; align-items: flex-start; gap: 10px; }
.africa-list i { color: var(--gitech-green); margin-top: 3px; }
.africa-cartography-card { position: relative; padding: 20px; border: 1px solid var(--gitech-white); border-radius: 22px; background: var(--gitech-black); }
.africa-cartography-card::before { content: ''; position: absolute; left: 20px; right: 20px; top: -1px; border-top: 2px solid var(--gitech-green); }
.africa-map-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.africa-map-title {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}
.africa-map-title-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 20px;
}
.africa-map-title-copy { min-width: 0; }
.africa-map-title small { display: block; margin-bottom: 6px; color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.africa-map-title strong { display: block; max-width: 420px; font-size: 21px; line-height: 1.3; }
.africa-map-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-bottom: 1px solid var(--gitech-white); color: var(--gitech-white); font-size: 10px; font-weight: 750; letter-spacing: .8px; }
.africa-map-badge i { color: var(--gitech-green); }
.africa-map-stage { position: relative; padding: 10px; border: 1px solid var(--gitech-white); border-radius: 18px; overflow: hidden; background: var(--gitech-black); }
.africa-reference-map { width: 100%; height: auto; display: block; background: var(--gitech-black); border-radius: 14px; }
.africa-country-layer { filter: none; }
.africa-network-paths { opacity: .36; }
.africa-network-paths .africa-signal-path { stroke-dasharray: 5 10; }
.africa-signal-dot .signal-ring { opacity: .46; }
.africa-map-insights { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.africa-insight-card { padding: 14px; border-top: 1px solid var(--gitech-white); }
.africa-insight-card strong { display: block; margin-bottom: 5px; font-size: 13px; }
.africa-insight-card span { display: block; font-size: 11px; line-height: 1.55; opacity: .58; }

/* =========================================================
   WHY GITECH
========================================================= */
.why-gitech-section { background: var(--gitech-black); }
.why-grid-visual { display: grid; grid-template-columns: 1.05fr .95fr .75fr; gap: 18px; }
.why-card { position: relative; min-height: 410px; overflow: hidden; border: 1px solid var(--gitech-white); border-radius: 20px; background: var(--gitech-black); }
.why-image { height: 100%; }
.why-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.why-card:hover .why-image img { transform: scale(1.03); }
.why-content { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 25px; background: var(--gitech-black); }
.why-content::before { content: ''; position: absolute; left: 0; right: 0; top: -42px; height: 42px; background: var(--gitech-black); opacity: .7; }
.why-content h3,
.why-content.only h3 { margin: 0 0 9px; font-size: 26px; }
.why-content p,
.why-content.only p { margin: 0; font-size: 14px; line-height: 1.7; opacity: .7; }
.why-card.text { display: flex; }
.why-content.only { position: static; display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 32px; }
.why-content.only::before { display: none; }
.text-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; color: var(--gitech-green); font-weight: 750; }

/* =========================================================
   INNOVATION
========================================================= */
.innovation-section { background: var(--gitech-black); }
.innovation-panel { padding: 32px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: center; border: 1px solid var(--gitech-white); border-radius: 22px; }
.innovation-copy p { max-width: 560px; margin: 16px 0 24px; opacity: .68; }
.innovation-stack { display: grid; gap: 14px; }
.innovation-media { height: 290px; overflow: hidden; border-radius: 18px; }
.innovation-media img { width: 100%; height: 100%; object-fit: cover; }
.innovation-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.innovation-mini-card { padding: 16px; border-top: 1px solid var(--gitech-white); }
.innovation-mini-card strong { display: block; margin-bottom: 4px; font-size: 14px; }
.innovation-mini-card small { display: block; font-size: 11px; line-height: 1.5; opacity: .6; }

/* =========================================================
   FAQ / SEO CONTENT
========================================================= */
.faq-section { background: var(--gitech-black); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { margin: 16px 0 0; max-width: 520px; opacity: .64; }
.faq-list { border-top: 1px solid var(--gitech-white); }
.faq-list details { border-bottom: 1px solid var(--gitech-white); }
.faq-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; list-style: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--gitech-green); transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 54px 22px 0; line-height: 1.7; opacity: .68; }

/* =========================================================
   CTA
========================================================= */
.partner-cta-section { padding-top: 0; }
.partner-cta { padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border: 1px solid var(--gitech-white); border-radius: 22px; }
.partner-cta::before { content: ''; position: absolute; left: 42px; right: 42px; top: -1px; border-top: 2px solid var(--gitech-green); }
.partner-cta p { margin-top: 14px; max-width: 720px; opacity: .65; }
.partner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================================================
   SUPPORT + BACK TO TOP
========================================================= */
.floating-support { position: fixed; right: 24px; bottom: 24px; z-index: 1250; }
.support-main-button { min-height: 58px; padding: 6px 9px 6px 8px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--gitech-white); border-radius: 999px; background: var(--gitech-black); color: var(--gitech-white); box-shadow: 0 18px 42px var(--gitech-black); transition: border-color .2s ease, transform .2s ease; }
.support-main-button:hover { border-color: var(--gitech-green); transform: translateY(-2px); }
.support-main-icon { position: relative; width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--gitech-green); border-radius: 50%; color: var(--gitech-green); }
.support-main-icon i { font-size: 18px; }
.support-main-icon::after { content: ''; position: absolute; right: 2px; top: 2px; width: 7px; height: 7px; border-radius: 50%; background: var(--gitech-green); border: 1px solid var(--gitech-black); }
.support-main-copy { min-width: 98px; display: grid; gap: 1px; text-align: left; line-height: 1.15; }
.support-main-copy strong { font-size: 12px; font-weight: 800; }
.support-main-copy small { font-size: 9px; font-weight: 500; opacity: .6; }
.support-whatsapp-cue { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; border-left: 1px solid var(--gitech-white); color: var(--gitech-green); font-size: 17px; }
.support-menu { display: none; position: absolute; right: 0; bottom: 70px; width: min(320px, calc(100vw - 28px)); padding: 14px 16px 10px; border: 1px solid var(--gitech-white); border-radius: 18px; background: var(--gitech-black); box-shadow: 0 24px 60px var(--gitech-black); }
.support-menu.open { display: block; }
.support-menu-intro { padding: 3px 0 11px; border-bottom: 1px solid var(--gitech-white); }
.support-menu-intro strong { display: block; font-size: 13px; }
.support-menu-intro small { display: block; margin-top: 3px; font-size: 10px; line-height: 1.5; opacity: .58; }
.support-menu a { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--gitech-white); transition: color .2s ease, transform .2s ease; }
.support-menu a:last-child { border-bottom: 0; }
.support-menu a:hover, .support-menu a:focus-visible { color: var(--gitech-green); transform: translateX(3px); }
.support-menu > a > span { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--gitech-green); border-radius: 50%; color: var(--gitech-green); }
.support-menu strong { display: block; font-size: 12px; }
.support-menu small { display: block; margin-top: 2px; font-size: 10px; opacity: .58; }
.whatsapp-link .bi-whatsapp { color: var(--gitech-green); }
.whatsapp-link.is-unconfigured { cursor: not-allowed; }
.whatsapp-link.is-unconfigured small::after { content: ' • number pending'; }

.scroll-top-button { position: fixed; left: 24px; bottom: 24px; z-index: 1240; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gitech-white); border-radius: 50%; background: var(--gitech-black); color: var(--gitech-green); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease, border-color .2s ease; }
.scroll-top-button.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.scroll-top-button:hover { border-color: var(--gitech-green); transform: translateY(-2px); }

/* =========================================================
   GITECH CONNECTION ORBIT LOADER
   Visual-only loader inspired by people, signal and connection.
   Two asymmetric rings rotate in opposite directions so movement
   remains obvious while the centre stays calm and human.
========================================================= */
.gitech-page-loader {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    background: var(--gitech-black);
    color: var(--gitech-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .05s linear, visibility .05s linear;
}

.gitech-page-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gitech-orbit-loader {
    position: relative;
    width: 148px;
    height: 148px;
    display: grid;
    place-items: center;
}

.gitech-orbit-loader::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gitech-white);
    border-radius: 50%;
    opacity: .14;
}

.gitech-orbit-ring {
    position: absolute;
    display: block;
    border-radius: 50%;
    transform: translateZ(0) rotate(0deg);
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    will-change: transform;
}

.gitech-orbit-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--gitech-black);
}

.gitech-orbit-ring-outer {
    width: 126px;
    height: 126px;
    background: conic-gradient(
        from 14deg,
        var(--gitech-green) 0deg 78deg,
        transparent 78deg 124deg,
        var(--gitech-white) 124deg 152deg,
        transparent 152deg 226deg,
        var(--gitech-green) 226deg 252deg,
        transparent 252deg 318deg,
        var(--gitech-white) 318deg 338deg,
        transparent 338deg 360deg
    );
    animation: gitechOrbitClockwise .76s linear infinite !important;
}

.gitech-orbit-ring-outer::after {
    inset: 7px;
}

.gitech-orbit-ring-inner {
    width: 88px;
    height: 88px;
    background: conic-gradient(
        from 0deg,
        var(--gitech-white) 0deg 42deg,
        transparent 42deg 108deg,
        var(--gitech-green) 108deg 182deg,
        transparent 182deg 252deg,
        var(--gitech-white) 252deg 278deg,
        transparent 278deg 360deg
    );
    animation: gitechOrbitCounter 1.08s linear infinite !important;
}

.gitech-orbit-ring-inner::after {
    inset: 6px;
}

.gitech-orbit-node {
    position: absolute;
    z-index: 3;
    display: block;
    border: 2px solid var(--gitech-black);
    border-radius: 50%;
    background: var(--gitech-green);
}

.gitech-orbit-node-one {
    top: -4px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
}

.gitech-orbit-node-two {
    right: 4px;
    bottom: 17px;
    width: 9px;
    height: 9px;
}

.gitech-orbit-node-three {
    left: 4px;
    top: 17px;
    width: 9px;
    height: 9px;
    background: var(--gitech-white);
}

.gitech-orbit-core {
    position: relative;
    z-index: 5;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--gitech-green);
    border-radius: 50%;
    background: var(--gitech-black);
}

.gitech-orbit-core::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--gitech-white);
    border-radius: 50%;
    opacity: .32;
}

.gitech-orbit-person {
    position: relative;
    z-index: 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gitech-white);
}

.gitech-orbit-person-right {
    background: var(--gitech-green);
}

.gitech-orbit-link {
    position: relative;
    z-index: 2;
    width: 12px;
    height: 2px;
    background: var(--gitech-green);
    transform-origin: center;
    animation: gitechConnectionPulse .76s ease-in-out infinite;
}

@keyframes gitechOrbitClockwise {
    0% { transform: translateZ(0) rotate(0deg); }
    100% { transform: translateZ(0) rotate(360deg); }
}

@keyframes gitechOrbitCounter {
    0% { transform: translateZ(0) rotate(360deg); }
    100% { transform: translateZ(0) rotate(0deg); }
}

@keyframes gitechConnectionPulse {
    0%, 100% { transform: scaleX(.55); opacity: .45; }
    50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 540px) {
    .gitech-orbit-loader { width: 122px; height: 122px; }
    .gitech-orbit-ring-outer { width: 104px; height: 104px; }
    .gitech-orbit-ring-inner { width: 72px; height: 72px; }
    .gitech-orbit-core { width: 46px; height: 46px; gap: 6px; }
    .gitech-orbit-person { width: 8px; height: 8px; }
    .gitech-orbit-link { width: 10px; }
    .gitech-orbit-node-one { width: 11px; height: 11px; margin-left: -5.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .gitech-orbit-ring-outer { animation-duration: 1.2s !important; }
    .gitech-orbit-ring-inner { animation-duration: 1.55s !important; }
    .gitech-orbit-link { animation-duration: 1.2s; }
}

/* =========================================================
   FOOTER
========================================================= */
.gitech-footer { padding: 72px 0 22px; border-top: 1px solid var(--gitech-white); background: var(--gitech-black); }
.footer-lead { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-bottom: 32px; margin-bottom: 38px; border-bottom: 1px solid var(--gitech-white); }
.footer-lead p { margin: 0; max-width: 700px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(22px, 3vw, 38px); line-height: 1.2; font-weight: 650; }
.footer-lead a { display: inline-flex; align-items: center; gap: 8px; color: var(--gitech-green); font-weight: 750; white-space: nowrap; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 36px; }
.footer-brand img { width: 164px; margin-bottom: 16px; }
.footer-brand p { max-width: 380px; margin: 0; font-size: 14px; opacity: .62; }
.footer-tag { margin-top: 14px; }
.footer-tag strong { color: var(--gitech-green); }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h2 { margin: 0 0 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; }
.footer-column a,
.footer-column address { margin: 0; color: var(--gitech-white); font-size: 13px; font-style: normal; opacity: .64; }
.footer-column a:hover { color: var(--gitech-green); opacity: 1; }
.footer-bottom { min-height: 64px; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--gitech-white); font-size: 11px; opacity: .56; }
.footer-bottom div { display: flex; gap: 18px; }

/* =========================================================
   REVEAL MOTION
========================================================= */
.reveal-up,
.reveal-scale { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal-scale { transform: translateY(14px) scale(.99); }
.reveal-up.is-visible,
.reveal-scale.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }

:focus-visible { outline: 2px solid var(--gitech-green); outline-offset: 3px; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1280px) {
    .main-navigation { gap: 26px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 980px; }
    .hero-visual { min-height: auto; }
    .hero-image-shell,
    .hero-image-shell img { min-height: 520px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-item:nth-child(3) { border-right: 0; }
    .trust-item:nth-child(-n+3) { border-bottom: 1px solid var(--gitech-white); }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .human-promise-grid,
    .africa-grid,
    .innovation-panel,
    .faq-grid { grid-template-columns: 1fr; }
    .human-promise-heading,
    .faq-intro { position: static; }
    .why-grid-visual { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
    .main-navigation { display: none; }
    .mobile-nav-toggle { display: flex; }
    .main-nav-actions { margin-left: auto; }
}

@media (max-width: 860px) {
    .gitech-utility-bar { display: none; }
    .main-nav-inner { min-height: 72px; }
    .main-logo img { width: 130px; }
    .header-search-button { display: none; }
    .hero-copy { padding: 28px 0; }
    .hero-copy h1 { font-size: 49px; letter-spacing: -2px; }
    .hero-copy p { font-size: 16px; }
    .hero-proof { grid-template-columns: 1fr; gap: 10px; }
    .hero-support-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 12px; }
    .trust-grid,
    .solutions-grid,
    .why-grid-visual,
    .innovation-mini-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--gitech-white); }
    .trust-item:nth-child(3) { border-right: 0; }
    .trust-item:nth-child(-n+3) { border-bottom: 1px solid var(--gitech-white); }
    .trust-item:last-child { border-bottom: 0; }
    .human-promise-grid { gap: 36px; }
    .africa-cartography-card { padding: 14px; }
    .africa-map-head { flex-direction: column; }
    .africa-map-insights { grid-template-columns: 1fr; }
    .innovation-panel,
    .partner-cta { padding: 24px; }
    .partner-cta { flex-direction: column; align-items: flex-start; }
    .faq-grid { gap: 36px; }
    .footer-lead { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
    .gitech-container { padding-left: 18px; padding-right: 18px; }
    .main-logo img { width: 118px; }
    .my-gitech-button { min-height: 44px; padding: 4px; }
    .my-gitech-copy,
    .my-gitech-arrow { display: none; }
    .my-gitech-icon { width: 34px; height: 34px; }
    .mobile-nav-toggle { width: 44px; height: 44px; }
    .mobile-overlay-panel { width: 90vw; max-width: min(390px, calc(100vw - 24px)); }
    .mobile-overlay-content { padding-left: 18px; padding-right: 18px; }
    .mobile-menu-intro strong { font-size: 22px; }
    .hero-copy h1 { font-size: 40px; }
    .hero-actions { display: grid; }
    .hero-actions a { width: 100%; }
    .hero-image-shell,
    .hero-image-shell img { min-height: 340px; }
    .solution-card { min-height: 340px; }
    .human-promise-points article { grid-template-columns: 42px 1fr; }
    .africa-map-stage { padding: 5px; }
    .africa-map-title strong { font-size: 18px; }
    .partner-actions { width: 100%; }
    .partner-actions a { width: 100%; }
    .floating-support { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
    .support-main-button { width: 52px; height: 52px; min-height: 52px; padding: 0; justify-content: center; }
    .support-main-copy,
    .support-whatsapp-cue { display: none; }
    .support-main-icon { display: inline-flex; width: 40px; height: 40px; }
    .scroll-top-button { left: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 50px; height: 50px; }
    .faq-list summary { font-size: 16px; }
    .faq-list details p { padding-right: 0; }
}

@media (max-width: 400px) {
    .mobile-overlay-panel { width: calc(100vw - 20px); max-width: none; }
    .mobile-overlay-top { padding-left: 16px; padding-right: 16px; }
    .mobile-overlay-content { padding-left: 16px; padding-right: 16px; }
    .mobile-menu-intro strong { font-size: 20px; }
    .mobile-menu-origin { font-size: 11px; }
    .mobile-top-link,
    .mobile-solutions-toggle { min-height: 54px; font-size: 15px; }
    .mobile-solution-card { min-height: 58px; }
    .africa-map-title { grid-template-columns: 40px minmax(0, 1fr); gap: 10px; }
    .africa-map-title-icon { width: 40px; height: 40px; font-size: 18px; }
}

@media (max-height: 650px) and (max-width: 1080px) {
    .mobile-overlay-top { min-height: 62px; padding-top: calc(9px + env(safe-area-inset-top)); padding-bottom: 9px; }
    .mobile-overlay-logo img { width: 116px; }
    .mobile-overlay-content { padding-top: 14px; }
    .mobile-menu-intro { padding-bottom: 12px; }
    .mobile-menu-intro strong { font-size: 20px; }
    .mobile-top-link,
    .mobile-solutions-toggle { min-height: 50px; }
}

@media (hover: none) and (pointer: coarse) {
    .mobile-top-link,
    .mobile-solutions-toggle,
    .mobile-solution-card,
    .mobile-action-primary,
    .mobile-action-secondary,
    .support-main-button,
    .scroll-top-button { touch-action: manipulation; }

    .mobile-solution-card:hover,
    .mobile-top-link:hover,
    .mobile-solutions-toggle:hover { transform: none; padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
    .reveal-up,
    .reveal-scale { opacity: 1; transform: none; }
}


/* =========================================================
   SOLUTION DETAIL PAGES - HUMAN, AFRICAN, AUTHENTIC
========================================================= */
.solution-page-hero {
    position: relative;
    padding: 66px 0 74px;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
    gap: clamp(44px, 6vw, 92px);
    align-items: center;
}
.solution-page-copy { max-width: 780px; }
.solution-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: var(--gitech-white);
    font-size: 12px;
}
.solution-breadcrumb a { opacity: .62; transition: opacity .2s ease, color .2s ease; }
.solution-breadcrumb a:hover { opacity: 1; color: var(--gitech-green); }
.solution-breadcrumb span { opacity: .32; }
.solution-breadcrumb strong { color: var(--gitech-white); font-weight: 600; }
.solution-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gitech-green);
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.55px;
}
.solution-page-kicker i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    font-size: 16px;
}
.solution-page-copy h1 {
    margin: 0 0 22px;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 800;
    text-wrap: balance;
}
.solution-page-copy h1 span { color: var(--gitech-green); }
.solution-page-copy > p {
    max-width: 720px;
    margin: 0;
    color: var(--gitech-white);
    font-size: 18px;
    line-height: 1.78;
    opacity: .76;
}
.solution-page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}
.solution-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gitech-white);
    font-size: 14px;
    font-weight: 700;
}
.solution-text-link i { color: var(--gitech-green); }
.solution-text-link:hover { color: var(--gitech-green); }
.solution-value-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--gitech-white);
}
.solution-value-line span {
    position: relative;
    padding-left: 15px;
    color: var(--gitech-white);
    font-size: 12px;
    font-weight: 650;
    opacity: .7;
}
.solution-value-line span::before {
    content: '';
    position: absolute;
    left: 0;
    top: .58em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gitech-green);
}
.solution-page-media {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--gitech-white);
    border-radius: 26px 26px 8px 26px;
    background: var(--gitech-black);
}
.solution-page-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--gitech-green);
    border-radius: inherit;
    opacity: .22;
    pointer-events: none;
}
.solution-page-media img {
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    opacity: .84;
}
.solution-media-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--gitech-white);
    border-radius: 16px;
    background: var(--gitech-black);
    color: var(--gitech-white);
}
.solution-media-note > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 18px;
}
.solution-media-note span { font-size: 13px; line-height: 1.45; opacity: .78; }
.solution-media-note strong { color: var(--gitech-white); opacity: 1; }

.solution-detail-section {
    padding: 104px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}
.solution-section-intro { max-width: 650px; }
.solution-section-intro h2 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(34px, 3.5vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
    text-wrap: balance;
}
.solution-section-intro > p {
    margin: 18px 0 0;
    color: var(--gitech-white);
    font-size: 16px;
    line-height: 1.75;
    opacity: .65;
}
.solution-service-list { border-top: 1px solid var(--gitech-white); }
.solution-detail-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--gitech-white);
}
.solution-detail-item > i {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 18px;
}
.solution-detail-item h3 { margin: 0 0 7px; font-size: 20px; line-height: 1.3; }
.solution-detail-item p { margin: 0; max-width: 740px; color: var(--gitech-white); font-size: 14px; line-height: 1.7; opacity: .65; }

.solution-human-section { padding: 0; background: var(--gitech-black); color: var(--gitech-white); }
.solution-human-panel {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--gitech-white);
}
.solution-human-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 26px;
}
.solution-human-panel span,
.solution-africa-grid span {
    display: block;
    margin-bottom: 7px;
    color: var(--gitech-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.45px;
}
.solution-human-panel h2 { margin: 0 0 8px; font-size: clamp(25px, 2.5vw, 36px); line-height: 1.2; }
.solution-human-panel p { margin: 0; max-width: 810px; color: var(--gitech-white); font-size: 14px; line-height: 1.7; opacity: .65; }
.solution-human-panel > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gitech-white);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}
.solution-human-panel > a i { color: var(--gitech-green); }
.solution-human-panel > a:hover { color: var(--gitech-green); }

.solution-process-section .solution-section-intro { margin-bottom: 42px; }
.solution-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-process-grid article {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid var(--gitech-white);
}
.solution-process-grid article:last-child { border-right: 0; }
.solution-process-grid article > span {
    display: block;
    margin-bottom: 42px;
    color: var(--gitech-green);
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}
.solution-process-grid h3 { margin: 0 0 10px; font-size: 21px; }
.solution-process-grid p { margin: 0; color: var(--gitech-white); font-size: 14px; line-height: 1.7; opacity: .64; }
.solution-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0 0;
    color: var(--gitech-white);
    font-size: 12px;
    line-height: 1.6;
    opacity: .62;
}
.solution-disclaimer i { color: var(--gitech-green); margin-top: 2px; opacity: 1; }

.solution-africa-section {
    padding: 78px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-africa-grid {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}
.solution-africa-mark {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 34px;
}
.solution-africa-grid h2 { margin: 0 0 10px; font-size: clamp(30px, 3vw, 44px); line-height: 1.1; }
.solution-africa-grid p { margin: 0; max-width: 840px; color: var(--gitech-white); font-size: 15px; line-height: 1.75; opacity: .68; }

.solution-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}
.solution-faq-list { border-top: 1px solid var(--gitech-white); }
.solution-faq-list details { border-bottom: 1px solid var(--gitech-white); }
.solution-faq-list summary {
    position: relative;
    padding: 24px 44px 24px 0;
    cursor: pointer;
    list-style: none;
    color: var(--gitech-white);
    font-size: 17px;
    font-weight: 700;
}
.solution-faq-list summary::-webkit-details-marker { display: none; }
.solution-faq-list summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 22px;
    color: var(--gitech-green);
    font-size: 22px;
    font-weight: 400;
}
.solution-faq-list details[open] summary::after { content: '−'; }
.solution-faq-list details p {
    max-width: 820px;
    margin: -4px 0 24px;
    padding-right: 44px;
    color: var(--gitech-white);
    font-size: 14px;
    line-height: 1.75;
    opacity: .64;
}

.apps-product-section .solution-section-intro { margin-bottom: 42px; }
.apps-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--gitech-white);
    border-left: 1px solid var(--gitech-white);
}
.app-product-card {
    min-height: 330px;
    padding: 32px;
    border-right: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
    background: var(--gitech-black);
}
.app-product-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 20px;
}
.app-product-card > span { color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.35px; }
.app-product-card h3 { margin: 8px 0 10px; font-size: 30px; }
.app-product-card p { margin: 0 0 22px; max-width: 560px; color: var(--gitech-white); font-size: 14px; line-height: 1.72; opacity: .65; }
.app-product-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--gitech-white); font-size: 13px; font-weight: 800; }
.app-product-card a i { color: var(--gitech-green); }
.app-product-card a:hover { color: var(--gitech-green); }

.solution-related-section { padding: 96px 0 110px; background: var(--gitech-black); color: var(--gitech-white); }
.solution-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}
.solution-related-head h2 { margin: 0; max-width: 760px; font-size: clamp(32px, 3.3vw, 50px); line-height: 1.08; letter-spacing: -2px; }
.solution-related-head > a { display: inline-flex; align-items: center; gap: 8px; color: var(--gitech-white); font-size: 13px; font-weight: 800; white-space: nowrap; }
.solution-related-head > a i { color: var(--gitech-green); }
.solution-related-head > a:hover { color: var(--gitech-green); }
.solution-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--gitech-white); border-left: 1px solid var(--gitech-white); }
.solution-related-grid > a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 20px;
    gap: 14px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border-right: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
    transition: color .2s ease, padding-left .2s ease;
}
.solution-related-grid > a > i:first-child {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
}
.solution-related-grid > a > i:last-child { color: var(--gitech-green); }
.solution-related-grid strong { display: block; margin-bottom: 2px; font-size: 14px; }
.solution-related-grid small { display: block; color: var(--gitech-white); font-size: 11px; opacity: .58; }
.solution-related-grid > a:hover { color: var(--gitech-green); padding-left: 23px; }
.solution-page-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    margin-top: 70px;
    padding: 38px 0;
    border-top: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-page-cta span { display: block; margin-bottom: 8px; color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.solution-page-cta h2 { margin: 0 0 8px; font-size: clamp(30px, 3vw, 44px); line-height: 1.08; }
.solution-page-cta p { margin: 0; max-width: 760px; color: var(--gitech-white); font-size: 14px; line-height: 1.7; opacity: .64; }
.solution-page-cta > div:last-child { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.solution-cta-phone { color: var(--gitech-white); font-size: 13px; font-weight: 800; }
.solution-cta-phone:hover { color: var(--gitech-green); }

@media (max-width: 1180px) {
    .solution-page-hero-grid { grid-template-columns: 1fr; }
    .solution-page-media { min-height: 480px; }
    .solution-page-media img { min-height: 480px; max-height: 620px; }
    .solution-detail-grid,
    .solution-faq-grid { grid-template-columns: 1fr; gap: 44px; }
    .solution-section-intro { max-width: 800px; }
}

@media (max-width: 860px) {
    .solution-page-hero { padding: 42px 0 54px; }
    .solution-breadcrumb { margin-bottom: 26px; }
    .solution-page-copy h1 { font-size: 50px; letter-spacing: -2px; }
    .solution-page-copy > p { font-size: 16px; }
    .solution-page-media,
    .solution-page-media img { min-height: 390px; }
    .solution-detail-section { padding: 76px 0; }
    .solution-human-panel { grid-template-columns: 62px 1fr; }
    .solution-human-panel > a { grid-column: 2; justify-self: start; }
    .solution-process-grid { grid-template-columns: 1fr; }
    .solution-process-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--gitech-white); }
    .solution-process-grid article:last-child { border-bottom: 0; }
    .solution-process-grid article > span { margin-bottom: 22px; }
    .apps-product-grid,
    .solution-related-grid { grid-template-columns: 1fr; }
    .solution-related-head { align-items: flex-start; flex-direction: column; }
    .solution-page-cta { grid-template-columns: 1fr; gap: 24px; }
    .solution-page-cta > div:last-child { align-items: flex-start; }
}

@media (max-width: 540px) {
    .solution-page-hero { padding: 30px 0 42px; }
    .solution-page-copy h1 { font-size: 40px; letter-spacing: -1.7px; }
    .solution-page-actions { display: grid; align-items: stretch; }
    .solution-page-actions .gitech-btn { width: 100%; }
    .solution-text-link { min-height: 42px; }
    .solution-value-line { gap: 9px 16px; margin-top: 24px; padding-top: 18px; }
    .solution-page-media,
    .solution-page-media img { min-height: 330px; }
    .solution-media-note { left: 12px; right: 12px; bottom: 12px; grid-template-columns: 38px 1fr; padding: 12px; }
    .solution-media-note > i { width: 38px; height: 38px; }
    .solution-detail-section { padding: 62px 0; }
    .solution-section-intro h2 { font-size: 34px; letter-spacing: -1.4px; }
    .solution-detail-item { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }
    .solution-detail-item > i { width: 40px; height: 40px; font-size: 16px; }
    .solution-human-panel { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
    .solution-human-panel > a { grid-column: auto; }
    .solution-human-icon { width: 54px; height: 54px; font-size: 22px; }
    .solution-process-grid article { padding: 24px 0; }
    .solution-africa-section { padding: 58px 0; }
    .solution-africa-grid { grid-template-columns: 1fr; gap: 20px; }
    .solution-africa-mark { width: 64px; height: 64px; font-size: 27px; }
    .solution-faq-list summary { padding-right: 34px; font-size: 16px; }
    .solution-faq-list details p { padding-right: 0; }
    .app-product-card { min-height: auto; padding: 26px 20px; }
    .app-product-icon { margin-bottom: 24px; }
    .solution-related-section { padding: 70px 0 88px; }
    .solution-related-grid > a { grid-template-columns: 40px minmax(0, 1fr) 18px; padding: 16px 14px; }
    .solution-related-grid > a > i:first-child { width: 38px; height: 38px; }
    .solution-page-cta { margin-top: 48px; padding: 30px 0; }
}


/* =========================================================
   COMPACT SOLUTION JOURNEYS - HUMAN, PROFESSIONAL, RESPONSIVE
   Keeps solution pages useful without turning them into long brochures.
========================================================= */
.solution-page-hero-compact { padding: 46px 0 54px; }
.solution-page-hero-compact .solution-page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: clamp(36px, 5vw, 72px);
}
.solution-page-hero-compact .solution-breadcrumb { margin-bottom: 22px; }
.solution-page-hero-compact .solution-page-copy h1 { font-size: clamp(42px, 4.5vw, 68px); }
.solution-page-hero-compact .solution-page-copy > p { font-size: 17px; line-height: 1.68; }
.solution-page-hero-compact .solution-page-actions { margin-top: 24px; }
.solution-page-hero-compact .solution-value-line { margin-top: 24px; padding-top: 17px; }
.solution-page-hero-compact .solution-page-media,
.solution-page-hero-compact .solution-page-media img { min-height: 440px; }
.solution-page-hero-compact .solution-page-media img { max-height: 520px; }
.nav-external-mark { margin-left: 2px; font-size: 11px; color: var(--gitech-green); }

.solution-compact-section {
    padding: 66px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-compact-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .7fr);
    gap: 46px;
    align-items: end;
    margin-bottom: 30px;
}
.solution-compact-head h2,
.solution-gateway-copy h2,
.solution-compact-process-head h2,
.solution-compact-faq-grid > div:first-child h2 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    text-wrap: balance;
}
.solution-compact-head > p,
.solution-gateway-copy > p,
.solution-compact-faq-grid > div:first-child > p {
    margin: 0;
    color: var(--gitech-white);
    font-size: 14px;
    line-height: 1.7;
    opacity: .66;
}
.solution-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gitech-white);
    border-left: 1px solid var(--gitech-white);
}
.solution-capability-grid article {
    min-height: 142px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
    border-right: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-capability-grid article > i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 16px;
}
.solution-capability-grid h3 { margin: 0 0 5px; font-size: 17px; line-height: 1.25; }
.solution-capability-grid p { margin: 0; color: var(--gitech-white); font-size: 12px; line-height: 1.55; opacity: .62; }

.solution-story-section {
    padding: 54px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.solution-story-card {
    min-height: 210px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px;
    border: 1px solid var(--gitech-white);
    border-radius: 18px 18px 5px 18px;
}
.solution-story-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 20px;
}
.solution-story-card span { display: block; margin-bottom: 7px; color: var(--gitech-green); font-size: 10px; font-weight: 800; letter-spacing: 1.3px; }
.solution-story-card h2 { margin: 0 0 8px; font-size: clamp(23px, 2.25vw, 32px); line-height: 1.15; }
.solution-story-card p { margin: 0; color: var(--gitech-white); font-size: 13px; line-height: 1.65; opacity: .65; }

.solution-compact-faq {
    padding: 58px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-compact-faq-grid {
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    gap: clamp(38px, 6vw, 84px);
    align-items: start;
}
.solution-compact-faq .solution-faq-list summary { padding-top: 18px; padding-bottom: 18px; font-size: 15px; }
.solution-compact-faq .solution-faq-list summary::after { top: 16px; }
.solution-compact-faq .solution-faq-list details p { margin-bottom: 18px; font-size: 13px; }

.solution-gateway-section {
    padding: 58px 0 64px;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-gateway-grid {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: clamp(42px, 6vw, 86px);
    align-items: center;
}
.solution-gateway-copy > p { margin-top: 14px; max-width: 610px; }
.solution-gateway-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: var(--gitech-white);
    font-size: 14px;
    font-weight: 800;
}
.solution-gateway-link i { color: var(--gitech-green); }
.solution-gateway-link:hover { color: var(--gitech-green); }
.solution-gateway-points { border-top: 1px solid var(--gitech-white); }
.solution-gateway-points article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--gitech-white);
}
.solution-gateway-points article > i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
}
.solution-gateway-points strong { display: block; margin-bottom: 2px; font-size: 15px; }
.solution-gateway-points span { display: block; color: var(--gitech-white); font-size: 12px; line-height: 1.55; opacity: .62; }

.solution-compact-process {
    padding: 56px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.solution-compact-process-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.solution-process-inline { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--gitech-white); border-bottom: 1px solid var(--gitech-white); }
.solution-process-inline article { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 20px; border-right: 1px solid var(--gitech-white); }
.solution-process-inline article:last-child { border-right: 0; }
.solution-process-inline article > span { color: var(--gitech-green); font-size: 11px; font-weight: 800; }
.solution-process-inline strong { display: block; margin-bottom: 5px; font-size: 16px; }
.solution-process-inline p { margin: 0; color: var(--gitech-white); font-size: 12px; line-height: 1.55; opacity: .62; }

.apps-product-grid-compact { grid-template-columns: repeat(3, 1fr); }
.apps-product-grid-compact .app-product-card { min-height: 250px; padding: 24px; }
.apps-product-grid-compact .app-product-icon { margin-bottom: 22px; }
.apps-product-grid-compact .app-product-card h3 { font-size: 25px; }

.solution-related-section.solution-related-compact { padding: 58px 0 68px; }
.solution-related-compact .solution-related-head { margin-bottom: 24px; }
.solution-related-compact .solution-related-head h2 { font-size: clamp(28px, 2.7vw, 40px); max-width: 690px; }
.solution-related-compact .solution-related-grid { grid-template-columns: repeat(3, 1fr); }
.solution-related-compact .solution-related-grid > a { min-height: 82px; padding: 14px; grid-template-columns: 38px minmax(0, 1fr) 18px; }
.solution-related-compact .solution-related-grid > a > i:first-child { width: 36px; height: 36px; }
.solution-related-compact .solution-related-grid > a:hover { padding-left: 18px; }

@media (max-width: 1180px) {
    .solution-page-hero-compact .solution-page-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); }
    .solution-capability-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-related-compact .solution-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .solution-page-hero-compact { padding: 34px 0 44px; }
    .solution-page-hero-compact .solution-page-hero-grid,
    .solution-compact-head,
    .solution-gateway-grid,
    .solution-compact-faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .solution-page-hero-compact .solution-page-media,
    .solution-page-hero-compact .solution-page-media img { min-height: 330px; max-height: 440px; }
    .solution-story-grid { grid-template-columns: 1fr; }
    .solution-process-inline { grid-template-columns: 1fr; }
    .solution-process-inline article { border-right: 0; border-bottom: 1px solid var(--gitech-white); }
    .solution-process-inline article:last-child { border-bottom: 0; }
    .apps-product-grid-compact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .solution-page-hero-compact .solution-page-copy h1 { font-size: 38px; letter-spacing: -1.5px; }
    .solution-page-hero-compact .solution-page-copy > p { font-size: 15px; line-height: 1.62; }
    .solution-page-hero-compact .solution-page-media,
    .solution-page-hero-compact .solution-page-media img { min-height: 285px; }
    .solution-compact-section,
    .solution-gateway-section { padding: 48px 0; }
    .solution-capability-grid { grid-template-columns: 1fr; }
    .solution-capability-grid article { min-height: auto; padding: 17px 15px; }
    .solution-story-section { padding: 44px 0; }
    .solution-story-card { min-height: auto; grid-template-columns: 48px 1fr; padding: 20px; }
    .solution-story-icon { width: 44px; height: 44px; }
    .solution-compact-faq { padding: 46px 0; }
    .solution-related-section.solution-related-compact { padding: 46px 0 56px; }
    .solution-related-compact .solution-related-grid { grid-template-columns: 1fr; }
    .solution-related-compact .solution-related-head { gap: 14px; }
    .solution-related-compact .solution-related-head > a { white-space: normal; }
    .solution-compact-process { padding: 46px 0; }
    .apps-product-grid-compact .app-product-card { padding: 20px; }
}


/* =========================================================
   ABOUT + CONTACT - HUMAN GITECH BRAND PAGES
   Compact, relationship-led, African and intentionally restrained.
========================================================= */
.brand-page-hero {
    padding: 52px 0 60px;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.brand-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    gap: clamp(42px, 6vw, 92px);
    align-items: center;
}
.brand-page-copy h1 {
    max-width: 850px;
    margin: 18px 0 20px;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 800;
    text-wrap: balance;
}
.brand-page-copy h1 span { color: var(--gitech-green); }
.brand-page-copy > p {
    max-width: 760px;
    margin: 0;
    color: var(--gitech-white);
    font-size: 17px;
    line-height: 1.72;
    opacity: .72;
}
.brand-human-note,
.contact-human-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--gitech-white);
    border-radius: 24px 24px 7px 24px;
    background: var(--gitech-black);
    color: var(--gitech-white);
}
.brand-human-note::after,
.contact-human-card::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: -1px;
    border-bottom: 1px solid var(--gitech-green);
}
.brand-human-note-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 21px;
}
.brand-human-note > span,
.contact-human-card > span,
.brand-africa-callout-grid > div:nth-child(2) > span,
.contact-africa-note > span {
    display: block;
    margin-bottom: 8px;
    color: var(--gitech-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.35px;
}
.brand-human-note h2,
.contact-human-card h2,
.brand-africa-callout h2,
.contact-africa-note h2 {
    margin: 0 0 12px;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(25px, 2.4vw, 36px);
    line-height: 1.13;
    letter-spacing: -1.2px;
}
.brand-human-note p,
.contact-human-card > p,
.brand-africa-callout p,
.contact-africa-note p {
    margin: 0;
    color: var(--gitech-white);
    font-size: 14px;
    line-height: 1.7;
    opacity: .66;
}
.brand-origin-line {
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gitech-white);
}
.brand-origin-line i { color: var(--gitech-green); font-size: 22px; }
.brand-origin-line strong { font-size: 13px; }

.brand-values-strip {
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.brand-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.brand-values-grid article {
    min-height: 118px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    border-right: 1px solid var(--gitech-white);
}
.brand-values-grid article:last-child { border-right: 0; }
.brand-values-grid article > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 18px;
}
.brand-values-grid strong { display: block; margin-bottom: 3px; font-size: 15px; }
.brand-values-grid span { display: block; color: var(--gitech-white); font-size: 12px; line-height: 1.5; opacity: .62; }

.brand-story-section,
.contact-options-section,
.contact-context-section {
    padding: 68px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.brand-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(46px, 7vw, 100px);
    align-items: start;
}
.brand-story-copy h2,
.contact-options-head h2,
.contact-context-copy h2 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
    text-wrap: balance;
}
.brand-story-copy h2 span { color: var(--gitech-green); }
.brand-story-copy p,
.contact-context-copy > p {
    margin: 18px 0 0;
    color: var(--gitech-white);
    font-size: 14px;
    line-height: 1.75;
    opacity: .68;
}
.brand-service-rail { border-top: 1px solid var(--gitech-white); }
.brand-service-rail a {
    min-height: 78px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: center;
    padding: 14px 4px;
    border-bottom: 1px solid var(--gitech-white);
    transition: padding .2s ease, color .2s ease;
}
.brand-service-rail a > i:first-child { color: var(--gitech-green); font-size: 20px; }
.brand-service-rail a > i:last-child { color: var(--gitech-green); }
.brand-service-rail strong { display: block; font-size: 15px; }
.brand-service-rail small { display: block; margin-top: 2px; color: var(--gitech-white); font-size: 11px; opacity: .58; }
.brand-service-rail a:hover { padding-left: 10px; color: var(--gitech-green); }

.brand-africa-callout {
    padding: 54px 0 62px;
    background: var(--gitech-black);
    color: var(--gitech-white);
}
.brand-africa-callout-grid {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}
.brand-africa-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 28px;
}
.brand-africa-callout-grid > a,
.contact-africa-note > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gitech-white);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.brand-africa-callout-grid > a i,
.contact-africa-note > a i { color: var(--gitech-green); }
.brand-africa-callout-grid > a:hover,
.contact-africa-note > a:hover { color: var(--gitech-green); }

.contact-human-card > p { margin-bottom: 20px; }
.contact-human-link {
    min-height: 64px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--gitech-white);
    transition: color .2s ease, padding .2s ease;
}
.contact-human-link > i:first-child {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
}
.contact-human-link > i:last-child { color: var(--gitech-green); }
.contact-human-link small { display: block; color: var(--gitech-green); font-size: 9px; font-weight: 800; letter-spacing: 1.1px; }
.contact-human-link strong { display: block; margin-top: 2px; font-size: 14px; }
.contact-human-link:hover { padding-left: 6px; color: var(--gitech-green); }

.contact-options-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 30px;
}
.contact-options-head > p {
    max-width: 370px;
    margin: 0;
    color: var(--gitech-white);
    font-size: 13px;
    line-height: 1.65;
    opacity: .62;
}
.contact-options-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--gitech-white); border-left: 1px solid var(--gitech-white); }
.contact-option {
    min-height: 120px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 15px;
    align-items: center;
    padding: 22px;
    border-right: 1px solid var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
    transition: color .2s ease, padding .2s ease;
}
.contact-option > i:first-child {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-green);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 18px;
}
.contact-option > i:last-child { color: var(--gitech-green); }
.contact-option span { display: block; margin-bottom: 4px; color: var(--gitech-green); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; }
.contact-option strong { display: block; font-size: 16px; line-height: 1.3; }
.contact-option small { display: block; margin-top: 4px; color: var(--gitech-white); font-size: 11px; line-height: 1.5; opacity: .58; }
.contact-option:not(.contact-option-static):hover { padding-left: 28px; color: var(--gitech-green); }

.contact-context-section { padding-top: 60px; }
.contact-context-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.contact-context-points { margin-top: 24px; display: grid; gap: 9px; }
.contact-context-points span { display: flex; align-items: center; gap: 10px; color: var(--gitech-white); font-size: 13px; }
.contact-context-points i { color: var(--gitech-green); }
.contact-africa-note { padding-left: 28px; border-left: 1px solid var(--gitech-green); }
.contact-africa-note > i { display: block; margin-bottom: 18px; color: var(--gitech-green); font-size: 34px; }
.contact-africa-note > a { margin-top: 20px; }

@media (max-width: 980px) {
    .brand-page-hero-grid,
    .brand-story-grid,
    .contact-context-grid { grid-template-columns: 1fr; gap: 34px; }
    .brand-values-grid { grid-template-columns: 1fr; }
    .brand-values-grid article { border-right: 0; border-bottom: 1px solid var(--gitech-white); }
    .brand-values-grid article:last-child { border-bottom: 0; }
    .brand-africa-callout-grid { grid-template-columns: 64px minmax(0, 1fr); }
    .brand-africa-callout-grid > a { grid-column: 2; justify-self: start; }
    .contact-options-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
    .brand-page-hero { padding: 34px 0 42px; }
    .brand-page-copy h1 { font-size: 40px; letter-spacing: -1.8px; }
    .brand-page-copy > p { font-size: 15px; line-height: 1.65; }
    .brand-human-note,
    .contact-human-card { padding: 22px; border-radius: 20px 20px 6px 20px; }
    .brand-human-note::after,
    .contact-human-card::after { left: 22px; right: 22px; }
    .brand-story-section,
    .contact-options-section,
    .contact-context-section { padding: 48px 0; }
    .brand-africa-callout { padding: 44px 0 50px; }
    .brand-africa-callout-grid { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; align-items: start; }
    .brand-africa-icon { width: 50px; height: 50px; font-size: 22px; }
    .brand-africa-callout-grid > a { grid-column: 1 / -1; }
    .contact-options-grid { grid-template-columns: 1fr; }
    .contact-option { min-height: 104px; padding: 18px 16px; }
    .contact-africa-note { padding-left: 20px; }
}


/* Human support refinements */
@media (max-width: 540px) {
    .floating-support { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
    .support-main-button { min-height: 52px; padding: 5px 7px; gap: 7px; }
    .support-main-icon { width: 38px; height: 38px; }
    .support-main-copy { min-width: 82px; }
    .support-main-copy strong { font-size: 11px; }
    .support-main-copy small { font-size: 8px; }
    .support-whatsapp-cue { width: 28px; font-size: 15px; }
    .support-menu { right: 0; bottom: 62px; width: min(304px, calc(100vw - 28px)); }
    .hero-support-card a { min-height: 54px; }
}

/* =========================================================
   LOADER MOTION SAFETY OVERRIDE
   Loading feedback is essential UI motion. Keep the two orbit rings looping
   even when the site's global reduced-motion rule disables other animation.
========================================================= */
.gitech-page-loader .gitech-orbit-ring-outer {
    animation-name: gitechOrbitClockwise !important;
    animation-duration: .76s !important;
    animation-timing-function: linear !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    animation-direction: normal !important;
    animation-fill-mode: none !important;
    animation-play-state: running !important;
}

.gitech-page-loader .gitech-orbit-ring-inner {
    animation-name: gitechOrbitCounter !important;
    animation-duration: 1.08s !important;
    animation-timing-function: linear !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    animation-direction: normal !important;
    animation-fill-mode: none !important;
    animation-play-state: running !important;
}

.gitech-page-loader .gitech-orbit-link {
    animation-name: gitechConnectionPulse !important;
    animation-duration: .76s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !important;
}

@media (prefers-reduced-motion: reduce) {
    .gitech-page-loader .gitech-orbit-ring-outer {
        animation-duration: 1.2s !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }

    .gitech-page-loader .gitech-orbit-ring-inner {
        animation-duration: 1.55s !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }

    .gitech-page-loader .gitech-orbit-link {
        animation-duration: 1.2s !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }
}

/* =========================================================
   AUTHENTIC GITECH PHOTOGRAPHY SYSTEM
   Real people + real place, applied consistently across pages.
   Corporate palette remains black / white / #1bbd36 only.
========================================================= */
.focus-center { object-position: center center !important; }
.focus-upper { object-position: center 28% !important; }
.focus-top { object-position: center top !important; }
.focus-left { object-position: 35% center !important; }
.focus-right { object-position: 65% center !important; }

.authentic-photo-card,
.authentic-strip-card,
.brand-hero-photo,
.contact-hero-photo,
.partner-authentic-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--gitech-white);
    background: var(--gitech-black);
}
.authentic-photo-card,
.brand-hero-photo,
.contact-hero-photo { border-radius: 22px 22px 6px 22px; }
.authentic-strip-card { border-radius: 18px 18px 5px 18px; }
.authentic-photo-card::after,
.authentic-strip-card::after,
.brand-hero-photo::after,
.contact-hero-photo::after,
.partner-authentic-photo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--gitech-green);
    pointer-events: none;
}
.authentic-photo-card img,
.authentic-strip-card img,
.brand-hero-photo img,
.contact-hero-photo img,
.partner-authentic-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.authentic-photo-card img,
.brand-hero-photo img,
.contact-hero-photo img { min-height: 100%; }

.authentic-photo-caption,
.authentic-photo-card figcaption,
.authentic-strip-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 4;
    padding: 13px 15px;
    border: 1px solid var(--gitech-white);
    border-radius: 13px 13px 4px 13px;
    background: var(--gitech-black);
}
.authentic-photo-caption span,
.authentic-photo-card figcaption span,
.authentic-strip-card figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--gitech-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
.authentic-photo-caption strong,
.authentic-photo-card figcaption strong,
.authentic-strip-card figcaption strong {
    display: block;
    color: var(--gitech-white);
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 13px;
    line-height: 1.35;
}

.authentic-hero-photo .authentic-photo-caption { max-width: 320px; }
.authentic-hero-photo::after { opacity: .2; }

.human-photo-strip { margin-top: 44px; }
.human-photo-strip .authentic-strip-card { height: clamp(190px, 22vw, 310px); }
.human-photo-strip .authentic-strip-card img { object-position: center 48%; }

.africa-place-photo { height: 230px; margin-top: 18px; }
.africa-place-photo img { object-position: center 42%; }

.authentic-proof-section {
    padding: 58px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.authentic-proof-section-compact { padding-top: 48px; padding-bottom: 48px; }
.authentic-proof-section-banner { padding-top: 38px; padding-bottom: 38px; }
.authentic-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
}
.authentic-proof-grid-reverse { grid-template-columns: minmax(300px, .72fr) minmax(0, 1.08fr); }
.authentic-proof-grid .authentic-photo-card { height: 330px; }
.authentic-proof-grid .authentic-photo-card-tall { height: 390px; }
.authentic-proof-copy h2,
.about-authentic-gallery-head h2,
.contact-location-copy h2 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    text-wrap: balance;
}
.authentic-proof-copy p,
.about-authentic-gallery-head p,
.contact-location-copy p {
    margin: 16px 0 0;
    color: var(--gitech-white);
    font-size: 14px;
    line-height: 1.75;
    opacity: .66;
}
.authentic-proof-section-banner .authentic-strip-card { height: clamp(220px, 28vw, 380px); }
.authentic-proof-section-banner .authentic-strip-card img { object-position: center center; }
.authentic-proof-section-banner .authentic-strip-card figcaption { max-width: 470px; }

/* Real photography inside existing solution-page hero frames. */
.solution-page-media > img[src*="/images/authentic/"] { opacity: 1; }
.solution-page-media:has(> img[src*="/images/authentic/"])::after { opacity: .12; }

/* About page: editorial people gallery without turning the page into a long portfolio. */
.brand-hero-visual,
.contact-hero-visual { display: grid; gap: 16px; }
.brand-hero-photo { height: 330px; }
.brand-hero-photo img { object-position: center 38%; }
.contact-hero-photo { height: 360px; }
.contact-hero-photo img { object-position: center 22%; }
.brand-hero-visual .brand-human-note,
.contact-hero-visual .contact-human-card { border-radius: 18px 18px 5px 18px; }
.brand-hero-visual .brand-human-note { padding: 24px; }
.brand-hero-visual .brand-human-note-icon { margin-bottom: 16px; }

.about-authentic-gallery {
    padding: 58px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.about-authentic-gallery-head {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(300px, .55fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 28px;
}
.about-authentic-gallery-head .section-kicker,
.about-authentic-gallery-head h2 { grid-column: 1; }
.about-authentic-gallery-head p { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
.about-authentic-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(220px, .65fr));
    gap: 14px;
}
.about-gallery-wide { height: 430px; }
.about-gallery-tall { height: 430px; }
.about-gallery-wide img { object-position: center center; }

/* Contact page: show both the human contact and the physical business. */
.contact-location-proof {
    padding: 58px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.contact-location-proof-grid {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
    gap: clamp(38px, 7vw, 96px);
    align-items: center;
}
.contact-location-photo { height: 430px; }
.contact-location-photo img { object-position: center 38%; }

/* Home CTA: the handshake becomes evidence, not decoration. */
.partner-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(180px, 260px);
    align-items: center;
}
.partner-authentic-photo {
    width: 100%;
    height: 150px;
    border-radius: 16px 16px 5px 16px;
}
.partner-authentic-photo img { object-position: center 40%; }

/* Keep the authentic imagery editorial and consistent on smaller screens. */
@media (max-width: 1100px) {
    .authentic-proof-grid,
    .authentic-proof-grid-reverse,
    .contact-location-proof-grid { grid-template-columns: 1fr; gap: 28px; }
    .authentic-proof-grid .authentic-photo-card,
    .authentic-proof-grid .authentic-photo-card-tall { height: 340px; }
    .about-authentic-gallery-grid { grid-template-columns: 1fr 1fr; }
    .about-gallery-wide { grid-column: 1 / -1; height: 320px; }
    .about-gallery-tall { height: 430px; }
    .partner-cta { grid-template-columns: 1fr auto; }
    .partner-authentic-photo { grid-column: 1 / -1; height: 180px; }
}

@media (max-width: 700px) {
    .authentic-photo-caption,
    .authentic-photo-card figcaption,
    .authentic-strip-card figcaption { left: 11px; right: 11px; bottom: 11px; padding: 11px 12px; }
    .human-photo-strip { margin-top: 30px; }
    .human-photo-strip .authentic-strip-card { height: 210px; }
    .authentic-proof-section,
    .about-authentic-gallery,
    .contact-location-proof { padding: 44px 0; }
    .authentic-proof-section-banner { padding-top: 28px; padding-bottom: 28px; }
    .authentic-proof-grid .authentic-photo-card,
    .authentic-proof-grid .authentic-photo-card-tall { height: 300px; }
    .authentic-proof-section-banner .authentic-strip-card { height: 235px; }
    .brand-hero-photo { height: 300px; }
    .contact-hero-photo { height: 330px; }
    .about-authentic-gallery-head { grid-template-columns: 1fr; gap: 12px; }
    .about-authentic-gallery-head .section-kicker,
    .about-authentic-gallery-head h2,
    .about-authentic-gallery-head p { grid-column: 1; grid-row: auto; }
    .about-authentic-gallery-grid { grid-template-columns: 1fr; }
    .about-gallery-wide,
    .about-gallery-tall { grid-column: auto; height: 330px; }
    .contact-location-photo { height: 360px; }
    .partner-cta { grid-template-columns: 1fr; }
    .partner-authentic-photo { grid-column: auto; height: 160px; }
}

/* =========================================================
   HUMAN STORY IMAGE SYSTEM
   Editorial service scenes that sit alongside the original GITECH photography.
   They use the same black / white / green framing so every page feels related.
========================================================= */
.human-scene-label {
    display: block;
    margin-bottom: 8px;
    color: var(--gitech-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}
.why-card-human .why-image img { object-position: center 34%; }
.why-card-human .why-content { border-top: 1px solid var(--gitech-white); }

.human-scenario-section {
    padding: 58px 0;
    background: var(--gitech-black);
    color: var(--gitech-white);
    border-bottom: 1px solid var(--gitech-white);
}
.human-scenario-section-compact { padding-top: 48px; padding-bottom: 48px; }
.human-scenario-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: center;
}
.human-scenario-section-reverse .human-scenario-card { order: 2; }
.human-scenario-section-reverse .human-scenario-copy { order: 1; }

.human-scenario-card {
    position: relative;
    height: clamp(330px, 31vw, 450px);
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--gitech-white);
    border-radius: 22px 22px 6px 22px;
    background: var(--gitech-black);
}
.human-scenario-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--gitech-green);
    pointer-events: none;
}
.human-scenario-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}
.human-scenario-card:hover img { transform: scale(1.02); }
.human-scenario-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    max-width: 520px;
    padding: 13px 15px;
    border: 1px solid var(--gitech-white);
    border-radius: 13px 13px 4px 13px;
    background: var(--gitech-black);
}
.human-scenario-card figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--gitech-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.human-scenario-card figcaption strong {
    display: block;
    color: var(--gitech-white);
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: 13px;
    line-height: 1.4;
}
.human-scenario-copy h2 {
    margin: 0;
    font-family: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    text-wrap: balance;
}
.human-scenario-copy > p {
    margin: 16px 0 0;
    color: var(--gitech-white);
    font-size: 14px;
    line-height: 1.75;
    opacity: .68;
}
.human-scenario-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
}
.human-scenario-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gitech-white);
    font-size: 12px;
    font-weight: 700;
}
.human-scenario-points i { color: var(--gitech-green); }
.human-scenario-copy .text-link { margin-top: 20px; }
.human-scenario-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    align-items: center;
    margin-top: 22px;
}
.human-scenario-actions .solution-text-link { min-height: 46px; }

@media (max-width: 1100px) {
    .human-scenario-grid { grid-template-columns: 1fr; gap: 28px; }
    .human-scenario-section-reverse .human-scenario-card,
    .human-scenario-section-reverse .human-scenario-copy { order: initial; }
    .human-scenario-card { height: 390px; }
}

@media (max-width: 700px) {
    .human-scenario-section,
    .human-scenario-section-compact { padding: 42px 0; }
    .human-scenario-card { height: 300px; }
    .human-scenario-card figcaption { left: 11px; right: 11px; bottom: 11px; padding: 11px 12px; }
    .human-scenario-copy h2 { font-size: 34px; letter-spacing: -1.35px; }
    .human-scenario-actions { display: grid; align-items: stretch; }
    .human-scenario-actions .gitech-btn { width: 100%; }
    .human-scenario-actions .solution-text-link { justify-content: flex-start; }
}

/* =========================================================
   HOME PAGE REFINEMENT — LIGHT PREMIUM / COMPACT
   Keeps the dark GITECH hero and signature map, while the
   working content shifts to a lighter, cleaner editorial UI.
========================================================= */
.home-hero {
    padding-bottom: 16px;
}
.hero-copy { padding-top: 44px; padding-bottom: 44px; }
.hero-visual { min-height: 540px; }
.hero-image-shell,
.hero-image-shell img { min-height: 530px; }

.trust-strip {
    padding: 8px 0 0;
    background: #ffffff;
    color: #000000;
}
.trust-grid {
    border-color: rgba(0, 0, 0, .12);
}
.trust-item {
    min-height: 82px;
    border-color: rgba(0, 0, 0, .12);
}
.trust-item small { opacity: .56; }

.home-section {
    padding-top: 78px;
    padding-bottom: 78px;
    color: #000000;
}
.home-section:not(.section-solutions)::after {
    border-bottom-color: #000000;
    opacity: .08;
}
.home-section .section-heading h2,
.home-section .africa-copy h2,
.home-section .innovation-copy h2,
.home-section .partner-cta h2 {
    color: #000000;
}
.home-section .section-heading p,
.home-section .africa-copy p,
.home-section .innovation-copy p,
.home-section .partner-cta p {
    color: #000000;
    opacity: .62;
}

.section-solutions {
    background: #ffffff;
    overflow: hidden;
}
.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .6fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 28px;
}
.section-heading-split > p {
    margin: 0 0 4px;
    max-width: 520px;
    justify-self: end;
    font-size: 15px;
    line-height: 1.7;
}
.solutions-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, .12);
}
.solutions-slider-controls > span {
    color: rgba(0, 0, 0, .58);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .2px;
}
.solutions-slider-controls > span strong {
    margin-right: 7px;
    color: var(--gitech-green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
}
.solutions-slider-buttons { display: flex; gap: 8px; }
.solution-slider-button {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.solution-slider-button:hover:not(:disabled),
.solution-slider-button:focus-visible:not(:disabled) {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}
.solution-slider-button:disabled {
    cursor: default;
    opacity: .28;
}
.solutions-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}
.solutions-slider::-webkit-scrollbar { display: none; }
.solutions-track {
    width: max-content;
    display: flex;
    gap: 18px;
    padding: 2px 2px 12px;
}
.solutions-track .solution-card {
    flex: 0 0 clamp(300px, 30vw, 420px);
    width: clamp(300px, 30vw, 420px);
    min-height: 350px;
    scroll-snap-align: start;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}
.solutions-track .solution-card::before {
    border-color: rgba(255, 255, 255, .55);
    opacity: .45;
}
.solutions-track .solution-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.08) 8%, rgba(0,0,0,.78) 88%);
    opacity: 1;
}
.solutions-track .solution-content p { color: #ffffff; opacity: .82; }

.africa-section {
    background: #f6f8f6;
}
.africa-grid {
    grid-template-columns: minmax(0, .9fr) minmax(420px, .72fr);
    gap: 74px;
}
.africa-copy { max-width: 610px; }
.africa-copy p { font-size: 15px; line-height: 1.75; }
.africa-compact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.africa-compact-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    font-size: 12px;
    font-weight: 650;
}
.africa-compact-points i { color: var(--gitech-green); font-size: 15px; }
.africa-visual { width: 100%; max-width: 540px; justify-self: end; }
.africa-cartography-card {
    padding: 15px;
    border-color: rgba(0, 0, 0, .95);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .11);
    color: #ffffff;
}
.africa-map-head { margin-bottom: 11px; }
.africa-map-title strong,
.africa-map-badge { color: #ffffff; }
.africa-map-stage { padding: 6px; }

.why-gitech-section { background: #ffffff; }
.why-gitech-section .section-heading { margin-bottom: 30px; }
.why-grid-visual { gap: 14px; }
.why-card {
    min-height: 335px;
    border-color: rgba(0, 0, 0, .12);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
}
.why-card.text {
    background: #f4f6f4;
    color: #000000;
}
.why-card.text .why-content.only {
    background: transparent;
    color: #000000;
}
.why-card.text .why-content.only p { color: #000000; opacity: .62; }
.why-card.text .text-link { color: #000000; }
.why-card.text .text-link i { color: var(--gitech-green); }

.innovation-section { background: #f6f8f6; }
.innovation-panel {
    padding: 28px;
    grid-template-columns: .88fr 1.12fr;
    gap: 38px;
    border-color: rgba(0, 0, 0, .12);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .06);
}
.innovation-media { height: 250px; }
.innovation-mini-card {
    border-top-color: rgba(0, 0, 0, .14);
    color: #000000;
}
.innovation-mini-card small { color: #000000; opacity: .55; }
.innovation-section .gitech-btn-primary,
.partner-cta-section .gitech-btn-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}
.innovation-section .gitech-btn-primary:hover,
.partner-cta-section .gitech-btn-primary:hover {
    color: #ffffff;
    border-color: var(--gitech-green);
}

.partner-cta-section {
    padding-top: 54px;
    padding-bottom: 62px;
    background: #ffffff;
}
.partner-cta {
    padding: 30px;
    border-color: rgba(0, 0, 0, .13);
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .055);
}
.partner-cta::before { left: 30px; right: 30px; }
.partner-authentic-photo {
    border-color: rgba(0, 0, 0, .15);
}

@media (max-width: 1280px) {
    .section-heading-split { gap: 42px; }
    .africa-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .africa-visual { max-width: 500px; }
    .solutions-track .solution-card {
        flex-basis: clamp(300px, 42vw, 390px);
        width: clamp(300px, 42vw, 390px);
    }
}

@media (max-width: 860px) {
    .home-section { padding-top: 58px; padding-bottom: 58px; }
    .hero-copy { padding-top: 26px; padding-bottom: 26px; }
    .hero-image-shell,
    .hero-image-shell img { min-height: 390px; }
    .trust-strip { padding-top: 0; }
    .section-heading-split { grid-template-columns: 1fr; gap: 14px; }
    .section-heading-split > p { justify-self: start; max-width: 650px; }
    .solutions-track .solution-card {
        flex-basis: min(78vw, 360px);
        width: min(78vw, 360px);
        min-height: 330px;
    }
    .africa-grid { grid-template-columns: 1fr; gap: 34px; }
    .africa-visual { max-width: 520px; justify-self: start; }
    .why-grid-visual { grid-template-columns: 1fr; }
    .why-card { min-height: 310px; }
    .innovation-panel { padding: 22px; grid-template-columns: 1fr; gap: 26px; }
    .innovation-media { height: 230px; }
    .partner-cta-section { padding-top: 42px; padding-bottom: 50px; }
}

@media (max-width: 540px) {
    .home-section { padding-top: 48px; padding-bottom: 48px; }
    .section-heading { margin-bottom: 26px; }
    .section-heading h2,
    .africa-copy h2,
    .innovation-copy h2,
    .partner-cta h2 { letter-spacing: -1.5px; }
    .solutions-slider-controls { margin-bottom: 14px; }
    .solution-slider-button { width: 42px; height: 42px; }
    .solutions-track { gap: 12px; }
    .solutions-track .solution-card {
        flex-basis: min(84vw, 330px);
        width: min(84vw, 330px);
        min-height: 320px;
    }
    .solutions-track .solution-content { padding: 20px; }
    .solutions-track .solution-content h3 { font-size: 27px; }
    .africa-compact-points { display: grid; grid-template-columns: 1fr; }
    .africa-compact-points span { width: 100%; }
    .africa-map-head { gap: 10px; }
    .innovation-mini-grid { grid-template-columns: 1fr 1fr; }
    .partner-cta { padding: 24px; }
    .partner-cta::before { left: 24px; right: 24px; }
}
.solutions-track .solution-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   HOME PREMIUM FRAME — DARK HEADER / EDITORIAL WHY / DARK FOOTER
   Home-only treatment. The core page remains light while the
   top and bottom dark planes frame the homepage consistently.
========================================================= */
body.home-page {
    background: #ffffff;
    color: #0b0d0b;
    color-scheme: light;
}

/* Dark header: same plane as the hero so navigation feels integrated. */
.home-page .gitech-utility-bar {
    background: #080a09;
    border-bottom-color: rgba(255, 255, 255, .08);
}
.home-page .gitech-utility-bar::after,
.home-page .gitech-main-header::after { display: none; }
.home-page .utility-left a,
.home-page .utility-left span,
.home-page .utility-right a {
    color: #ffffff;
    opacity: .68;
}
.home-page .utility-left a:hover,
.home-page .utility-right a:hover { color: #ffffff; opacity: 1; }

.home-page .gitech-main-header {
    background: rgba(8, 10, 9, .96);
    border-bottom-color: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.home-page .gitech-main-header.scrolled {
    box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}
.home-page .main-nav-link { color: #ffffff; }
.home-page .main-nav-link:hover,
.home-page .main-nav-link.active { color: var(--gitech-green); }
.home-page .header-search-button { color: #ffffff; }
.home-page .header-search-button:hover { color: var(--gitech-green); }
.home-page .my-gitech-button {
    background: #080a09;
    color: #ffffff;
    border-color: rgba(255, 255, 255, .20);
}
.home-page .my-gitech-button:hover,
.home-page .my-gitech-button:focus-visible {
    background: #ffffff;
    color: #080a09;
    border-color: #ffffff;
}
.home-page .mobile-nav-toggle {
    background: #080a09;
    border-color: rgba(255, 255, 255, .22);
}
.home-page .mobile-nav-toggle span { background: #ffffff; }
.home-page .solutions-dropdown {
    background: #0d100e;
    color: #ffffff;
    border-color: rgba(255, 255, 255, .13);
    box-shadow: 0 30px 76px rgba(0, 0, 0, .48);
}
.home-page .solutions-dropdown-header { border-bottom-color: rgba(255, 255, 255, .12); }
.home-page .solutions-dropdown-header p,
.home-page .solution-nav-card small { color: #ffffff; opacity: .58; }
.home-page .solution-nav-card { border-bottom-color: rgba(255, 255, 255, .10); }

/* Section 1: authentic image banner floating inside the dark top frame. */
.home-page .home-hero-banner {
    position: relative;
    padding: 20px 0 42px;
    overflow: hidden;
    background: #080a09;
    color: #111411;
}
.home-page .home-hero-banner::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    right: -260px;
    top: -330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 189, 54, .16) 0%, rgba(27, 189, 54, 0) 70%);
    pointer-events: none;
}
.home-page .home-hero-banner::after { display: none; }
.hero-banner-shell {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: #e9eee9;
    box-shadow: 0 32px 78px rgba(0, 0, 0, .34);
}
.hero-banner-shell::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 4px;
    z-index: 5;
    background: var(--gitech-green);
}
.hero-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-banner-wash {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(247, 249, 247, .30) 0%, rgba(247, 249, 247, .05) 46%, rgba(0, 0, 0, .16) 100%);
    pointer-events: none;
}
.home-hero-banner .hero-copy {
    position: relative;
    z-index: 3;
    width: min(57%, 730px);
    margin: 34px;
    padding: 42px 44px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 21px;
    background: rgba(255, 255, 255, .95);
    color: #111411;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .16);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.home-hero-banner .hero-kicker { color: #111411; margin-bottom: 18px; }
.home-hero-banner .hero-copy h1 {
    max-width: 650px;
    margin-bottom: 20px;
    color: #080a08;
    font-size: clamp(43px, 4.35vw, 68px);
    letter-spacing: -2.8px;
}
.home-hero-banner .hero-copy p {
    max-width: 610px;
    margin-bottom: 25px;
    color: #111411;
    font-size: 16px;
    line-height: 1.7;
    opacity: .68;
}
.home-hero-banner .gitech-btn-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}
.home-hero-banner .gitech-btn-primary:hover {
    color: #ffffff;
    border-color: var(--gitech-green);
}
.gitech-btn-outline-dark {
    background: #ffffff;
    color: #111411;
    border: 1px solid rgba(0, 0, 0, .22);
}
.gitech-btn-outline-dark i { color: var(--gitech-green); }
.gitech-btn-outline-dark:hover {
    transform: translateY(-2px);
    color: #000000;
    border-color: #000000;
}
.hero-banner-meta {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(610px, 50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    background: rgba(8, 10, 9, .90);
    color: #ffffff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-banner-meta > div,
.hero-banner-meta > a {
    min-height: 78px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}
.hero-banner-meta > :last-child { border-right: 0; }
.hero-banner-meta i { flex-shrink: 0; color: var(--gitech-green); font-size: 17px; }
.hero-banner-meta span { display: grid; min-width: 0; }
.hero-banner-meta strong { color: #ffffff; font-size: 12px; line-height: 1.3; }
.hero-banner-meta small { margin-top: 3px; color: #ffffff; font-size: 10px; line-height: 1.35; opacity: .62; }
.hero-banner-meta > a { justify-content: space-between; transition: background .2s ease; }
.hero-banner-meta > a:hover { background: rgba(255, 255, 255, .08); }

/* WHY GITECH: asymmetric editorial story + numbered principles. */
.why-premium-section {
    position: relative;
    padding-top: 74px;
    padding-bottom: 82px;
    overflow: hidden;
    background: #ffffff;
}
.why-premium-section::before {
    content: '';
    position: absolute;
    right: -120px;
    top: 62px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(0, 0, 0, .055);
    border-radius: 50%;
    pointer-events: none;
}
.why-premium-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 34px;
}
.why-premium-heading .section-heading { margin: 0; }
.why-premium-heading .section-heading h2 { max-width: 820px; }
.why-premium-heading > p {
    max-width: 520px;
    margin: 0 0 5px;
    color: #111411;
    font-size: 14px;
    line-height: 1.75;
    opacity: .62;
}
.why-premium-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
    min-height: 610px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .11);
    border-radius: 26px;
    background: #080a09;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .10);
}
.why-premium-story {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: #202520;
}
.why-premium-story > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.01);
    transition: transform .8s ease;
}
.why-premium-story:hover > img { transform: scale(1.035); }
.why-premium-story-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02) 30%, rgba(0, 0, 0, .83) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, 0) 58%);
}
.why-premium-story-copy {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    max-width: 610px;
    color: #ffffff;
}
.why-premium-story-copy > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--gitech-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.35px;
}
.why-premium-story-copy > span::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gitech-green);
}
.why-premium-story-copy h3 {
    max-width: 540px;
    margin: 0 0 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.08;
    letter-spacing: -1.6px;
}
.why-premium-story-copy p {
    max-width: 510px;
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.68;
    opacity: .72;
}
.why-premium-location {
    position: absolute;
    z-index: 3;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(8, 10, 9, .70);
    color: #ffffff;
    font-size: 10px;
    font-weight: 650;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.why-premium-location i { color: var(--gitech-green); }
.why-premium-principles {
    position: relative;
    display: grid;
    grid-template-rows: repeat(3, 1fr) auto;
    background: #080a09;
    color: #ffffff;
}
.why-premium-principles::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, .10);
}
.why-premium-principle {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 20px;
    align-items: start;
    padding: 28px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    transition: background .25s ease;
}
.why-premium-principle:hover { background: #101410; }
.why-premium-number {
    padding-top: 1px;
    color: rgba(255, 255, 255, .36);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
}
.why-premium-principle small {
    display: block;
    margin-bottom: 7px;
    color: var(--gitech-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}
.why-premium-principle h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 21px;
    line-height: 1.24;
    letter-spacing: -.45px;
}
.why-premium-principle p {
    max-width: 470px;
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.62;
    opacity: .56;
}
.why-premium-principle > i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: var(--gitech-green);
    font-size: 14px;
}
.why-premium-link {
    min-height: 72px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease;
}
.why-premium-link i { color: var(--gitech-green); font-size: 17px; }
.why-premium-link:hover { color: #080a09; background: var(--gitech-green); }
.why-premium-link:hover i { color: #080a09; }

/* Final homepage section sits on a dark foundation so it flows into footer. */
.home-page .innovation-section {
    position: relative;
    padding-top: 66px;
    padding-bottom: 78px;
    background: linear-gradient(180deg, #f6f8f6 0%, #f6f8f6 32%, #080a09 32%, #080a09 100%);
}
.home-page .innovation-section::after { display: none; }
.home-page .innovation-panel {
    position: relative;
    z-index: 1;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .11);
    background: #ffffff;
    box-shadow: 0 28px 64px rgba(0, 0, 0, .18);
}
.home-page .innovation-panel::after {
    content: '';
    position: absolute;
    right: 30px;
    bottom: -1px;
    width: 92px;
    height: 3px;
    background: var(--gitech-green);
}

/* Dark footer continuing directly from the final section. */
.home-page .gitech-footer {
    position: relative;
    margin-top: 0;
    padding-top: 46px;
    background: #080a09;
    color: #ffffff;
    border-top: 0;
}
.home-page .gitech-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(calc(100% - 48px), 1460px);
    transform: translateX(-50%);
    border-top: 1px solid rgba(255, 255, 255, .10);
}
.home-page .footer-lead { border-bottom-color: rgba(255, 255, 255, .12); }
.home-page .footer-lead p,
.home-page .footer-brand p,
.home-page .footer-tag,
.home-page .footer-column h2 { color: #ffffff; }
.home-page .footer-column a,
.home-page .footer-column address { color: #ffffff; opacity: .60; }
.home-page .footer-column a:hover { color: var(--gitech-green); opacity: 1; }
.home-page .footer-bottom {
    color: #ffffff;
    border-top-color: rgba(255, 255, 255, .12);
    opacity: .56;
}

@media (max-width: 1180px) {
    .home-hero-banner .hero-copy { width: min(65%, 700px); }
    .hero-banner-meta { width: min(560px, 55%); }
    .why-premium-heading { grid-template-columns: 1fr; gap: 18px; }
    .why-premium-heading > p { max-width: 760px; }
    .why-premium-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); }
}

@media (max-width: 960px) {
    .why-premium-grid { grid-template-columns: 1fr; }
    .why-premium-story { min-height: 520px; }
    .why-premium-principles::before { display: none; }
}

@media (max-width: 860px) {
    .home-page .gitech-utility-bar { display: none; }
    .home-page .home-hero-banner { padding-top: 14px; padding-bottom: 30px; }
    .hero-banner-shell {
        min-height: 0;
        display: grid;
        border-radius: 20px;
    }
    .hero-banner-image {
        position: relative;
        inset: auto;
        height: 300px;
        object-position: center center;
    }
    .hero-banner-wash { display: none; }
    .home-hero-banner .hero-copy {
        width: auto;
        margin: 0;
        padding: 30px;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, .08);
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .home-hero-banner .hero-copy h1 { font-size: clamp(39px, 8vw, 58px); }
    .hero-banner-meta {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        grid-template-columns: 1fr 1fr;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .10);
        border-radius: 0;
        background: #080a09;
        color: #ffffff;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .hero-banner-meta > div,
    .hero-banner-meta > a {
        border-right-color: rgba(255, 255, 255, .10);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    .hero-banner-meta > a { grid-column: 1 / -1; }
    .hero-banner-meta strong,
    .hero-banner-meta small { color: #ffffff; }
    .hero-banner-meta small { opacity: .58; }
    .hero-banner-meta > a:hover { background: rgba(255, 255, 255, .06); }

    .why-premium-section { padding-top: 58px; padding-bottom: 62px; }
    .why-premium-story-copy { left: 28px; right: 28px; bottom: 28px; }
    .why-premium-principle { padding: 25px 26px; }
    .why-premium-link { padding: 0 26px; }

    .home-page .innovation-section {
        padding-top: 54px;
        padding-bottom: 62px;
        background: linear-gradient(180deg, #f6f8f6 0%, #f6f8f6 24%, #080a09 24%, #080a09 100%);
    }
}

@media (max-width: 620px) {
    .why-premium-grid { border-radius: 18px; }
    .why-premium-story { min-height: 430px; }
    .why-premium-location {
        top: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
        font-size: 9px;
    }
    .why-premium-story-copy { left: 22px; right: 22px; bottom: 22px; }
    .why-premium-story-copy h3 { font-size: 31px; letter-spacing: -1.1px; }
    .why-premium-principle {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
        padding: 23px 21px;
    }
    .why-premium-principle > i { display: none; }
    .why-premium-link { min-height: 66px; padding: 0 21px; }
}

@media (max-width: 540px) {
    .home-page .home-hero-banner { padding-top: 10px; padding-bottom: 24px; }
    .hero-banner-shell { border-radius: 16px; }
    .hero-banner-image { height: 235px; }
    .home-hero-banner .hero-copy { padding: 25px 22px 27px; }
    .home-hero-banner .hero-kicker { font-size: 9px; letter-spacing: 1px; }
    .home-hero-banner .hero-copy h1 {
        margin-bottom: 16px;
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -1.8px;
    }
    .home-hero-banner .hero-copy p { font-size: 14px; line-height: 1.65; }
    .hero-banner-meta { grid-template-columns: 1fr; }
    .hero-banner-meta > div,
    .hero-banner-meta > a {
        grid-column: auto;
        min-height: 66px;
        border-right: 0;
    }
    .why-premium-heading { margin-bottom: 26px; }
    .why-premium-heading > p { font-size: 13px; line-height: 1.65; }
    .home-page .innovation-panel { padding: 24px; }
    .home-page .gitech-footer { padding-top: 42px; }
}



/* =========================================================
   HOMEPAGE REFINEMENT - LIGHT, HUMAN, PREMIUM
========================================================= */
body.home-page {
    background: #ffffff;
    color: #111411;
    color-scheme: light;
}

.home-page .gitech-utility-bar {
    background: #f7f8f6;
    border-bottom-color: rgba(0, 0, 0, .07);
}
.home-page .gitech-utility-bar::after,
.home-page .gitech-main-header::after,
.home-page .home-hero-banner::before { display: none; }
.home-page .utility-left a,
.home-page .utility-left span,
.home-page .utility-right a {
    color: #111411;
    opacity: .68;
}
.home-page .utility-left a:hover,
.home-page .utility-right a:hover { color: #000000; opacity: 1; }

.home-page .gitech-main-header {
    background: #ffffff;
    border-bottom-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}
.home-page .gitech-main-header.scrolled {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}
.home-page .main-nav-link,
.home-page .header-search-button { color: #111411; }
.home-page .main-nav-link:hover,
.home-page .main-nav-link.active,
.home-page .header-search-button:hover { color: var(--gitech-green); }
.home-page .my-gitech-button {
    background: #ffffff;
    color: #111411;
    border-color: rgba(0, 0, 0, .15);
}
.home-page .my-gitech-button:hover,
.home-page .my-gitech-button:focus-visible {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}
.home-page .mobile-nav-toggle {
    background: #ffffff;
    border-color: rgba(0, 0, 0, .16);
}
.home-page .mobile-nav-toggle span { background: #000000; }
.home-page .solutions-dropdown {
    background: #ffffff;
    color: #111411;
    border-color: rgba(0, 0, 0, .11);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
}
.home-page .solutions-dropdown-header { border-bottom-color: rgba(0, 0, 0, .08); }
.home-page .solutions-dropdown-header p,
.home-page .solution-nav-card small { color: #111411; opacity: .58; }
.home-page .solution-nav-card { border-bottom-color: rgba(0, 0, 0, .08); }

.home-page .home-hero-banner {
    padding: 24px 0 18px;
    background: #ffffff;
    color: #111411;
}
.home-page .home-hero-banner::after { display: none; }
.home-page .hero-banner-shell {
    min-height: 540px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 26px;
    background: #f3f5f2;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}
.home-page .hero-banner-shell::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 4px;
    z-index: 3;
    background: var(--gitech-green);
}
.home-page .hero-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.home-page .hero-banner-wash {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.68) 26%, rgba(255,255,255,.24) 52%, rgba(255,255,255,0) 72%);
    pointer-events: none;
}
.home-page .home-hero-banner .hero-copy {
    position: relative;
    z-index: 3;
    width: min(56%, 720px);
    margin: 34px;
    padding: 42px 44px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    color: #111411;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
}
.home-page .home-hero-banner .hero-kicker { color: #111411; margin-bottom: 18px; }
.home-page .home-hero-banner .hero-copy h1 {
    max-width: 680px;
    margin-bottom: 18px;
    color: #080a08;
    font-size: clamp(42px, 4.5vw, 68px);
    letter-spacing: -2.6px;
}
.home-page .home-hero-banner .hero-copy p {
    max-width: 600px;
    margin-bottom: 24px;
    color: #111411;
    font-size: 16px;
    line-height: 1.72;
    opacity: .72;
}
.home-page .home-hero-banner .gitech-btn-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}
.home-page .home-hero-banner .gitech-btn-primary:hover {
    color: #ffffff;
    border-color: var(--gitech-green);
}
.home-page .gitech-btn-outline-dark {
    background: #ffffff;
    color: #111411;
    border: 1px solid rgba(0, 0, 0, .18);
}
.home-page .gitech-btn-outline-dark i { color: var(--gitech-green); }
.home-page .gitech-btn-outline-dark:hover {
    transform: translateY(-2px);
    color: #000000;
    border-color: #000000;
}
.home-page .hero-banner-meta {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(610px, 50%);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
    color: #111411;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}
.home-page .hero-banner-meta > div,
.home-page .hero-banner-meta > a {
    min-height: 78px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(0, 0, 0, .08);
}
.home-page .hero-banner-meta > :last-child { border-right: 0; }
.home-page .hero-banner-meta i { flex-shrink: 0; color: var(--gitech-green); font-size: 17px; }
.home-page .hero-banner-meta span { display: grid; min-width: 0; }
.home-page .hero-banner-meta strong { color: #111411; font-size: 12px; line-height: 1.3; }
.home-page .hero-banner-meta small { margin-top: 3px; color: #111411; font-size: 10px; line-height: 1.35; opacity: .62; }
.home-page .hero-banner-meta > a { justify-content: space-between; transition: background .2s ease; }
.home-page .hero-banner-meta > a:hover { background: #f5f7f5; }

.why-signature-section {
    padding-top: 74px;
    padding-bottom: 82px;
    background: #ffffff;
}
.why-signature-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 34px;
}
.why-signature-header .section-heading { margin: 0; }
.why-signature-header p {
    max-width: 540px;
    margin: 0 0 4px;
    color: #111411;
    font-size: 15px;
    line-height: 1.75;
    opacity: .64;
}
.why-signature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, .86fr);
    gap: 22px;
    align-items: stretch;
}
.why-signature-story,
.why-signature-aside {
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .06);
}
.why-signature-story {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(280px, .86fr);
    min-height: 460px;
}
.why-signature-media {
    min-height: 100%;
    background: #eef2ee;
}
.why-signature-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.why-signature-copy {
    padding: 34px 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}
.why-signature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gitech-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.35px;
}
.why-signature-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gitech-green);
}
.why-signature-copy h3 {
    margin: 0;
    color: #080a09;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.4px;
}
.why-signature-copy p {
    margin: 0;
    color: #111411;
    font-size: 14px;
    line-height: 1.76;
    opacity: .72;
}
.why-signature-highlight {
    padding: 18px 20px;
    border-radius: 18px;
    background: #f5f7f5;
    border: 1px solid rgba(0, 0, 0, .06);
}
.why-signature-highlight strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #080a09;
}
.why-signature-highlight small {
    display: block;
    color: #111411;
    font-size: 12px;
    line-height: 1.65;
    opacity: .68;
}
.why-signature-aside {
    padding: 12px;
    display: grid;
    gap: 12px;
}
.why-signature-note {
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border-radius: 18px;
    background: #f7f8f6;
}
.why-signature-note span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #080a09;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 750;
}
.why-signature-note h3 {
    margin: 1px 0 8px;
    color: #080a09;
    font-size: 21px;
}
.why-signature-note p {
    margin: 0;
    color: #111411;
    font-size: 13px;
    line-height: 1.72;
    opacity: .68;
}
.why-signature-link {
    min-height: 68px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    background: #080a09;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
}
.why-signature-link i { color: var(--gitech-green); font-size: 16px; }
.why-signature-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.home-page .innovation-section {
    background: #f6f8f6;
}
.home-page .innovation-section::after { display: none; }
.home-page .innovation-panel {
    padding: 28px;
    grid-template-columns: .88fr 1.12fr;
    gap: 38px;
    border-color: rgba(0, 0, 0, .10);
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .06);
}
.home-page .innovation-panel::after { display: none; }
.home-page .gitech-footer {
    padding-top: 58px;
    background: #f7f8f6;
    color: #111411;
    border-top-color: rgba(0, 0, 0, .08);
}
.home-page .gitech-footer::before { display: none; }
.home-page .footer-lead { border-bottom-color: rgba(0, 0, 0, .10); }
.home-page .footer-lead p,
.home-page .footer-brand p,
.home-page .footer-tag,
.home-page .footer-column h2 { color: #111411; }
.home-page .footer-column a,
.home-page .footer-column address { color: #111411; opacity: .64; }
.home-page .footer-column a:hover { color: var(--gitech-green); opacity: 1; }
.home-page .footer-bottom {
    color: #111411;
    border-top-color: rgba(0, 0, 0, .10);
    opacity: .64;
}

@media (max-width: 1180px) {
    .home-page .home-hero-banner .hero-copy { width: min(63%, 700px); }
    .home-page .hero-banner-meta { width: min(560px, 56%); }
    .why-signature-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-signature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .home-page .gitech-utility-bar { display: none; }
    .home-page .home-hero-banner { padding-top: 16px; }
    .home-page .hero-banner-shell {
        min-height: 0;
        display: grid;
        border-radius: 20px;
    }
    .home-page .hero-banner-image {
        position: relative;
        inset: auto;
        height: 300px;
    }
    .home-page .hero-banner-wash { display: none; }
    .home-page .home-hero-banner .hero-copy {
        width: auto;
        margin: 0;
        padding: 30px;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, .08);
        border-radius: 0;
        box-shadow: none;
    }
    .home-page .home-hero-banner .hero-copy h1 { font-size: clamp(39px, 8vw, 58px); }
    .home-page .hero-banner-meta {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        grid-template-columns: 1fr 1fr;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, .08);
        border-radius: 0;
        background: #f7f8f6;
        box-shadow: none;
    }
    .home-page .hero-banner-meta > div,
    .home-page .hero-banner-meta > a {
        border-right-color: rgba(0, 0, 0, .08);
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }
    .home-page .hero-banner-meta > a { grid-column: 1 / -1; }
    .why-signature-section { padding-top: 58px; padding-bottom: 60px; }
    .why-signature-story {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .why-signature-media { min-height: 290px; }
    .why-signature-copy { padding: 26px; }
    .home-page .innovation-panel { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
}

@media (max-width: 540px) {
    .home-page .home-hero-banner { padding-top: 10px; padding-bottom: 20px; }
    .home-page .hero-banner-shell { border-radius: 16px; }
    .home-page .hero-banner-image { height: 235px; }
    .home-page .home-hero-banner .hero-copy { padding: 24px 22px 26px; }
    .home-page .home-hero-banner .hero-kicker { font-size: 9px; letter-spacing: 1px; }
    .home-page .home-hero-banner .hero-copy h1 {
        font-size: 37px;
        line-height: 1.04;
        letter-spacing: -1.7px;
    }
    .home-page .home-hero-banner .hero-copy p { font-size: 14px; line-height: 1.66; }
    .home-page .hero-banner-meta { grid-template-columns: 1fr; }
    .home-page .hero-banner-meta > div,
    .home-page .hero-banner-meta > a {
        grid-column: auto;
        min-height: 66px;
        border-right: 0;
    }
    .why-signature-copy h3 { font-size: 31px; }
    .why-signature-note {
        grid-template-columns: 1fr;
    }
    .why-signature-note span { margin-bottom: 2px; }
    .home-page .gitech-footer { padding-top: 42px; }
}


/* =========================================================
   GITECH FULL SITE LIGHT PREMIUM SYSTEM
   Human, editorial, restrained. Authentic photography only.
========================================================= */
body:not(.home-page) {
    background: #ffffff;
    color: #111411;
    color-scheme: light;
}

/* Header and footer share the same light editorial language site-wide. */
.gitech-utility-bar {
    background: #f7f8f6;
    border-bottom-color: rgba(0, 0, 0, .07);
}
.gitech-utility-bar::after,
.gitech-main-header::after { display: none; }
.utility-left a,
.utility-left span,
.utility-right a { color: #111411; opacity: .68; }
.utility-left a:hover,
.utility-right a:hover { color: #000000; opacity: 1; }
.gitech-main-header {
    background: #ffffff;
    border-bottom-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}
.gitech-main-header.scrolled { box-shadow: 0 12px 28px rgba(0, 0, 0, .06); }
.main-nav-link,
.header-search-button { color: #111411; }
.main-nav-link:hover,
.main-nav-link.active,
.header-search-button:hover { color: var(--gitech-green); }
.my-gitech-button {
    background: #ffffff;
    color: #111411;
    border-color: rgba(0, 0, 0, .15);
}
.my-gitech-button:hover,
.my-gitech-button:focus-visible {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}
.mobile-nav-toggle {
    background: #ffffff;
    border-color: rgba(0, 0, 0, .16);
}
.mobile-nav-toggle span { background: #000000; }
.solutions-dropdown {
    background: #ffffff;
    color: #111411;
    border-color: rgba(0, 0, 0, .10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
}
.solutions-dropdown-header { border-bottom-color: rgba(0, 0, 0, .08); }
.solutions-dropdown-header p,
.solution-nav-card small { color: #111411; opacity: .58; }
.solution-nav-card { border-bottom-color: rgba(0, 0, 0, .08); }

/* Solution page hero */
.solution-page-hero,
.brand-page-hero {
    background: #ffffff;
    color: #111411;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.solution-page-hero-compact,
.brand-page-hero { padding-top: 48px; padding-bottom: 58px; }
.solution-breadcrumb { color: #111411; }
.solution-breadcrumb a { color: #111411; opacity: .50; }
.solution-breadcrumb strong { color: #111411; }
.solution-page-copy h1,
.brand-page-copy h1 { color: #080a09; }
.solution-page-copy > p,
.brand-page-copy > p { color: #111411; opacity: .68; }
.solution-text-link { color: #111411; }
.solution-value-line { border-top-color: rgba(0, 0, 0, .10); }
.solution-value-line span { color: #111411; opacity: .66; }
.solution-page-media,
.brand-hero-photo,
.contact-hero-photo {
    border-color: rgba(0, 0, 0, .10);
    border-radius: 24px;
    background: #eef2ee;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .07);
}
.solution-page-media::after { display: none; }
.solution-page-media img { opacity: 1; }
.solution-media-note {
    border-color: rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .95);
    color: #111411;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}
.solution-media-note strong { color: #080a09; }
.solution-media-note span { color: #111411; opacity: .72; }

/* Main content sections */
.solution-compact-section,
.solution-gateway-section,
.solution-story-section,
.solution-compact-faq,
.solution-compact-process,
.brand-story-section,
.contact-options-section,
.contact-context-section,
.brand-values-strip,
.authentic-proof-section,
.human-scenario-section,
.about-authentic-gallery,
.contact-location-proof {
    background: #ffffff;
    color: #111411;
    border-bottom-color: rgba(0, 0, 0, .08);
}
.solution-compact-section:nth-of-type(even),
.solution-gateway-section,
.authentic-proof-section,
.human-scenario-section,
.contact-location-proof,
.about-authentic-gallery {
    background: #f7f8f6;
}
.solution-compact-head > p,
.solution-gateway-copy > p,
.solution-compact-faq-grid > div:first-child > p,
.solution-capability-grid p,
.solution-story-card p,
.solution-gateway-points span,
.solution-process-inline p,
.solution-disclaimer,
.brand-story-copy p,
.contact-context-copy > p,
.brand-values-grid span {
    color: #111411;
    opacity: .64;
}
.solution-capability-grid,
.solution-gateway-points,
.solution-process-inline,
.solution-faq-list,
.brand-service-rail {
    border-color: rgba(0, 0, 0, .10);
}
.solution-capability-grid article,
.solution-gateway-points article,
.solution-process-inline article,
.solution-faq-list details,
.brand-service-rail a {
    border-color: rgba(0, 0, 0, .10);
}
.solution-capability-grid article {
    background: #ffffff;
}
.solution-story-grid { gap: 18px; }
.solution-story-card {
    border-color: rgba(0, 0, 0, .10);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .045);
}
.solution-story-card h2,
.solution-capability-grid h3,
.solution-gateway-points strong,
.solution-process-inline strong { color: #080a09; }
.solution-gateway-link { color: #080a09; }
.solution-faq-list summary { color: #111411; }
.solution-faq-list details p { color: #111411; opacity: .66; }

/* Human proof sections */
.authentic-photo-card,
.authentic-strip-card,
.human-scenario-card {
    border-color: rgba(0, 0, 0, .10);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .055);
}
.authentic-proof-copy h2,
.human-scenario-copy h2,
.contact-location-copy h2,
.about-authentic-gallery h2 { color: #080a09; }
.authentic-proof-copy p,
.human-scenario-copy p,
.contact-location-copy p,
.about-authentic-gallery p { color: #111411; opacity: .68; }

/* About and Contact cards */
.brand-human-note,
.contact-human-card {
    border-color: rgba(0, 0, 0, .10);
    background: #ffffff;
    color: #111411;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .05);
}
.brand-human-note p,
.contact-human-card > p { color: #111411; opacity: .66; }
.brand-origin-line { border-top-color: rgba(0, 0, 0, .10); }
.brand-values-grid article { border-right-color: rgba(0, 0, 0, .10); }
.brand-values-grid strong { color: #080a09; }
.contact-option {
    border-color: rgba(0, 0, 0, .10);
    background: #ffffff;
    color: #111411;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}
.contact-option strong { color: #080a09; }
.contact-option small { color: #111411; opacity: .62; }
.contact-human-link { border-color: rgba(0, 0, 0, .10); color: #111411; }
.contact-human-link strong { color: #080a09; }

/* Related and application cards */
.solution-related-section { background: #f7f8f6; color: #111411; }
.solution-related-grid > a,
.app-product-card {
    border-color: rgba(0, 0, 0, .10);
    background: #ffffff;
    color: #111411;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .045);
}
.solution-related-grid > a small,
.app-product-card p { color: #111411; opacity: .62; }

/* Footer remains light so each page closes naturally. */
.gitech-footer {
    padding-top: 58px;
    background: #f7f8f6;
    color: #111411;
    border-top-color: rgba(0, 0, 0, .08);
}
.gitech-footer::before { display: none; }
.footer-lead { border-bottom-color: rgba(0, 0, 0, .10); }
.footer-lead p,
.footer-brand p,
.footer-tag,
.footer-column h2 { color: #111411; }
.footer-column a,
.footer-column address { color: #111411; opacity: .64; }
.footer-column a:hover { color: var(--gitech-green); opacity: 1; }
.footer-bottom { color: #111411; border-top-color: rgba(0, 0, 0, .10); opacity: .64; }

/* Keep the authentic photography natural: no filters, tinting or artificial glows. */
.solution-page-media img,
.authentic-photo-card img,
.authentic-strip-card img,
.human-scenario-card img,
.brand-hero-photo img,
.contact-hero-photo img {
    filter: none !important;
    mix-blend-mode: normal !important;
}

@media (max-width: 900px) {
    .solution-page-hero-compact,
    .brand-page-hero { padding-top: 32px; padding-bottom: 42px; }
    .solution-page-media,
    .brand-hero-photo,
    .contact-hero-photo { border-radius: 18px; }
}

/* =========================================================
   FULL SITE CONTRAST AUDIT PASS
   Keep bright brand green for graphical accents; use a deeper
   green for small/medium text on light surfaces.
========================================================= */
:root {
    --gitech-green-text: #117f28;
}

/* Shared light-shell navigation and footer text accents. */
.main-nav-link:hover,
.main-nav-link.active,
.header-search-button:hover,
.solutions-dropdown-header small,
.solution-nav-card:hover,
.my-gitech-copy small,
.footer-lead a,
.footer-tag strong {
    color: var(--gitech-green-text);
}

/* Preserve the floating support panel as a dark, high-contrast utility. */
.support-menu {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .20);
    background: #080a09;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .30);
}
.support-menu-intro { border-bottom-color: rgba(255, 255, 255, .14); }
.support-menu-intro strong,
.support-menu strong { color: #ffffff; }
.support-menu-intro small,
.support-menu small { color: #ffffff; opacity: .68; }
.support-menu a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, .12);
}
.support-menu a:hover,
.support-menu a:focus-visible { color: var(--gitech-green); }

/* Light-page brand text must meet readable contrast. */
body.home-page .section-kicker,
body.home-page .home-hero-banner .hero-copy h1 span,
body.home-page .section-heading h2 span,
body.home-page .africa-copy h2 span,
body.home-page .innovation-copy h2 span,
body.home-page .solutions-slider-controls > span strong,
body.home-page .why-signature-tag,
body.home-page .text-link,
body:not(.home-page) .section-kicker,
body:not(.home-page) .solution-page-kicker,
body:not(.home-page) .solution-page-copy h1 span,
body:not(.home-page) .brand-page-copy h1 span,
body:not(.home-page) .brand-human-note > span,
body:not(.home-page) .contact-human-card > span,
body:not(.home-page) .contact-africa-note > span,
body:not(.home-page) .brand-story-copy h2 span,
body:not(.home-page) .solution-story-card span,
body:not(.home-page) .app-product-card > span,
body:not(.home-page) .contact-option span,
body:not(.home-page) .contact-human-link small,
body:not(.home-page) .text-link {
    color: var(--gitech-green-text);
}
body.home-page .section-kicker::before,
body:not(.home-page) .section-kicker::before { border-color: var(--gitech-green-text); }

/* Breadcrumbs were intentionally subtle but became too faint on white. */
body:not(.home-page) .solution-breadcrumb a { opacity: .62; }
body:not(.home-page) .solution-breadcrumb span { opacity: .52; }
body:not(.home-page) .solution-breadcrumb a:hover { color: var(--gitech-green-text); opacity: 1; }

/* Human scenario sections are now light: remove inherited white copy. */
body:not(.home-page) .human-scenario-copy h2,
body:not(.home-page) .human-scenario-copy > p,
body:not(.home-page) .human-scenario-points span,
body:not(.home-page) .human-scenario-actions .solution-text-link {
    color: #111411;
}
body:not(.home-page) .human-scenario-copy > p { opacity: .68; }
body:not(.home-page) .human-scenario-actions .solution-text-link:hover { color: var(--gitech-green-text); }

/* Apps cards are light in the new design; their links were still white. */
body:not(.home-page) .app-product-card a { color: #111411; }
body:not(.home-page) .app-product-card a:hover { color: var(--gitech-green-text); }

/* About service rail follows the light story section. */
body:not(.home-page) .brand-service-rail small {
    color: #111411;
    opacity: .64;
}
body:not(.home-page) .brand-service-rail a:hover { color: var(--gitech-green-text); }

/* Contact sections: old white copy on the new white/off-white backgrounds. */
body:not(.home-page) .contact-options-head > p,
body:not(.home-page) .contact-context-points span,
body:not(.home-page) .contact-africa-note p,
body:not(.home-page) .contact-africa-note > a {
    color: #111411;
}
body:not(.home-page) .contact-options-head > p,
body:not(.home-page) .contact-africa-note p { opacity: .68; }
body:not(.home-page) .contact-africa-note > a:hover { color: var(--gitech-green-text); }

/* Text links on pale backgrounds use the readable green tone. */
body.home-page .footer-lead a,
body.home-page .footer-tag strong,
body:not(.home-page) .footer-lead a,
body:not(.home-page) .footer-tag strong {
    color: var(--gitech-green-text);
}
body:not(.home-page) .solution-process-inline article > span {
    color: var(--gitech-green-text);
}

/* Search stays deliberately dark on the light site shell. */
.search-panel { color: #ffffff; }
.search-panel-top h2,
.search-quick-links span,
.search-quick-links a { color: #ffffff; }
.search-quick-links a:hover { color: var(--gitech-green); }

/* Related-services rail is light in the full-site system. */
body:not(.home-page) .solution-related-head > a { color: #111411; }
body:not(.home-page) .solution-related-head > a:hover { color: var(--gitech-green-text); }
body:not(.home-page) .solution-related-grid {
    border-top-color: rgba(0, 0, 0, .10);
    border-left-color: rgba(0, 0, 0, .10);
}
body:not(.home-page) .solution-related-grid > a:hover { color: var(--gitech-green-text); }

/* =========================================================
   FINAL LIVE AUDIT - TYPOGRAPHY, NAV, CAREERS & LEGAL
========================================================= */
:root {
    --gitech-body-font: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
    --gitech-display-font: 'Plus Jakarta Sans', 'Source Sans 3', sans-serif;
    --gitech-ink: #101310;
    --gitech-muted: #626a63;
    --gitech-surface: #f6f8f6;
    --gitech-line: rgba(12, 16, 12, .11);
}

body {
    font-family: var(--gitech-body-font);
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: -.01em;
}

h1, h2, h3, h4, h5,
.main-nav-link,
.section-kicker,
.hero-kicker,
.mobile-menu-intro {
    font-family: var(--gitech-display-font);
}

p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
button, input, textarea, select { font-family: inherit; }

/* About GITECH desktop dropdown */
.about-nav-dropdown .about-dropdown {
    width: min(560px, 86vw);
    left: 50%;
}
.about-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
}
.about-dropdown-grid .solution-nav-card {
    min-height: 82px;
}
.about-dropdown-grid .solution-nav-card:last-child { border-bottom: 0; }

/* About GITECH mobile dropdown */
.mobile-about-details { border: 0; }
.mobile-about-details > summary {
    list-style: none;
    cursor: pointer;
}
.mobile-about-details > summary::-webkit-details-marker { display: none; }
.mobile-about-details > summary i { transition: transform .2s ease; }
.mobile-about-details[open] > summary i { transform: rotate(180deg); }
.mobile-about-links {
    margin: -2px 0 8px 14px;
    padding: 6px 0 6px 18px;
    display: grid;
    gap: 4px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}
.mobile-about-links > a {
    min-height: 62px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #ffffff;
}
.mobile-about-links > a > i { color: var(--gitech-green); margin-top: 2px; }
.mobile-about-links strong { display: block; font-size: 13px; }
.mobile-about-links small { display: block; margin-top: 2px; font-size: 11px; line-height: 1.45; opacity: .58; }

/* Coming-soon experience for dedicated GITECH platforms. */
.gitech-coming-soon {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}
.gitech-coming-soon.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.coming-soon-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(5, 7, 5, .74);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.coming-soon-panel {
    position: relative;
    z-index: 2;
    width: min(760px, 94vw);
    max-height: min(800px, 92vh);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 26px;
    outline: 0;
    background: #ffffff;
    color: var(--gitech-ink);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
}
.coming-soon-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gitech-green);
}
.coming-soon-topline {
    min-height: 62px;
    padding: 0 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--gitech-line);
}
.coming-soon-topline > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4e5650;
    font-family: var(--gitech-display-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.25px;
}
.coming-soon-topline > span i { color: var(--gitech-green); font-size: 14px; }
.coming-soon-close {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gitech-line);
    border-radius: 50%;
    background: #ffffff;
    color: #101310;
}
.coming-soon-close:hover { border-color: #000000; }
.coming-soon-body {
    padding: 32px 34px 26px;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 22px;
}
.coming-soon-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(27, 189, 54, .35);
    border-radius: 20px;
    background: #f3fbf4;
    color: var(--gitech-green);
    font-size: 28px;
}
.coming-soon-copy small {
    display: block;
    margin-bottom: 8px;
    color: #118128;
    font-family: var(--gitech-display-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}
.coming-soon-copy h2 {
    margin: 0 0 12px;
    color: #080a08;
    font-size: clamp(29px, 4vw, 43px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}
.coming-soon-copy > p {
    max-width: 580px;
    margin: 0;
    color: #485049;
    font-size: 15px;
    line-height: 1.72;
}
.coming-soon-destination {
    margin-top: 17px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.coming-soon-destination span {
    color: #727a73;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
.coming-soon-destination strong {
    color: #101310;
    font-size: 13px;
}
.coming-soon-features {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.coming-soon-features span {
    min-height: 60px;
    padding: 11px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid var(--gitech-line);
    border-radius: 14px;
    background: var(--gitech-surface);
    color: #3f4740;
    font-size: 12px;
    line-height: 1.45;
}
.coming-soon-features i { color: var(--gitech-green); margin-top: 1px; }
.coming-soon-actions {
    padding: 18px 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid var(--gitech-line);
}
.coming-soon-secondary,
.coming-soon-primary {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 750;
}
.coming-soon-secondary {
    border: 1px solid var(--gitech-line);
    background: #ffffff;
    color: #111411;
}
.coming-soon-primary {
    border: 1px solid #000000;
    background: #000000;
    color: #ffffff;
}
.coming-soon-primary i { color: var(--gitech-green); }
.coming-soon-note {
    margin: 0;
    padding: 0 34px 26px;
    color: #6d746e;
    font-size: 11px;
    line-height: 1.55;
}

/* Careers */
.editorial-page-hero,
.career-values-section,
.career-culture-section,
.career-opportunities-section,
.legal-hero,
.legal-content-section,
.not-found-section {
    background: #ffffff;
    color: var(--gitech-ink);
}
.career-hero { padding: 38px 0 72px; }
.career-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .83fr) minmax(520px, 1.17fr);
    gap: 34px;
    align-items: stretch;
}
.career-hero-copy {
    padding: 56px 22px 56px 0;
    align-self: center;
}
.career-hero-copy h1 {
    max-width: 720px;
    margin: 12px 0 20px;
    color: #080a08;
    font-size: clamp(48px, 5.3vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
}
.career-hero-copy h1 span { color: #118128; }
.career-hero-copy p {
    max-width: 650px;
    margin: 0;
    color: #4d554e;
    font-size: 18px;
    line-height: 1.72;
}
.career-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.career-hero-photo {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--gitech-line);
    border-radius: 26px;
    background: #edf1ed;
}
.career-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.career-hero-photo figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: min(390px, calc(100% - 44px));
    padding: 17px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}
.career-hero-photo figcaption span { display: block; color: #118128; font-size: 9px; font-weight: 800; letter-spacing: 1.2px; }
.career-hero-photo figcaption strong { display: block; margin-top: 4px; color: #101310; font-size: 15px; }
.career-values-section { padding: 76px 0; background: #f6f8f6; }
.career-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
    gap: 58px;
    align-items: end;
    margin-bottom: 32px;
}
.career-section-heading h2,
.career-culture-copy h2,
.career-opportunities-card h2 {
    margin: 8px 0 0;
    color: #080a08;
    font-size: clamp(35px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}
.career-section-heading h2 span,
.career-culture-copy h2 span { color: #118128; }
.career-section-heading > p { margin: 0; color: #59605a; font-size: 15px; line-height: 1.75; }
.career-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.career-value {
    min-height: 250px;
    padding: 24px;
    border: 1px solid var(--gitech-line);
    border-radius: 20px;
    background: #ffffff;
}
.career-value > span { color: #118128; font-family: var(--gitech-display-font); font-size: 11px; font-weight: 800; }
.career-value h3 { margin: 36px 0 9px; color: #111411; font-size: 23px; }
.career-value p { margin: 0; color: #5c645d; font-size: 14px; line-height: 1.7; }
.career-culture-section { padding: 78px 0; }
.career-culture-card {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--gitech-line);
    border-radius: 26px;
}
.career-culture-photo { min-height: 560px; margin: 0; background: #eff2ef; }
.career-culture-photo img { width: 100%; height: 100%; object-fit: cover; }
.career-culture-copy { padding: 48px; align-self: center; }
.career-culture-copy > p { margin: 18px 0 24px; color: #555d56; font-size: 16px; line-height: 1.76; }
.career-culture-points { display: grid; gap: 12px; }
.career-culture-points > div { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 10px; color: #4d554e; font-size: 14px; line-height: 1.65; }
.career-culture-points i { color: var(--gitech-green); margin-top: 3px; }
.career-culture-points strong { color: #111411; }
.career-opportunities-section { padding: 0 0 82px; }
.career-opportunities-card {
    padding: 36px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    border: 1px solid var(--gitech-line);
    border-radius: 24px;
    background: #f6f8f6;
}
.career-opportunities-card h2 { font-size: clamp(30px, 3.6vw, 44px); }
.career-opportunities-card p { max-width: 760px; margin: 12px 0 0; color: #59605a; font-size: 15px; }
.career-opportunities-actions { display: grid; justify-items: end; gap: 12px; }
.career-text-link { display: inline-flex; align-items: center; gap: 7px; color: #111411; font-size: 13px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.career-text-link i { color: var(--gitech-green); }

/* Legal pages */
.legal-hero { padding: 64px 0 42px; }
.legal-hero-inner {
    padding: 42px 0 34px;
    border-bottom: 1px solid var(--gitech-line);
}
.legal-hero h1 {
    margin: 9px 0 12px;
    color: #080a08;
    font-size: clamp(46px, 5.4vw, 72px);
    line-height: 1.05;
    letter-spacing: -2.6px;
}
.legal-hero p { max-width: 760px; margin: 0; color: #59605a; font-size: 18px; line-height: 1.7; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: #687069; font-size: 12px; }
.legal-meta span { padding-right: 20px; border-right: 1px solid var(--gitech-line); }
.legal-meta span:last-child { border-right: 0; }
.legal-content-section { padding: 32px 0 88px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 850px); gap: 64px; justify-content: center; align-items: start; }
.legal-toc {
    position: sticky;
    top: 116px;
    padding: 20px;
    display: grid;
    gap: 8px;
    border: 1px solid var(--gitech-line);
    border-radius: 18px;
    background: #f7f8f6;
}
.legal-toc strong { margin-bottom: 5px; color: #111411; font-family: var(--gitech-display-font); font-size: 12px; }
.legal-toc a { color: #5b635c; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(17, 20, 17, .22); }
.legal-toc a:hover { color: #0d7e24; text-decoration-color: #0d7e24; }
.legal-document { min-width: 0; }
.legal-document > section { padding: 26px 0; border-bottom: 1px solid var(--gitech-line); }
.legal-document > section:first-child { padding-top: 0; }
.legal-document h2 { margin: 0 0 12px; color: #111411; font-size: 24px; line-height: 1.25; }
.legal-document p { margin: 0 0 12px; color: #4f5750; font-size: 16px; line-height: 1.78; }
.legal-document p:last-child { margin-bottom: 0; }
.legal-document a { color: #0d7622; font-weight: 650; text-decoration: underline; text-underline-offset: 4px; }
.legal-contact-box { margin-top: 20px; padding: 26px !important; border: 1px solid var(--gitech-line) !important; border-radius: 20px; background: #f6f8f6; }
.legal-contact-box a, .legal-contact-box address { display: block; margin-top: 6px; font-style: normal; }

/* 404 */
.not-found-section { min-height: 65vh; padding: 86px 0; display: flex; align-items: center; }
.not-found-card { max-width: 850px; padding: 54px; border: 1px solid var(--gitech-line); border-radius: 26px; background: #f7f8f6; }
.not-found-code { display: block; margin-bottom: 20px; color: var(--gitech-green); font-family: var(--gitech-display-font); font-size: 16px; font-weight: 800; letter-spacing: 2px; }
.not-found-card h1 { margin: 10px 0 16px; color: #080a08; font-size: clamp(40px, 5vw, 62px); line-height: 1.06; letter-spacing: -2px; }
.not-found-card p { max-width: 680px; margin: 0; color: #59605a; font-size: 17px; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

/* Footer hierarchy and visible links */
.gitech-footer .footer-column h2 {
    position: relative;
    padding-bottom: 11px;
    margin-bottom: 10px;
    color: #111411;
    font-family: var(--gitech-display-font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.gitech-footer .footer-column h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gitech-green);
}
.gitech-footer .footer-column a,
.gitech-footer .footer-bottom a {
    width: fit-content;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(17, 20, 17, .24);
}
.gitech-footer .footer-column a:hover,
.gitech-footer .footer-bottom a:hover {
    text-decoration-color: var(--gitech-green);
}
.gitech-footer .footer-lead > a {
    text-decoration: none;
}

@media (max-width: 1080px) {
    .career-hero-grid { grid-template-columns: 1fr; }
    .career-hero-copy { padding: 36px 0 12px; }
    .career-hero-photo { min-height: 420px; }
    .career-values-grid { grid-template-columns: repeat(2, 1fr); }
    .career-section-heading { grid-template-columns: 1fr; gap: 18px; }
    .career-culture-card { grid-template-columns: 1fr; }
    .career-culture-photo { min-height: 420px; }
    .career-opportunities-card { grid-template-columns: 1fr; }
    .career-opportunities-actions { justify-items: start; }
    .legal-layout { grid-template-columns: 1fr; gap: 24px; }
    .legal-toc { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .legal-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .coming-soon-panel { width: min(96vw, 620px); border-radius: 20px; }
    .coming-soon-body { padding: 26px 24px 22px; grid-template-columns: 1fr; }
    .coming-soon-icon { width: 58px; height: 58px; border-radius: 16px; }
    .coming-soon-features { grid-column: 1; grid-template-columns: 1fr; }
    .coming-soon-actions { padding: 16px 24px; flex-direction: column-reverse; align-items: stretch; }
    .coming-soon-secondary, .coming-soon-primary { width: 100%; }
    .coming-soon-note { padding: 0 24px 22px; }
    .career-hero { padding: 24px 0 54px; }
    .career-hero-copy h1 { font-size: 44px; letter-spacing: -2px; }
    .career-hero-copy p { font-size: 16px; }
    .career-hero-photo { min-height: 320px; border-radius: 20px; }
    .career-values-section, .career-culture-section { padding: 56px 0; }
    .career-values-grid { grid-template-columns: 1fr; }
    .career-value { min-height: 0; }
    .career-value h3 { margin-top: 22px; }
    .career-culture-photo { min-height: 320px; }
    .career-culture-copy { padding: 28px 24px; }
    .career-opportunities-section { padding-bottom: 58px; }
    .career-opportunities-card { padding: 28px 24px; }
    .legal-hero { padding: 46px 0 24px; }
    .legal-hero-inner { padding: 28px 0; }
    .legal-hero h1 { font-size: 44px; }
    .legal-hero p { font-size: 16px; }
    .legal-toc { grid-template-columns: 1fr 1fr; }
    .legal-content-section { padding-bottom: 60px; }
    .legal-document h2 { font-size: 21px; }
    .legal-document p { font-size: 15px; }
    .not-found-section { padding: 58px 0; }
    .not-found-card { padding: 34px 24px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .gitech-coming-soon,
    .coming-soon-close,
    .mobile-about-details > summary i { transition: none !important; }
}

.error-reference {
    margin-top: 18px !important;
    color: #6a716b !important;
    font-size: 13px !important;
}
.error-reference code {
    padding: 3px 6px;
    border-radius: 6px;
    background: #ecefec;
    color: #303630;
}
